diff --git a/README.md b/README.md index 411a07072b..39bf1fa222 100644 --- a/README.md +++ b/README.md @@ -103,13 +103,10 @@ To setup the repository locally follow the steps mentioned below: 2. In a separate terminal window, run the following commands: ``` # Create a new site - bench new-site frappe.dev - - # Map your site to localhost - bench --site frappe.dev add-to-hosts + bench new-site frappe.localhost ``` -3. Open the URL `http://frappe.dev:8000/app` in your browser, you should see the app running +3. Open the URL `http://frappe.localhost:8000/app` in your browser, you should see the app running ## Learning and community diff --git a/cypress/integration/awesome_bar.js b/cypress/integration/awesome_bar.js index 72d078a720..9b27516c2b 100644 --- a/cypress/integration/awesome_bar.js +++ b/cypress/integration/awesome_bar.js @@ -4,9 +4,9 @@ context("Awesome Bar", () => { cy.login(); cy.visit("/app/todo"); // Make sure ToDo filters are cleared. cy.clear_filters(); - cy.visit("/app/blog-post"); // Make sure Blog Post filters are cleared. + cy.visit("/app/web-page"); // Make sure Blog Post filters are cleared. cy.clear_filters(); - cy.visit("/app/website"); // Go to some other page. + cy.visit("/app/build"); // Go to some other page. }); beforeEach(() => { @@ -53,19 +53,19 @@ context("Awesome Bar", () => { }); it("navigates to another doctype, filter not bleeding", () => { - cy.get("@awesome_bar").type("blog post"); + cy.get("@awesome_bar").type("web page"); cy.wait(150); // Wait a bit before hitting enter. cy.get("@awesome_bar").type("{enter}"); - cy.get(".title-text").should("contain", "Blog Post"); + cy.get(".title-text").should("contain", "Web Page"); cy.wait(200); // Wait a bit longer before checking the filter. cy.location("search").should("be.empty"); }); it("navigates to new form", () => { - cy.get("@awesome_bar").type("new blog post"); + cy.get("@awesome_bar").type("new web page"); cy.wait(150); // Wait a bit before hitting enter cy.get("@awesome_bar").type("{enter}"); - cy.get(".title-text:visible").should("have.text", "New Blog Post"); + cy.get(".title-text:visible").should("have.text", "New Web Page"); }); it("calculates math expressions", () => { diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index 7117d8f98d..d6cc16fef1 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -51,4 +51,33 @@ context("List View", () => { cy.get(".list-row-container:visible").should("contain", "Approved"); }); }); + + it("Adds a button to each list view row", () => { + // Get a ToDo with a reference name + cy.call("frappe.client.get_value", { + doctype: "ToDo", + filters: { + reference_name: ["is", "set"], + }, + fieldname: "name", + }).then((r) => { + const todo_name = r.message.name; + cy.go_to_list("ToDo"); + + // Check if the 'Open' button is present in the ToDo list view + cy.get(".btn-default[data-name='" + todo_name + "']") + .should((el) => { + expect(el).to.exist; + }) + .click(); + + cy.window() + .its("cur_frm") + .then((frm) => { + // Routes to the reference document + expect(frm.doc.doctype).to.equal("ToDo"); + expect(frm.doc.name).to.not.equal(todo_name); + }); + }); + }); }); diff --git a/cypress/integration/sidebar.js b/cypress/integration/sidebar.js index b1a487bc8d..5d170ca9ca 100644 --- a/cypress/integration/sidebar.js +++ b/cypress/integration/sidebar.js @@ -43,7 +43,7 @@ context("Sidebar", () => { .window() .its("frappe") .then((frappe) => { - return frappe.call("frappe.tests.ui_test_helpers.create_blog_post"); + return frappe.call("frappe.tests.ui_test_helpers.create_doctype_for_attachment"); }); }); @@ -53,7 +53,7 @@ context("Sidebar", () => { }).then((todo) => { verify_attachment_visibility(`todo/${todo.message.name}`, true); }); - verify_attachment_visibility("blog-post/test-blog-attachment-post", false); + verify_attachment_visibility("test-blog-category/_Test Blog Category 2", false); }); it("Verify attachment accessibility UX", () => { diff --git a/cypress/integration/table_multiselect.js b/cypress/integration/table_multiselect.js index 8261b5b384..0850cae7b5 100644 --- a/cypress/integration/table_multiselect.js +++ b/cypress/integration/table_multiselect.js @@ -8,7 +8,7 @@ context("Table MultiSelect", () => { it("select value from multiselect dropdown", () => { cy.new_form("Assignment Rule"); cy.fill_field("__newname", name); - cy.fill_field("document_type", "Blog Post"); + cy.fill_field("document_type", "Web Page"); cy.get(".section-head").contains("Assignment Rules").scrollIntoView(); cy.fill_field("assign_condition", 'status=="Open"', "Code"); cy.get('input[data-fieldname="users"]').focus().as("input"); diff --git a/frappe/__init__.py b/frappe/__init__.py index 8f5e2c436f..aa733919c6 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -24,16 +24,12 @@ from collections.abc import Callable, Iterable from typing import ( TYPE_CHECKING, Any, - Generic, - Literal, Optional, TypeAlias, - TypeVar, Union, - overload, ) -import click +import orjson from werkzeug.datastructures import Headers import frappe @@ -45,10 +41,11 @@ from frappe.utils.caching import deprecated_local_cache as local_cache from frappe.utils.caching import request_cache, site_cache from frappe.utils.data import as_unicode, bold, cint, cstr, safe_decode, safe_encode, sbool from frappe.utils.local import Local, LocalProxy, release_local +from frappe.utils.translations import _, _lt, set_user_lang # Local application imports from .exceptions import * -from .types import Filters, FilterSignature, FilterTuple, _dict +from .types import _dict from .utils.jinja import ( get_email_from_template, get_jenv, @@ -62,7 +59,6 @@ __title__ = "Frappe Framework" if TYPE_CHECKING: # pragma: no cover from logging import Logger - from types import ModuleType from werkzeug.wrappers import Request @@ -70,10 +66,8 @@ if TYPE_CHECKING: # pragma: no cover from frappe.database.mariadb.mysqlclient import MariaDBDatabase from frappe.database.postgres.database import PostgresDatabase from frappe.database.sqlite.database import SQLiteDatabase - from frappe.email.doctype.email_queue.email_queue import EmailQueue from frappe.model.document import Document from frappe.query_builder.builder import MariaDB, Postgres, SQLite - from frappe.types.lazytranslatedstring import _LazyTranslate from frappe.utils.redis_wrapper import ClientCache, RedisWrapper controllers: dict[str, type] = {} @@ -93,66 +87,6 @@ if _dev_server: warnings.simplefilter("always", PendingDeprecationWarning) -def _(msg: str, lang: str | None = None, context: str | None = None) -> str: - """Return translated string in current lang, if exists. - Usage: - _('Change') - _('Change', context='Coins') - """ - from frappe.translate import get_all_translations - from frappe.utils import is_html, strip_html_tags - - if not hasattr(local, "lang"): - local.lang = lang or "en" - - if not lang: - lang = local.lang - - non_translated_string = msg - - if is_html(msg): - msg = strip_html_tags(msg) - - # msg should always be unicode - msg = as_unicode(msg).strip() - - translated_string = "" - - all_translations = get_all_translations(lang) - if context: - string_key = f"{msg}:{context}" - translated_string = all_translations.get(string_key) - - if not translated_string: - translated_string = all_translations.get(msg) - - return translated_string or non_translated_string - - -def _lt(msg: str, lang: str | None = None, context: str | None = None) -> "_LazyTranslate": - """Lazily translate a string. - - - This function returns a "lazy string" which when casted to string via some operation applies - translation first before casting. - - This is only useful for translating strings in global scope or anything that potentially runs - before `frappe.init()` - - Note: Result is not guaranteed to equivalent to pure strings for all operations. - """ - from .types.lazytranslatedstring import _LazyTranslate - - return _LazyTranslate(msg, lang, context) - - -def set_user_lang(user: str, user_language: str | None = None) -> None: - """Guess and set user language for the session. `frappe.local.lang`""" - from frappe.translate import get_user_lang - - local.lang = get_user_lang(user) or user_language - - # local-globals ConfType: TypeAlias = _dict[str, Any] # type: ignore[no-any-explicit] # TODO: make session a dataclass instead of undtyped _dict @@ -427,20 +361,6 @@ def log(msg: str) -> None: debug_log.append(as_unicode(msg)) -def create_folder(path, with_init=False): - """Create a folder in the given path and add an `__init__.py` file (optional). - - :param path: Folder path. - :param with_init: Create `__init__.py` in the new folder.""" - from frappe.utils import touch_file - - if not os.path.exists(path): - os.makedirs(path) - - if with_init: - touch_file(os.path.join(path, "__init__.py")) - - def set_user(username: str): """Set current user. @@ -481,144 +401,22 @@ def get_request_header(key, default=None): return request.headers.get(key, default) -def sendmail( - recipients=None, - sender="", - subject="No Subject", - message="No Message", - as_markdown=False, - delayed=True, - reference_doctype=None, - reference_name=None, - unsubscribe_method=None, - unsubscribe_params=None, - unsubscribe_message=None, - add_unsubscribe_link=1, - attachments=None, - content=None, - doctype=None, - name=None, - reply_to=None, - queue_separately=False, - cc=None, - bcc=None, - message_id=None, - in_reply_to=None, - send_after=None, - expose_recipients=None, - send_priority=1, - communication=None, - retry=1, - now=None, - read_receipt=None, - is_notification=False, - inline_images=None, - template=None, - args=None, - header=None, - print_letterhead=False, - with_container=False, - email_read_tracker_url=None, - x_priority: Literal[1, 3, 5] = 3, - email_headers=None, -) -> Optional["EmailQueue"]: - """Send email using user's default **Email Account** or global default **Email Account**. - - - :param recipients: List of recipients. - :param sender: Email sender. Default is current user or default outgoing account. - :param subject: Email Subject. - :param message: (or `content`) Email Content. - :param as_markdown: Convert content markdown to HTML. - :param delayed: Send via scheduled email sender **Email Queue**. Don't send immediately. Default is true - :param send_priority: Priority for Email Queue, default 1. - :param reference_doctype: (or `doctype`) Append as communication to this DocType. - :param reference_name: (or `name`) Append as communication to this document name. - :param unsubscribe_method: Unsubscribe url with options email, doctype, name. e.g. `/api/method/unsubscribe` - :param unsubscribe_params: Unsubscribe paramaters to be loaded on the unsubscribe_method [optional] (dict). - :param attachments: List of attachments. - :param reply_to: Reply-To Email Address. - :param message_id: Used for threading. If a reply is received to this email, Message-Id is sent back as In-Reply-To in received email. - :param in_reply_to: Used to send the Message-Id of a received email back as In-Reply-To. - :param send_after: Send after the given datetime. - :param expose_recipients: Display all recipients in the footer message - "This email was sent to" - :param communication: Communication link to be set in Email Queue record - :param inline_images: List of inline images as {"filename", "filecontent"}. All src properties will be replaced with random Content-Id - :param template: Name of html template from templates/emails folder - :param args: Arguments for rendering the template - :param header: Append header in email - :param with_container: Wraps email inside a styled container - :param x_priority: 1 = HIGHEST, 3 = NORMAL, 5 = LOWEST - :param email_headers: Additional headers to be added in the email, e.g. {"X-Custom-Header": "value"} or {"Custom-Header": "value"}. Automatically prepends "X-" to the header name if not present. - """ - - if recipients is None: - recipients = [] - if cc is None: - cc = [] - if bcc is None: - bcc = [] - - text_content = None - if template: - message, text_content = get_email_from_template(template, args) - - message = content or message - - if as_markdown: - from frappe.utils import md_to_html - - message = md_to_html(message) - - if not delayed: - now = True - - from frappe.email.doctype.email_queue.email_queue import QueueBuilder - - builder = QueueBuilder( - recipients=recipients, - sender=sender, - subject=subject, - message=message, - text_content=text_content, - reference_doctype=doctype or reference_doctype, - reference_name=name or reference_name, - add_unsubscribe_link=add_unsubscribe_link, - unsubscribe_method=unsubscribe_method, - unsubscribe_params=unsubscribe_params, - unsubscribe_message=unsubscribe_message, - attachments=attachments, - reply_to=reply_to, - cc=cc, - bcc=bcc, - message_id=message_id, - in_reply_to=in_reply_to, - send_after=send_after, - expose_recipients=expose_recipients, - send_priority=send_priority, - queue_separately=queue_separately, - communication=communication, - read_receipt=read_receipt, - is_notification=is_notification, - inline_images=inline_images, - header=header, - print_letterhead=print_letterhead, - with_container=with_container, - email_read_tracker_url=email_read_tracker_url, - x_priority=x_priority, - email_headers=email_headers, - ) - - # build email queue and send the email if send_now is True. - return builder.process(send_now=now) - - whitelisted: set[Callable] = set() guest_methods: set[Callable] = set() xss_safe_methods: set[Callable] = set() allowed_http_methods_for_whitelisted_func: dict[Callable, list[str]] = {} +def _in_request_or_test(): + """ + Internal + + Used by whitelist to determine whether type hints should be validated or not + """ + + return getattr(local, "request", None) or in_test + + def whitelist(allow_guest=False, xss_safe=False, methods=None): """ Decorator for whitelisting a function and making it accessible via HTTP. @@ -642,17 +440,8 @@ def whitelist(allow_guest=False, xss_safe=False, methods=None): global whitelisted, guest_methods, xss_safe_methods, allowed_http_methods_for_whitelisted_func - # validate argument types only if request is present - in_request_or_test = lambda: getattr(local, "request", None) or in_test # noqa: E731 - - # get function from the unbound / bound method - # this is needed because functions can be compared, but not methods - method = None - if hasattr(fn, "__func__"): - method = validate_argument_types(fn, apply_condition=in_request_or_test) - fn = method.__func__ - else: - fn = validate_argument_types(fn, apply_condition=in_request_or_test) + # validate argument types if request is present or in test context + fn = validate_argument_types(fn, apply_condition=_in_request_or_test) whitelisted.add(fn) allowed_http_methods_for_whitelisted_func[fn] = methods @@ -663,7 +452,7 @@ def whitelist(allow_guest=False, xss_safe=False, methods=None): if xss_safe: xss_safe_methods.add(fn) - return method or fn + return fn return innerfn @@ -743,7 +532,7 @@ def only_for(roles: list[str] | tuple[str] | str, message=False): :param roles: Permitted role(s) """ - if in_test or local.session.user == "Administrator": + if local.session.user == "Administrator": return if isinstance(roles, str): @@ -910,30 +699,6 @@ def generate_hash(txt: str | None = None, length: int = 56) -> str: return secrets.token_hex(math.ceil(length / 2))[:length] -def new_doc( - doctype: str, - *, - parent_doc: Optional["Document"] = None, - parentfield: str | None = None, - as_dict: bool = False, - **kwargs, -) -> "Document": - """Return a new document of the given DocType with defaults set. - - :param doctype: DocType of the new document. - :param parent_doc: [optional] add to parent document. - :param parentfield: [optional] add against this `parentfield`. - :param as_dict: [optional] return as dictionary instead of Document. - :param kwargs: [optional] You can specify fields as field=value pairs in function call. - """ - - from frappe.model.create_new import get_new_doc - - new_doc = get_new_doc(doctype, parent_doc, parentfield, as_dict=as_dict) - - return new_doc.update(kwargs) - - def set_value(doctype, docname, fieldname, value=None): """Set document value. Calls `frappe.client.set_value`""" import frappe.client @@ -941,118 +706,6 @@ def set_value(doctype, docname, fieldname, value=None): return frappe.client.set_value(doctype, docname, fieldname, value) -def get_cached_doc(*args: Any, **kwargs: Any) -> "Document": - """Identical to `frappe.get_doc`, but return from cache if available.""" - if (key := can_cache_doc(args)) and (doc := cache.get_value(key)): - return doc - - # Not found in cache, fetch from DB - doc = get_doc(*args, **kwargs) - - # Store in cache - if not key: - key = get_document_cache_key(doc.doctype, doc.name) - - _set_document_in_cache(key, doc) - - return doc - - -def _set_document_in_cache(key: str, doc: "Document") -> None: - cache.set_value(key, doc, expires_in_sec=3600) - - -def can_cache_doc(args) -> str | None: - """ - Determine if document should be cached based on get_doc params. - Return cache key if doc can be cached, None otherwise. - """ - - if not args: - return - - doctype = args[0] - name = doctype if len(args) == 1 or args[1] is None else args[1] - - # Only cache if both doctype and name are strings - if isinstance(doctype, str) and isinstance(name, str): - return get_document_cache_key(doctype, name) - - -def get_document_cache_key(doctype: str, name: str): - return f"document_cache::{doctype}::{name}" - - -def clear_document_cache(doctype: str, name: str | None = None) -> None: - frappe.db.value_cache.pop(doctype, None) - - def clear_in_redis(): - if name is not None: - cache.delete_value(get_document_cache_key(doctype, name)) - else: - cache.delete_keys(get_document_cache_key(doctype, "")) - - clear_in_redis() - if hasattr(db, "after_commit"): - db.after_commit.add(clear_in_redis) - db.after_rollback.add(clear_in_redis) - - if doctype == "System Settings" and hasattr(local, "system_settings"): - delattr(local, "system_settings") - - if doctype == "Website Settings" and hasattr(local, "website_settings"): - delattr(local, "website_settings") - - -def get_cached_value( - doctype: str, name: str | dict, fieldname: str | Iterable[str] = "name", as_dict: bool = False -) -> Any: - try: - doc = get_cached_doc(doctype, name) - except DoesNotExistError: - clear_last_message() - return - - if isinstance(fieldname, str): - if as_dict: - throw("Cannot make dict for single fieldname") - return doc.get(fieldname) - - values = [doc.get(f) for f in fieldname] - if as_dict: - return _dict(zip(fieldname, values, strict=False)) - return values - - -def get_single_value(setting: str, fieldname: str, /, *, as_dict: bool = False): - """Return the cached value associated with the given fieldname from single DocType. - - Usage: - telemetry_enabled = frappe.get_single_value("System Settings", "telemetry_enabled") - """ - return get_cached_value(setting, setting, fieldname=fieldname, as_dict=as_dict) - - -def get_last_doc( - doctype, - filters: FilterSignature | None = None, - order_by="creation desc", - *, - for_update=False, -): - """Get last created document of this type.""" - d = get_all(doctype, filters=filters, limit_page_length=1, order_by=order_by, pluck="name") - if d: - return get_doc(doctype, d[0], for_update=for_update) - else: - raise DoesNotExistError(doctype=doctype) - - -def get_single(doctype): - """Return a `frappe.model.document.Document` object of the given Single doctype.""" - return get_doc(doctype, doctype) - - def get_meta_module(doctype): import frappe.modules @@ -1096,11 +749,6 @@ def delete_doc( ) -def delete_doc_if_exists(doctype, name, force=0): - """Delete document if exists.""" - delete_doc(doctype, name, force=force, ignore_missing=True) - - def reload_doctype(doctype, force=False, reset_permissions=False): """Reload DocType from model (`[module]/[doctype]/[name]/[name].json`) files.""" reload_doc( @@ -1164,7 +812,7 @@ def rename_doc( ) -def get_module(modulename: str) -> "ModuleType": +def get_module(modulename: str): """Return a module object for given Python module name using `importlib.import_module`.""" return importlib.import_module(modulename) @@ -1265,7 +913,7 @@ def get_installed_apps(*, _ensure_on_bench: bool = False) -> list[str]: if not db: connect() - installed = json.loads(db.get_global("installed_apps") or "[]") + installed = orjson.loads(db.get_global("installed_apps") or "[]") if _ensure_on_bench: all_apps = cache.get_value("all_apps", get_all_apps) @@ -1523,7 +1171,7 @@ def get_newargs(fn: Callable, kwargs: dict[str, Any]) -> dict[str, Any]: def make_property_setter( - args, ignore_validate=False, validate_fields_for_doctype=True, is_system_generated=True + args, ignore_validate=False, validate_fields_for_doctype=True, is_system_generated=True, *, module=None ): """Create a new **Property Setter** (for overriding DocType and DocField properties). @@ -1562,6 +1210,7 @@ def make_property_setter( "doctype": "Property Setter", "doctype_or_field": args.doctype_or_field, "doc_type": doctype, + "module": module, "field_name": args.fieldname, "row_name": args.row_name, "property": args.property, @@ -1584,50 +1233,6 @@ def import_doc(path): import_doc(path) -def copy_doc(doc: "Document", ignore_no_copy: bool = True) -> "Document": - """No_copy fields also get copied.""" - import copy - from types import MappingProxyType - - from frappe.model.base_document import BaseDocument - - def remove_no_copy_fields(d): - for df in d.meta.get("fields", {"no_copy": 1}): - if hasattr(d, df.fieldname): - d.set(df.fieldname, None) - - fields_to_clear = ["name", "owner", "creation", "modified", "modified_by"] - - if not in_test: - fields_to_clear.append("docstatus") - - if isinstance(doc, BaseDocument) or hasattr(doc, "as_dict"): - d = doc.as_dict() - elif isinstance(doc, MappingProxyType): # global test record - d = dict(doc) - else: - d = doc - - newdoc = get_doc(copy.deepcopy(d)) - newdoc.set("__islocal", 1) - for fieldname in [*fields_to_clear, "amended_from", "amendment_date"]: - newdoc.set(fieldname, None) - - if not ignore_no_copy: - remove_no_copy_fields(newdoc) - - for d in newdoc.get_all_children(): - d.set("__islocal", 1) - - for fieldname in fields_to_clear: - d.set(fieldname, None) - - if not ignore_no_copy: - remove_no_copy_fields(d) - - return newdoc - - def respond_as_web_page( title, html, @@ -1831,59 +1436,6 @@ def are_emails_muted(): from frappe.deprecation_dumpster import frappe_get_test_records as get_test_records -def attach_print( - doctype, - name, - file_name=None, - print_format=None, - style=None, - html=None, - doc=None, - lang=None, - print_letterhead=True, - password=None, - letterhead=None, -): - from frappe.translate import print_language - from frappe.utils import scrub_urls - from frappe.utils.pdf import get_pdf - - print_settings = db.get_singles_dict("Print Settings") - - kwargs = dict( - print_format=print_format, - style=style, - doc=doc, - no_letterhead=not print_letterhead, - letterhead=letterhead, - password=password, - ) - - local.flags.ignore_print_permissions = True - - with print_language(lang or local.lang): - content = "" - if cint(print_settings.send_print_as_pdf): - ext = ".pdf" - kwargs["as_pdf"] = True - content = ( - get_pdf(html, options={"password": password} if password else None) - if html - else get_print(doctype, name, **kwargs) - ) - else: - ext = ".html" - content = html or scrub_urls(get_print(doctype, name, **kwargs)).encode("utf-8") - - local.flags.ignore_print_permissions = False - - if not file_name: - file_name = name - file_name = cstr(file_name).replace(" ", "").replace("/", "-") + ext - - return {"fname": file_name, "fcontent": content} - - def task(**task_kwargs): def decorator_task(f): f.enqueue = lambda **fun_kwargs: enqueue(f, **task_kwargs, **fun_kwargs) @@ -1920,16 +1472,20 @@ def logger( ) -def get_desk_link(doctype, name, show_title_with_name=False): +def get_desk_link(doctype, name, show_title_with_name=False, open_in_new_tab=False): meta = get_meta(doctype) title = get_value(doctype, name, meta.get_title_field()) - if show_title_with_name and name != title: - html = '{doctype_local} {name}: {title_local}' - else: - html = '{doctype_local} {title_local}' + target_attr = ' target="_blank"' if open_in_new_tab else "" - return html.format(doctype=doctype, name=name, doctype_local=_(doctype), title_local=_(title)) + if show_title_with_name and name != title: + html = '{doctype_local} {name}: {title_local}' + else: + html = '{doctype_local} {title_local}' + + return html.format( + doctype=doctype, name=name, doctype_local=_(doctype), title_local=_(title), target=target_attr + ) def get_website_settings(key): @@ -1997,17 +1553,33 @@ import frappe._optimizations from frappe.cache_manager import clear_cache, reset_metadata_version from frappe.config import get_common_site_config, get_conf, get_site_config from frappe.core.doctype.system_settings.system_settings import get_system_settings -from frappe.model.document import get_doc, get_lazy_doc +from frappe.model.document import ( + get_doc, + get_lazy_doc, + copy_doc, + new_doc, + get_cached_doc, + can_cache_doc, + get_document_cache_key, + clear_document_cache, + get_cached_value, + get_single_value, + get_last_doc, + get_single, + _set_document_in_cache, +) from frappe.model.meta import get_meta from frappe.realtime import publish_progress, publish_realtime -from frappe.utils import get_traceback, mock, parse_json, safe_eval +from frappe.utils import get_traceback, mock, parse_json, safe_eval, create_folder from frappe.utils.background_jobs import enqueue, enqueue_doc from frappe.utils.error import log_error from frappe.utils.formatters import format_value -from frappe.utils.print_utils import get_print +from frappe.utils.print_utils import get_print, attach_print +from frappe.email import sendmail # for backwards compatibility format = format_value +delete_doc_if_exists = delete_doc frappe._optimizations.optimize_all() frappe._optimizations.register_fault_handler() diff --git a/frappe/api/v1.py b/frappe/api/v1.py index 20cf06eb35..0006e5e5d5 100644 --- a/frappe/api/v1.py +++ b/frappe/api/v1.py @@ -39,8 +39,6 @@ def handle_rpc_call(method: str): def create_doc(doctype: str): data = get_request_form_data() data.pop("doctype", None) - if (name := data.get("name")) and isinstance(name, str): - frappe.flags.api_name_set = True return frappe.new_doc(doctype, **data).insert() diff --git a/frappe/api/v2.py b/frappe/api/v2.py index c9b42e45cf..09d403541d 100644 --- a/frappe/api/v2.py +++ b/frappe/api/v2.py @@ -171,9 +171,13 @@ def count(doctype: str) -> int: def create_doc(doctype: str): data = frappe.form_dict data.pop("doctype", None) - if (name := data.get("name")) and isinstance(name, str): - frappe.flags.api_name_set = True - return frappe.new_doc(doctype, **data).insert().as_dict() + + doc = frappe.new_doc(doctype, **data) + + if (name := data.get("name")) and isinstance(name, str | int): + doc.flags.name_set = True + + return doc.insert().as_dict() def copy_doc(doctype: str, name: str, ignore_no_copy: bool = True): diff --git a/frappe/app.py b/frappe/app.py index 04e06171ef..e5a1fba4a7 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -5,6 +5,7 @@ import functools import logging import os +import orjson from werkzeug.exceptions import HTTPException, NotFound from werkzeug.middleware.profiler import ProfilerMiddleware from werkzeug.middleware.proxy_fix import ProxyFix @@ -21,6 +22,7 @@ import frappe.recorder import frappe.utils.response from frappe import _ from frappe.auth import SAFE_HTTP_METHODS, UNSAFE_HTTP_METHODS, HTTPRequest, check_request_ip, validate_auth +from frappe.integrations.oauth2 import get_resource_url, handle_wellknown, is_oauth_metadata_enabled from frappe.middlewares import StaticDataMiddleware from frappe.permissions import handle_does_not_exist_error from frappe.utils import CallbackManager, cint, get_site_name @@ -65,6 +67,11 @@ import frappe.website.website_generator # web page doctypes # end: module pre-loading +# better werkzeug default +# this is necessary because frappe desk sends most requests as form data +# and some of them can exceed werkzeug's default limit of 500kb +Request.max_form_memory_size = None + def after_response_wrapper(app): """Wrap a WSGI application to call after_response hooks after we have responded. @@ -119,6 +126,9 @@ def application(request: Request): elif request.path.startswith("/private/files/"): response = frappe.utils.response.download_private_file(request.path) + elif request.path.startswith("/.well-known/") and request.method == "GET": + response = handle_wellknown(request.path) + elif request.method in ("GET", "HEAD", "POST"): response = get_response() @@ -249,6 +259,9 @@ def process_response(response: Response): if hasattr(frappe.local, "conf"): set_cors_headers(response) + if response.status_code in (401, 403) and is_oauth_metadata_enabled("resource"): + set_authenticate_headers(response) + # Update custom headers added during request processing response.headers.update(frappe.local.response_headers) @@ -262,10 +275,12 @@ def process_response(response: Response): def set_cors_headers(response): + allowed_origins = frappe.conf.allow_cors + if hasattr(frappe.local, "allow_cors"): + allowed_origins = frappe.local.allow_cors + if not ( - (allowed_origins := frappe.conf.allow_cors) - and (request := frappe.local.request) - and (origin := request.headers.get("Origin")) + allowed_origins and (request := frappe.local.request) and (origin := request.headers.get("Origin")) ): return @@ -296,12 +311,17 @@ def set_cors_headers(response): response.headers.update(cors_headers) -def make_form_dict(request: Request): - import json +def set_authenticate_headers(response: Response): + headers = { + "WWW-Authenticate": f'Bearer resource_metadata="{get_resource_url()}/.well-known/oauth-protected-resource"' + } + response.headers.update(headers) + +def make_form_dict(request: Request): request_data = request.get_data(as_text=True) if request_data and request.is_json: - args = json.loads(request_data) + args = orjson.loads(request_data) else: args = {} args.update(request.args or {}) @@ -404,7 +424,7 @@ def sync_database(): # update session if session := getattr(frappe.local, "session_obj", None): - session.update() + frappe.request.after_response.add(session.update) # Always initialize sentry SDK if the DSN is sent diff --git a/frappe/auth.py b/frappe/auth.py index 5ce4462161..f667138ea1 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -131,7 +131,7 @@ class LoginManager: self.make_session(resume=True) self.get_user_info() self.set_user_info(resume=True) - except AttributeError: + except (AttributeError, frappe.DoesNotExistError): self.user = "Guest" self.get_user_info() self.make_session() @@ -704,6 +704,9 @@ def validate_auth_via_api_keys(authorization_header): def validate_api_key_secret(api_key, api_secret, frappe_authorization_source=None): """frappe_authorization_source to provide api key and secret for a doctype apart from User""" + if not api_key or not api_secret: + raise frappe.AuthenticationError + doctype = frappe_authorization_source or "User" docname = frappe.db.get_value( doctype=doctype, filters={"api_key": api_key, "enabled": True}, fieldname=["name"] @@ -711,8 +714,8 @@ def validate_api_key_secret(api_key, api_secret, frappe_authorization_source=Non if not docname: raise frappe.AuthenticationError form_dict = frappe.local.form_dict - doc_secret = get_decrypted_password(doctype, docname, fieldname="api_secret") - if api_secret == doc_secret: + doc_secret = get_decrypted_password(doctype, docname, fieldname="api_secret", raise_exception=False) + if doc_secret and api_secret == doc_secret: if doctype == "User": user = frappe.db.get_value(doctype="User", filters={"api_key": api_key}, fieldname=["name"]) else: diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.json b/frappe/automation/doctype/auto_repeat/auto_repeat.json index 183a26f707..2e40364a53 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.json +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -21,6 +21,9 @@ "repeat_on_last_day", "column_break_12", "next_schedule_date", + "section_break_looa", + "generate_separate_documents_for_each_assignee", + "assignee", "section_break_16", "repeat_on_days", "notification", @@ -86,7 +89,7 @@ "fieldtype": "Select", "in_list_view": 1, "label": "Frequency", - "options": "\nDaily\nWeekly\nMonthly\nQuarterly\nHalf-yearly\nYearly", + "options": "\nDaily\nWeekly\nFortnightly\nMonthly\nQuarterly\nHalf-yearly\nYearly", "reqd": 1 }, { @@ -198,10 +201,26 @@ "depends_on": "eval:doc.frequency==='Weekly';", "fieldname": "section_break_16", "fieldtype": "Section Break" + }, + { + "default": "0", + "fieldname": "generate_separate_documents_for_each_assignee", + "fieldtype": "Check", + "label": "Generate Separate Documents For Each Assignee" + }, + { + "fieldname": "section_break_looa", + "fieldtype": "Section Break" + }, + { + "fieldname": "assignee", + "fieldtype": "Table MultiSelect", + "label": "Assignee", + "options": "Auto Repeat User" } ], "links": [], - "modified": "2025-01-20 14:15:55.287788", + "modified": "2025-06-09 18:20:23.775881", "modified_by": "Administrator", "module": "Automation", "name": "Auto Repeat", @@ -245,10 +264,11 @@ "write": 1 } ], + "row_format": "Dynamic", "search_fields": "reference_document", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "reference_document", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index aba5ae7013..3dd676e4b9 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -13,7 +13,7 @@ from frappe.contacts.doctype.contact.contact import ( get_contacts_linking_to, ) from frappe.core.doctype.communication.email import make -from frappe.desk.form import assign_to +from frappe.desk.form.assign_to import add as assign_to from frappe.model.document import Document from frappe.utils import ( add_days, @@ -49,11 +49,16 @@ class AutoRepeat(Document): if TYPE_CHECKING: from frappe.automation.doctype.auto_repeat_day.auto_repeat_day import AutoRepeatDay + from frappe.automation.doctype.auto_repeat_user.auto_repeat_user import AutoRepeatUser from frappe.types import DF + assignee: DF.TableMultiSelect[AutoRepeatUser] disabled: DF.Check end_date: DF.Date | None - frequency: DF.Literal["", "Daily", "Weekly", "Monthly", "Quarterly", "Half-yearly", "Yearly"] + frequency: DF.Literal[ + "", "Daily", "Weekly", "Fortnightly", "Monthly", "Quarterly", "Half-yearly", "Yearly" + ] + generate_separate_documents_for_each_assignee: DF.Check message: DF.Text | None next_schedule_date: DF.Date | None notify_by_email: DF.Check @@ -219,9 +224,16 @@ class AutoRepeat(Document): def create_documents(self): try: - new_doc = self.make_new_document() + if self.generate_separate_documents_for_each_assignee and self.assignee: + new_docs = self.make_new_documents() + else: + new_docs = self.make_new_document([assignee.user for assignee in self.assignee]) if self.notify_by_email and self.recipients: - self.send_notification(new_doc) + if isinstance(new_docs, list): + for new_doc in new_docs: + self.send_notification(new_doc) + else: + self.send_notification(new_docs) except Exception: error_log = self.log_error( _("Auto repeat failed. Please enable auto repeat after fixing the issues.") @@ -232,7 +244,14 @@ class AutoRepeat(Document): if self.reference_document and not frappe.in_test: self.notify_error_to_user(error_log) - def make_new_document(self): + def make_new_documents(self): + docs = [] + for assignee in self.assignee: + new_doc = self.make_new_document(assignee=[assignee.user]) + docs.append(new_doc) + return docs + + def make_new_document(self, assignee=None): reference_doc = frappe.get_doc(self.reference_doctype, self.reference_document) new_doc = frappe.copy_doc(reference_doc, ignore_no_copy=False) self.update_doc(new_doc, reference_doc) @@ -242,7 +261,14 @@ class AutoRepeat(Document): "label": _("via Auto Repeat"), } new_doc.insert(ignore_permissions=True) - + if assignee: + args = { + "assign_to": assignee, + "doctype": self.reference_doctype, + "name": new_doc.name, + "description": new_doc.get_title(), + } + assign_to(args=args) if self.submit_on_creation: new_doc.submit() @@ -348,6 +374,8 @@ class AutoRepeat(Document): def get_days(self, schedule_date): if self.frequency == "Weekly": days = self.get_offset_for_weekly_frequency(schedule_date) + elif self.frequency == "Fortnightly": + days = 14 else: # daily frequency days = 1 diff --git a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py index f110f6019f..ee8f5af1be 100644 --- a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py @@ -85,6 +85,32 @@ class TestAutoRepeat(IntegrationTestCase): self.assertEqual(todo.get("description"), new_todo.get("description")) + def test_fortnightly_auto_repeat(self): + todo = frappe.get_doc( + doctype="ToDo", description="test fortnightly todo", assigned_by="Administrator" + ).insert() + + doc = make_auto_repeat( + reference_doctype="ToDo", + frequency="Fortnightly", + reference_document=todo.name, + start_date=add_days(today(), -14), + ) + + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo = frappe.db.get_value("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + new_todo = frappe.get_doc("ToDo", new_todo) + + self.assertEqual(todo.get("description"), new_todo.get("description")) + def test_weekly_auto_repeat_with_weekdays(self): todo = frappe.get_doc( doctype="ToDo", description="test auto repeat with weekdays", assigned_by="Administrator" @@ -221,6 +247,68 @@ class TestAutoRepeat(IntegrationTestCase): ) self.assertEqual(docnames[0].docstatus, 1) + def test_auto_repeat_assignee(self): + todo = frappe.get_doc( + doctype="ToDo", description="test assignee todo", assigned_by="Administrator" + ).insert() + + doc = make_auto_repeat(reference_document=todo.name) + doc.update( + { + "assignee": [ + {"user": "Administrator"}, + {"user": "Guest"}, + ] + } + ) + doc.save() + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo = frappe.db.get_value("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + new_todo = frappe.get_doc("ToDo", new_todo) + self.assertEqual(todo.get("description"), new_todo.get("description")) + self.assertListEqual( + sorted(list(new_todo.get_assigned_users())), + sorted(["Administrator", "Guest"]), + ) + + def test_auto_repeat_assignee_with_separate_documents(self): + todo = frappe.get_doc( + doctype="ToDo", + description="test assignee todo with multiple doc", + assigned_by="Administrator", + ).insert() + + doc = make_auto_repeat(reference_document=todo.name) + doc.update( + { + "assignee": [ + {"user": "Administrator"}, + {"user": "Guest"}, + ], + "generate_separate_documents_for_each_assignee": 1, + } + ) + doc.save() + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo_count = frappe.db.count("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + self.assertEqual(new_todo_count, 2) + def make_auto_repeat(**args): args = frappe._dict(args) diff --git a/frappe/email/doctype/newsletter/__init__.py b/frappe/automation/doctype/auto_repeat_user/__init__.py similarity index 100% rename from frappe/email/doctype/newsletter/__init__.py rename to frappe/automation/doctype/auto_repeat_user/__init__.py diff --git a/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json new file mode 100644 index 0000000000..7453fe6c30 --- /dev/null +++ b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json @@ -0,0 +1,35 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2025-06-09 18:19:22.034128", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "user" + ], + "fields": [ + { + "fieldname": "user", + "fieldtype": "Link", + "in_list_view": 1, + "label": "User", + "options": "User", + "reqd": 1 + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "istable": 1, + "links": [], + "modified": "2025-06-09 18:19:41.543336", + "modified_by": "Administrator", + "module": "Automation", + "name": "Auto Repeat User", + "owner": "Administrator", + "permissions": [], + "row_format": "Dynamic", + "sort_field": "creation", + "sort_order": "DESC", + "states": [] +} diff --git a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.py b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py similarity index 76% rename from frappe/email/doctype/newsletter_attachment/newsletter_attachment.py rename to frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py index e0a3f3aa56..b0858d7c03 100644 --- a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.py +++ b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py @@ -1,11 +1,11 @@ -# Copyright (c) 2021, Frappe Technologies and contributors +# Copyright (c) 2025, Frappe Technologies and contributors # For license information, please see license.txt # import frappe from frappe.model.document import Document -class NewsletterAttachment(Document): +class AutoRepeatUser(Document): # begin: auto-generated types # This code is auto-generated. Do not modify anything in this block. @@ -14,10 +14,10 @@ class NewsletterAttachment(Document): if TYPE_CHECKING: from frappe.types import DF - attachment: DF.Attach parent: DF.Data parentfield: DF.Data parenttype: DF.Data + user: DF.Link # end: auto-generated types pass diff --git a/frappe/automation/workspace/tools/tools.json b/frappe/automation/workspace/tools/tools.json index a4f3d35404..503740b5ce 100644 --- a/frappe/automation/workspace/tools/tools.json +++ b/frappe/automation/workspace/tools/tools.json @@ -1,6 +1,6 @@ { "charts": [], - "content": "[{\"id\":\"sR-UFcO7II\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Import Data\",\"col\":3}},{\"id\":\"IkcVmgWb3z\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"ToDo\",\"col\":3}},{\"id\":\"6wir-jZFRE\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"File\",\"col\":3}},{\"id\":\"45a1jzQkTm\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Assignment Rule\",\"col\":3}},{\"id\":\"EgtURZsoiF\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"0yceBIfhHM\",\"type\":\"card\",\"data\":{\"card_name\":\"Data\",\"col\":4}},{\"id\":\"42WbBA9rpj\",\"type\":\"card\",\"data\":{\"card_name\":\"Tools\",\"col\":4}},{\"id\":\"wE9n7TIrAc\",\"type\":\"card\",\"data\":{\"card_name\":\"Alerts and Notifications\",\"col\":4}},{\"id\":\"7_U7_xCOos\",\"type\":\"card\",\"data\":{\"card_name\":\"Email\",\"col\":4}},{\"id\":\"3imoh2oqsJ\",\"type\":\"card\",\"data\":{\"card_name\":\"Printing\",\"col\":4}},{\"id\":\"SlYKJZj5r3\",\"type\":\"card\",\"data\":{\"card_name\":\"Automation\",\"col\":4}},{\"id\":\"O7jrc2YQTN\",\"type\":\"card\",\"data\":{\"card_name\":\"Newsletter\",\"col\":4}}]", + "content": "[{\"id\":\"sR-UFcO7II\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Import Data\",\"col\":3}},{\"id\":\"IkcVmgWb3z\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"ToDo\",\"col\":3}},{\"id\":\"6wir-jZFRE\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"File\",\"col\":3}},{\"id\":\"45a1jzQkTm\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Assignment Rule\",\"col\":3}},{\"id\":\"EgtURZsoiF\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"0yceBIfhHM\",\"type\":\"card\",\"data\":{\"card_name\":\"Data\",\"col\":4}},{\"id\":\"42WbBA9rpj\",\"type\":\"card\",\"data\":{\"card_name\":\"Tools\",\"col\":4}},{\"id\":\"wE9n7TIrAc\",\"type\":\"card\",\"data\":{\"card_name\":\"Alerts and Notifications\",\"col\":4}},{\"id\":\"7_U7_xCOos\",\"type\":\"card\",\"data\":{\"card_name\":\"Email\",\"col\":4}},{\"id\":\"3imoh2oqsJ\",\"type\":\"card\",\"data\":{\"card_name\":\"Printing\",\"col\":4}},{\"id\":\"SlYKJZj5r3\",\"type\":\"card\",\"data\":{\"card_name\":\"Automation\",\"col\":4}}]", "creation": "2020-03-02 14:53:24.980279", "custom_blocks": [], "docstatus": 0, @@ -105,74 +105,6 @@ "onboard": 0, "type": "Link" }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Email", - "link_count": 3, - "link_type": "DocType", - "onboard": 0, - "type": "Card Break" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Email Account", - "link_count": 0, - "link_to": "Email Account", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Email Domain", - "link_count": 0, - "link_to": "Email Domain", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Email Template", - "link_count": 0, - "link_to": "Email Template", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Newsletter", - "link_count": 2, - "link_type": "DocType", - "onboard": 0, - "type": "Card Break" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Newsletter", - "link_count": 0, - "link_to": "Newsletter", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "hidden": 0, - "is_query_report": 0, - "label": "Email Group", - "link_count": 0, - "link_to": "Email Group", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, { "hidden": 0, "is_query_report": 0, @@ -320,9 +252,58 @@ "link_type": "DocType", "onboard": 0, "type": "Link" + }, + { + "hidden": 0, + "is_query_report": 0, + "label": "Email", + "link_count": 4, + "link_type": "DocType", + "onboard": 0, + "type": "Card Break" + }, + { + "hidden": 0, + "is_query_report": 0, + "label": "Email Account", + "link_count": 0, + "link_to": "Email Account", + "link_type": "DocType", + "onboard": 0, + "type": "Link" + }, + { + "hidden": 0, + "is_query_report": 0, + "label": "Email Domain", + "link_count": 0, + "link_to": "Email Domain", + "link_type": "DocType", + "onboard": 0, + "type": "Link" + }, + { + "hidden": 0, + "is_query_report": 0, + "label": "Email Template", + "link_count": 0, + "link_to": "Email Template", + "link_type": "DocType", + "onboard": 0, + "type": "Link" + }, + { + "hidden": 0, + "is_query_report": 0, + "label": "Email Group", + "link_count": 0, + "link_to": "Email Group", + "link_type": "DocType", + "onboard": 0, + "type": "Link" } ], - "modified": "2024-09-03 21:54:05.403066", + "modified": "2025-06-27 11:39:44.392114", "modified_by": "Administrator", "module": "Automation", "name": "Tools", diff --git a/frappe/core/api/user_invitation.py b/frappe/core/api/user_invitation.py new file mode 100644 index 0000000000..09811a9ace --- /dev/null +++ b/frappe/core/api/user_invitation.py @@ -0,0 +1,126 @@ +import frappe +import frappe.utils +from frappe import _ +from frappe.core.doctype.user_invitation.user_invitation import UserInvitation + + +@frappe.whitelist(methods=["POST"]) +def invite_by_email( + emails: str, roles: list[str], redirect_to_path: str, app_name: str = "frappe" +) -> dict[str, list[str]]: + UserInvitation.validate_role(app_name) + + # validate emails + frappe.utils.validate_email_address(emails, throw=True) + email_list = frappe.utils.split_emails(emails) + if not email_list: + frappe.throw(title=_("Invalid input"), msg=_("No email addresses to invite")) + + # get relevant data from the database + accepted_invite_emails = frappe.db.get_all( + "User Invitation", + filters={"email": ["in", email_list], "status": "Accepted", "app_name": app_name}, + pluck="email", + ) + pending_invite_emails = frappe.db.get_all( + "User Invitation", + filters={"email": ["in", email_list], "status": "Pending", "app_name": app_name}, + pluck="email", + ) + + # create invitation documents + to_invite = list(set(email_list) - set(accepted_invite_emails) - set(pending_invite_emails)) + for email in to_invite: + frappe.get_doc( + doctype="User Invitation", + email=email, + roles=[dict(role=role) for role in roles], + app_name=app_name, + redirect_to_path=redirect_to_path, + ).insert(ignore_permissions=True) + + return { + "accepted_invite_emails": accepted_invite_emails, + "pending_invite_emails": pending_invite_emails, + "invited_emails": to_invite, + } + + +@frappe.whitelist(allow_guest=True, methods=["GET"]) +def accept_invitation(key: str) -> None: + _accept_invitation(key, False) + + +# `app_name` is required for security +@frappe.whitelist(methods=["PATCH", "POST"]) +def cancel_invitation(name: str, app_name: str): + UserInvitation.validate_role(app_name) + + if not frappe.db.exists("User Invitation", name): + frappe.throw(title=_("Error"), msg=_("Invitation not found")) + + invitation = frappe.get_doc("User Invitation", name) + if invitation.app_name != app_name: + # message is not specific enough for security + frappe.throw(title=_("Error"), msg=_("Invitation not found")) + + if invitation.status == "Cancelled": + return {"cancelled_now": False} + + if invitation.status != "Pending": + frappe.throw(title=_("Error"), msg=_("Invitation cannot be cancelled")) + + invitation.flags.ignore_permissions = True + return {"cancelled_now": invitation.cancel_invite()} + + +@frappe.whitelist(methods=["GET"]) +def get_pending_invitations(app_name: str): + UserInvitation.validate_role(app_name) + + pending_invitations = frappe.db.get_all( + "User Invitation", fields=["name", "email"], filters={"status": "Pending", "app_name": app_name} + ) + res = [] + for pending_invitation in pending_invitations: + roles = frappe.db.get_all("User Role", fields=["role"], filters={"parent": pending_invitation.name}) + res.append( + { + "name": pending_invitation.name, + "email": pending_invitation.email, + "roles": [r.role for r in roles], + } + ) + return res + + +def _accept_invitation(key: str, in_test: bool) -> None: + # get invitation + hashed_key = frappe.utils.sha256_hash(key) + invitation_name = frappe.db.get_value("User Invitation", filters={"key": hashed_key}) + if not invitation_name: + frappe.throw(title=_("Error"), msg=_("Invalid key")) + invitation = frappe.get_doc("User Invitation", invitation_name) + + # accept invitation + invitation.accept(ignore_permissions=True) + + user = frappe.get_doc("User", invitation.email) + should_update_password = not user.last_password_reset_date and not bool( + frappe.get_system_settings("disable_user_pass_login") + ) + + # set redirect_to + redirect_to = frappe.utils.get_url(invitation.get_redirect_to_path()) + if should_update_password: + redirect_to = f"{user.reset_password()}&redirect_to=/{invitation.get_redirect_to_path()}" + + # GET requests do not cause an implicit commit + frappe.db.commit() # nosemgrep + + if not in_test and not should_update_password: + frappe.local.login_manager.login_as(invitation.email) + + # set response + frappe.local.response["type"] = "redirect" + frappe.local.response["location"] = redirect_to diff --git a/frappe/core/doctype/comment/test_comment.py b/frappe/core/doctype/comment/test_comment.py index b24641e3b6..0c80c05eb7 100644 --- a/frappe/core/doctype/comment/test_comment.py +++ b/frappe/core/doctype/comment/test_comment.py @@ -5,11 +5,16 @@ import json import frappe from frappe.templates.includes.comments.comments import add_comment from frappe.tests import IntegrationTestCase +from frappe.tests.test_helpers import setup_for_tests from frappe.tests.test_model_utils import set_user -from frappe.website.doctype.blog_post.test_blog_post import make_test_blog + +EXTRA_TEST_RECORD_DEPENDENCIES = ["Web Page"] class TestComment(IntegrationTestCase): + def setUp(self): + setup_for_tests() + def test_comment_creation(self): test_doc = frappe.get_doc(doctype="ToDo", description="test") test_doc.insert() @@ -42,16 +47,16 @@ class TestComment(IntegrationTestCase): # test via blog def test_public_comment(self): - test_blog = make_test_blog() + test_blog = frappe.get_doc("Test Blog Post", "_Test Blog Post 1") - frappe.db.delete("Comment", {"reference_doctype": "Blog Post"}) + frappe.db.delete("Comment", {"reference_doctype": "Test Blog Post"}) add_comment_args = { "comment": "Good comment with 10 chars", "comment_email": "test@test.com", "comment_by": "Good Tester", "reference_doctype": test_blog.doctype, "reference_name": test_blog.name, - "route": test_blog.route, + "route": f"blog/{test_blog.doctype}/{test_blog.name}", } add_comment(**add_comment_args) @@ -64,7 +69,7 @@ class TestComment(IntegrationTestCase): 1, ) - frappe.db.delete("Comment", {"reference_doctype": "Blog Post"}) + frappe.db.delete("Comment", {"reference_doctype": "Test Blog Post"}) add_comment_args.update(comment="pleez vizits my site http://mysite.com", comment_by="bad commentor") add_comment(**add_comment_args) @@ -81,7 +86,7 @@ class TestComment(IntegrationTestCase): ) # test for filtering html and css injection elements - frappe.db.delete("Comment", {"reference_doctype": "Blog Post"}) + frappe.db.delete("Comment", {"reference_doctype": "Test Blog Post"}) add_comment_args.update(comment="Comment", comment_by="hacker") add_comment(**add_comment_args) @@ -96,26 +101,10 @@ class TestComment(IntegrationTestCase): test_blog.delete() - @IntegrationTestCase.change_settings("Blog Settings", {"allow_guest_to_comment": 0}) - def test_guest_cannot_comment(self): - test_blog = make_test_blog() - with set_user("Guest"): - self.assertEqual( - add_comment( - comment="Good comment with 10 chars", - comment_email="mail@example.org", - comment_by="Good Tester", - reference_doctype="Blog Post", - reference_name=test_blog.name, - route=test_blog.route, - ), - None, - ) - def test_user_not_logged_in(self): some_system_user = frappe.db.get_value("User", {"name": ("not in", frappe.STANDARD_USERS)}) - test_blog = make_test_blog() + test_blog = frappe.get_doc("Web Page", "test-web-page-1") with set_user("Guest"): self.assertRaises( frappe.ValidationError, @@ -123,7 +112,7 @@ class TestComment(IntegrationTestCase): comment="Good comment with 10 chars", comment_email=some_system_user, comment_by="Good Tester", - reference_doctype="Blog Post", + reference_doctype="Web Page", reference_name=test_blog.name, route=test_blog.route, ) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 28ca7abf4f..9e6907edd6 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -401,7 +401,11 @@ class Communication(Document, CommunicationEmailMixin): return for doctype, docname in parse_email([self.recipients, self.cc, self.bcc]): - if not frappe.db.get_value(doctype, docname, ignore=True): + # Both document and doctype names should be case insensitive in email addresses. + doctype = frappe.db.get_value("DocType", doctype) + if doctype: + docname = frappe.db.get_value(doctype, docname, ignore=True) + if not (doctype and docname): continue self.add_link(doctype, docname) diff --git a/frappe/core/doctype/communication/email.py b/frappe/core/doctype/communication/email.py index e16b59f98e..d2b79224dd 100755 --- a/frappe/core/doctype/communication/email.py +++ b/frappe/core/doctype/communication/email.py @@ -8,6 +8,7 @@ from typing import TYPE_CHECKING import frappe import frappe.email.smtp from frappe import _ +from frappe.database.utils import commit_after_response from frappe.email.email_body import get_message_id from frappe.utils import ( cint, @@ -272,7 +273,7 @@ def add_attachments(name: str, attachments: Iterable[str | dict]) -> None: @frappe.whitelist(allow_guest=True, methods=("GET",)) def mark_email_as_seen(name: str | None = None): - frappe.request.after_response.add(lambda: _mark_email_as_seen(name)) + commit_after_response(lambda: _mark_email_as_seen(name)) frappe.response.update(frappe.utils.get_imaginary_pixel_response()) @@ -282,8 +283,6 @@ def _mark_email_as_seen(name): except Exception: frappe.log_error("Unable to mark as seen", None, "Communication", name) - frappe.db.commit() # nosemgrep: after_response requires explicit commit - def update_communication_as_read(name): if not name or not isinstance(name, str): diff --git a/frappe/core/doctype/data_import/importer.py b/frappe/core/doctype/data_import/importer.py index c256f8e821..a880bf2aa6 100644 --- a/frappe/core/doctype/data_import/importer.py +++ b/frappe/core/doctype/data_import/importer.py @@ -1035,8 +1035,11 @@ class Column: if self.df.fieldtype == "Link": # find all values that dont exist - values = list({cstr(v) for v in self.column_values if v}) - exists = [cstr(d.name) for d in frappe.get_all(self.df.options, filters={"name": ("in", values)})] + transform = (lambda v: cstr(v).lower()) if frappe.db.db_type == "mariadb" else cstr + values = list({transform(v) for v in self.column_values if v}) + exists = [ + transform(d.name) for d in frappe.get_all(self.df.options, filters={"name": ("in", values)}) + ] not_exists = list(set(values) - set(exists)) if not_exists: missing_values = ", ".join(not_exists) diff --git a/frappe/core/doctype/doctype/doctype.json b/frappe/core/doctype/doctype/doctype.json index dfcb88b2ff..6a035986b3 100644 --- a/frappe/core/doctype/doctype/doctype.json +++ b/frappe/core/doctype/doctype/doctype.json @@ -77,6 +77,7 @@ "email_append_to", "sender_field", "sender_name_field", + "recipient_account_field", "subject_field", "fields_tab", "fields_section", @@ -707,6 +708,12 @@ "fieldtype": "Int", "label": "Rows Threshold for Grid Search", "non_negative": 1 + }, + { + "depends_on": "email_append_to", + "fieldname": "recipient_account_field", + "fieldtype": "Data", + "label": "Recipient Account Field" } ], "grid_page_length": 50, @@ -785,7 +792,7 @@ "link_fieldname": "document_type" } ], - "modified": "2025-06-24 07:46:34.380662", + "modified": "2025-07-19 12:23:16.296416", "modified_by": "Administrator", "module": "Core", "name": "DocType", diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index 1b94db76a9..845dbf5219 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -158,6 +158,7 @@ class DocType(Document): queue_in_background: DF.Check quick_entry: DF.Check read_only: DF.Check + recipient_account_field: DF.Data | None restrict_to_domain: DF.Link | None route: DF.Data | None row_format: DF.Literal["Dynamic", "Compressed"] diff --git a/frappe/core/doctype/file/file.js b/frappe/core/doctype/file/file.js index 015f89655d..f6e3fab1f8 100644 --- a/frappe/core/doctype/file/file.js +++ b/frappe/core/doctype/file/file.js @@ -47,6 +47,7 @@ frappe.ui.form.on("File", { $preview = $(`
diff --git a/frappe/core/doctype/installed_application/installed_application.json b/frappe/core/doctype/installed_application/installed_application.json index fa0cda8cc4..4175c3d7eb 100644 --- a/frappe/core/doctype/installed_application/installed_application.json +++ b/frappe/core/doctype/installed_application/installed_application.json @@ -17,8 +17,7 @@ "fieldtype": "Data", "in_list_view": 1, "label": "Git Branch", - "read_only": 1, - "reqd": 1 + "read_only": 1 }, { "columns": 2, @@ -35,8 +34,7 @@ "fieldtype": "Data", "in_list_view": 1, "label": "Application Version", - "read_only": 1, - "reqd": 1 + "read_only": 1 }, { "columns": 2, @@ -58,7 +56,7 @@ "grid_page_length": 50, "istable": 1, "links": [], - "modified": "2025-05-22 12:26:49.523690", + "modified": "2025-05-27 12:26:49.523690", "modified_by": "Administrator", "module": "Core", "name": "Installed Application", diff --git a/frappe/core/doctype/installed_applications/installed_applications.json b/frappe/core/doctype/installed_applications/installed_applications.json index 23eba1bf75..05d2738744 100644 --- a/frappe/core/doctype/installed_applications/installed_applications.json +++ b/frappe/core/doctype/installed_applications/installed_applications.json @@ -18,7 +18,7 @@ ], "issingle": 1, "links": [], - "modified": "2024-03-23 16:03:27.992755", + "modified": "2025-06-30 21:26:13.462828", "modified_by": "Administrator", "module": "Core", "name": "Installed Applications", @@ -36,8 +36,8 @@ } ], "quick_entry": 1, + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file + "states": [] +} diff --git a/frappe/core/doctype/installed_applications/installed_applications.py b/frappe/core/doctype/installed_applications/installed_applications.py index c8e209907a..b589a009ed 100644 --- a/frappe/core/doctype/installed_applications/installed_applications.py +++ b/frappe/core/doctype/installed_applications/installed_applications.py @@ -26,6 +26,8 @@ class InstalledApplications(Document): # end: auto-generated types def update_versions(self): + self.reload_doc_if_required() + app_wise_setup_details = self.get_app_wise_setup_details() self.delete_key("installed_applications") @@ -52,6 +54,8 @@ class InstalledApplications(Document): ) self.save() + frappe.clear_cache(doctype="System Settings") + frappe.db.set_single_value("System Settings", "setup_complete", frappe.is_setup_complete()) def get_app_wise_setup_details(self): """Get app wise setup details from the Installed Application doctype""" @@ -64,6 +68,14 @@ class InstalledApplications(Document): ) ) + def reload_doc_if_required(self): + if frappe.db.has_column("Installed Application", "is_setup_complete"): + return + + frappe.reload_doc("core", "doctype", "installed_application") + frappe.reload_doc("core", "doctype", "installed_applications") + frappe.reload_doc("integrations", "doctype", "webhook") + @frappe.whitelist() def update_installed_apps_order(new_order: list[str] | str): diff --git a/frappe/core/doctype/report/test_report.py b/frappe/core/doctype/report/test_report.py index 73f67b044d..29b22b1799 100644 --- a/frappe/core/doctype/report/test_report.py +++ b/frappe/core/doctype/report/test_report.py @@ -175,12 +175,11 @@ class TestReport(IntegrationTestCase): ) def test_report_permissions(self): - frappe.set_user("test@example.com") - frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"}) - frappe.db.commit() + # create role "Test Has Role" if not frappe.db.exists("Role", "Test Has Role"): frappe.get_doc({"doctype": "Role", "role_name": "Test Has Role"}).insert(ignore_permissions=True) + # create report "Test Report" if not frappe.db.exists("Report", "Test Report"): report = frappe.get_doc( { @@ -195,13 +194,16 @@ class TestReport(IntegrationTestCase): else: report = frappe.get_doc("Report", "Test Report") - self.assertNotEqual(report.is_permitted(), True) - frappe.set_user("Administrator") + with self.set_user("test@example.com"): + # remove role "Test Has Role" from user if found + frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"}) + self.assertNotEqual(report.is_permitted(), True) def test_report_custom_permissions(self): - frappe.set_user("test@example.com") + # delete custom role if exists frappe.db.delete("Custom Role", {"report": "Test Custom Role Report"}) - frappe.db.commit() # nosemgrep + + # create report if not exists if not frappe.db.exists("Report", "Test Custom Role Report"): report = frappe.get_doc( { @@ -216,8 +218,11 @@ class TestReport(IntegrationTestCase): else: report = frappe.get_doc("Report", "Test Custom Role Report") - self.assertEqual(report.is_permitted(), True) + # check report is permitted without custom role created + with self.set_user("test@example.com"): + self.assertEqual(report.is_permitted(), True) + # create custom role for report frappe.get_doc( { "doctype": "Custom Role", @@ -227,8 +232,9 @@ class TestReport(IntegrationTestCase): } ).insert(ignore_permissions=True) - self.assertNotEqual(report.is_permitted(), True) - frappe.set_user("Administrator") + # check report is not permitted with custom role created + with self.set_user("test@example.com"): + self.assertNotEqual(report.is_permitted(), True) # test for the `_format` method if report data doesn't have sort_by parameter def test_format_method(self): diff --git a/frappe/core/doctype/server_script/server_script.js b/frappe/core/doctype/server_script/server_script.js index 1a1d19d11d..86b99c1c12 100644 --- a/frappe/core/doctype/server_script/server_script.js +++ b/frappe/core/doctype/server_script/server_script.js @@ -129,6 +129,21 @@ select name from \`tabPerson\` where tenant_id = 2 order by creation desc + +
+ +

Workflow Task

+

Execute when a particular Workflow Action Master is executed.

+

Gets the document which the action is being applied on in the doc variable.

+
+# create a customer with the same name as the given document
+
+customer = frappe.new_doc("Customer")
+customer.customer_name = doc.first_name + " " + doc.last_name # we get this from the workflow action
+customer.customer_type = "Company"
+
+c.save()
+
`); }, }); diff --git a/frappe/core/doctype/server_script/server_script.json b/frappe/core/doctype/server_script/server_script.json index 6cd35f6352..c8a78063d2 100644 --- a/frappe/core/doctype/server_script/server_script.json +++ b/frappe/core/doctype/server_script/server_script.json @@ -32,7 +32,7 @@ "in_list_view": 1, "in_standard_filter": 1, "label": "Script Type", - "options": "DocType Event\nScheduler Event\nPermission Query\nAPI", + "options": "DocType Event\nScheduler Event\nPermission Query\nAPI\nWorkflow Task", "reqd": 1 }, { @@ -151,7 +151,7 @@ "link_fieldname": "server_script" } ], - "modified": "2024-05-08 03:21:54.169380", + "modified": "2025-07-03 16:12:29.676150", "modified_by": "Administrator", "module": "Core", "name": "Server Script", @@ -171,6 +171,7 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], diff --git a/frappe/core/doctype/server_script/server_script.py b/frappe/core/doctype/server_script/server_script.py index fb639790f1..1b56c39e75 100644 --- a/frappe/core/doctype/server_script/server_script.py +++ b/frappe/core/doctype/server_script/server_script.py @@ -80,7 +80,9 @@ class ServerScript(Document): rate_limit_seconds: DF.Int reference_doctype: DF.Link | None script: DF.Code - script_type: DF.Literal["DocType Event", "Scheduler Event", "Permission Query", "API"] + script_type: DF.Literal[ + "DocType Event", "Scheduler Event", "Permission Query", "API", "Workflow Task" + ] # end: auto-generated types def validate(self): @@ -216,6 +218,19 @@ class ServerScript(Document): if locals["conditions"]: return locals["conditions"] + def execute_workflow_task(self, doc: Document): + """ + Specific to Workflow Tasks via Workflow Action Master + """ + if self.script_type != "Workflow Task": + raise frappe.DoesNotExistError + + safe_exec( + self.script, + _locals={"doc": doc}, + script_filename=self.name, + ) + @frappe.whitelist() @http_cache(max_age=10 * 60, stale_while_revalidate=6 * 60 * 60) diff --git a/frappe/core/doctype/sms_settings/sms_settings.py b/frappe/core/doctype/sms_settings/sms_settings.py index f48ddcfa0f..43830b0155 100644 --- a/frappe/core/doctype/sms_settings/sms_settings.py +++ b/frappe/core/doctype/sms_settings/sms_settings.py @@ -78,6 +78,10 @@ def send_sms(receiver_list, msg, sender_name="", success_msg=True): "success_msg": success_msg, } + send_sms_hook_methods = frappe.get_hooks("send_sms") + if send_sms_hook_methods: + return frappe.get_attr(send_sms_hook_methods[-1])(receiver_list, msg, sender_name, success_msg) + if frappe.db.get_single_value("SMS Settings", "sms_gateway_url"): send_via_gateway(arg) else: diff --git a/frappe/core/doctype/system_settings/system_settings.py b/frappe/core/doctype/system_settings/system_settings.py index 323c4a3f54..62a13fc5cc 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -224,9 +224,6 @@ def load(): return {"timezones": get_all_timezones(), "defaults": defaults} -cache_key = frappe.get_document_cache_key("System Settings", "System Settings") - - def get_system_settings(key: str): """Return the value associated with the given `key` from System Settings DocType.""" if not (system_settings := getattr(frappe.local, "system_settings", None)): @@ -241,7 +238,7 @@ def get_system_settings(key: str): def clear_system_settings_cache(): - frappe.client_cache.delete_value(cache_key) + frappe.client_cache.delete_value(frappe.get_document_cache_key("System Settings", "System Settings")) frappe.cache.delete_value("system_settings") frappe.cache.delete_value("time_zone") diff --git a/frappe/core/doctype/translation/translation.json b/frappe/core/doctype/translation/translation.json index a4ea16f6c8..5e14750c71 100644 --- a/frappe/core/doctype/translation/translation.json +++ b/frappe/core/doctype/translation/translation.json @@ -101,6 +101,18 @@ "role": "System Manager", "share": 1, "write": 1 + }, + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Translator", + "share": 1, + "write": 1 } ], "sort_field": "creation", @@ -108,4 +120,4 @@ "states": [], "title_field": "source_text", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/core/doctype/user/test_user.py b/frappe/core/doctype/user/test_user.py index ac66c9feb6..0c4704a7d1 100644 --- a/frappe/core/doctype/user/test_user.py +++ b/frappe/core/doctype/user/test_user.py @@ -120,10 +120,6 @@ class TestUser(IntegrationTestCase): self.assertEqual(frappe.db.get_value("User", "xxxtest@example.com"), None) - frappe.db.set_single_value("Website Settings", "_test", "_test_val") - self.assertEqual(frappe.db.get_value("Website Settings", None, "_test"), "_test_val") - self.assertEqual(frappe.db.get_value("Website Settings", "Website Settings", "_test"), "_test_val") - def test_high_permlevel_validations(self): user = frappe.get_meta("User") self.assertTrue("roles" in [d.fieldname for d in user.get_high_permlevel_fields()]) diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index dc9d2bc6a5..c4a90e266f 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -845,11 +845,6 @@ "link_doctype": "Contact", "link_fieldname": "user" }, - { - "group": "Profile", - "link_doctype": "Blogger", - "link_fieldname": "user" - }, { "group": "Logs", "link_doctype": "Access Log", diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index f53351b4ff..c3feed78f3 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -20,6 +20,7 @@ from frappe.desk.notifications import clear_notifications from frappe.model.document import Document from frappe.query_builder import DocType from frappe.rate_limiter import rate_limit +from frappe.sessions import clear_sessions from frappe.utils import ( cint, escape_html, @@ -628,6 +629,9 @@ class User(Document): # set email frappe.db.set_value("User", new_name, "email", new_name) + clear_sessions(user=old_name, force=True) + clear_sessions(user=new_name, force=True) + def append_roles(self, *roles): """Add roles to user""" current_roles = {d.role for d in self.get("roles")} diff --git a/frappe/email/doctype/newsletter_attachment/__init__.py b/frappe/core/doctype/user_invitation/__init__.py similarity index 100% rename from frappe/email/doctype/newsletter_attachment/__init__.py rename to frappe/core/doctype/user_invitation/__init__.py diff --git a/frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png new file mode 100644 index 0000000000..b1cdc73a69 Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/cancel_invitation_api_example.png differ diff --git a/frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png new file mode 100644 index 0000000000..f5994fa6df Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/get_pending_invitations_api_example.png differ diff --git a/frappe/core/doctype/user_invitation/internal_doc/index.md b/frappe/core/doctype/user_invitation/internal_doc/index.md new file mode 100644 index 0000000000..2e3fa127bf --- /dev/null +++ b/frappe/core/doctype/user_invitation/internal_doc/index.md @@ -0,0 +1,106 @@ +# User Invitation + +## Index + +- [Motivation](#motivation) +- [How to use it?](#how-to-use-it) +- [Whitelisted functions](#whitelisted-functions) + - [`invite_by_email`](#invite_by_email) + - [`accept_invitation`](#accept_invitation) + - [`get_pending_invitations`](#get_pending_invitations) + - [`cancel_invitation`](#cancel_invitation) +- [Normal flow](#normal-flow) +- [Important points](#important-points) + +## Motivation + +- Until now, there was no way to invite and create a new user based on a sent invitation that can be accepted or rejected by the invitee. +- Due to this, custom Framework applications have to implement a user invitation flow. But most of the rules around this flow are generic enough to let Framework store all of the common logic associated with a typical user invitation flow. +- This will help ensure consistency and prevent code duplication for custom Framework applications that need this type of feature. + +## How to use it? + +Define user invitation hooks in your app's `hooks.py` file. An example is shown below. + +![user invitation hooks example](./user_invitation_hooks_example.png) + +- `only_for` + + Roles that are allowed to invite users to your app. + +- `allowed_roles` + + Roles that are allowed to be invited to your app. + +- `after_accept` + + Dot path of the function to execute after the user accepts the invitation. + + ```python + from frappe.model.document import Document + + def after_accept( + invitation: Document, + user: Document, + user_inserted: bool + ) -> None: + # your business logic here + ``` + +> `after_accept` is optional and should be used only if required. + +At this point, you can start using the whitelisted functions under the `apis` section (`frappe/core/api/user_invitation.py`). For more information, read [whitelisted functions](#whitelisted-functions). + +By default, only `System Manager`s can create a new invitation, view the list of invitations, or view more details associated with a single invitation **using the desk**. To enable users with specific roles to perform the mentioned actions, you might want to provide `create`, `read`, and `write` access to the relevant roles. + +Example - If a user having the `Agent Manager` role should be able to use all of the user invitation features using the desk, these should be enabled: + +- User Invitation doctype + ![user invitation doctype's role permissions manager entry](./user_invitation_doc_role_permissions_manager.png) + +- Role doctype + ![role doctype's role permissions manager entry](./role_doc_role_permissions_manager.png) + +## Whitelisted functions + +There are a few whitelisted functions that can be used to manage invitations. All of the whitelisted functions are in `frappe/core/api/user_invitation.py`. + +### `invite_by_email` + +Invite new emails to your application. + +![invite by email api example](./invite_by_email_api_example.png) + +> The invited email will receive an email with a link to accept the invitation. + +### `accept_invitation` + +Enables invitees to accept the sent invitations. + +> This function should not be used directly. The only reason this function is whitelisted is because the sent invitations contain a link that the invitees use to accept the invitations. + +### `get_pending_invitations` + +Get all of the pending invitations associated with an installed Framework application. + +![get pending invitations api example](./get_pending_invitations_api_example.png) + +### `cancel_invitation` + +Cancels a specific pending invitation associated with an installed Framework application. + +![cancel invitation api example](./cancel_invitation_api_example.png) + +## Normal flow + +1. Invitations are created from the desk or by using the [`invite_by_email`](#invite_by_email) whitelisted function. An email is sent to the invited email with a link to accept the invitation. +2. The app administrator or anyone able to use the desk can cancel invitations. Once an invitation is cancelled, an email is sent to the creator of the invitation. +3. Once the invitation is accepted, a new user is created (if required) with the roles specified in the invitation and is redirected to the specified path. +4. If the invitee doesn't accept the invitation within three days, the invitation is marked as expired by a background job that executes every day. Currently, there is no way to customize the expiration time. + +## Important points: + +- There can't be multiple pending invitations for the same app. +- Once an invitation document is created from Desk, all of the fields are immutable except the `Redirect To Path` field which is mutable only when the invitation status is `Pending`. +- To manually mark an invitation as expired, you can use the `expire` method on the invitation document. +- To manually cancel an invitation, you can use the `cancel_invite` method on the invitation document. diff --git a/frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png b/frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png new file mode 100644 index 0000000000..47856f1c5e Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/invite_by_email_api_example.png differ diff --git a/frappe/core/doctype/user_invitation/internal_doc/role_doc_role_permissions_manager.png b/frappe/core/doctype/user_invitation/internal_doc/role_doc_role_permissions_manager.png new file mode 100644 index 0000000000..ba8eb32b81 Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/role_doc_role_permissions_manager.png differ diff --git a/frappe/core/doctype/user_invitation/internal_doc/user_invitation_doc_role_permissions_manager.png b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_doc_role_permissions_manager.png new file mode 100644 index 0000000000..d14794c081 Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_doc_role_permissions_manager.png differ diff --git a/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png new file mode 100644 index 0000000000..8bc0fcd839 Binary files /dev/null and b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png differ diff --git a/frappe/core/doctype/user_invitation/test_user_invitation.py b/frappe/core/doctype/user_invitation/test_user_invitation.py new file mode 100644 index 0000000000..a8342c87c4 --- /dev/null +++ b/frappe/core/doctype/user_invitation/test_user_invitation.py @@ -0,0 +1,254 @@ +# Copyright (c) 2025, Frappe Technologies and Contributors +# See license.txt + +import re + +import frappe +import frappe.utils +from frappe.core.api.user_invitation import ( + _accept_invitation, + cancel_invitation, + get_pending_invitations, + invite_by_email, +) +from frappe.core.doctype.user_invitation.user_invitation import mark_expired_invitations +from frappe.tests import IntegrationTestCase + +emails = [ + "test_user_invite1@example.com", + "test_user_invite2@example.com", + "test_user_invite3@example.com", + "test_user_invite4@example.com", + "test_user_invite5@example.com", +] + + +class IntegrationTestUserInvitation(IntegrationTestCase): + """ + Integration tests for UserInvitation. + """ + + @classmethod + def setUpClass(cls): + super().setUpClass() + user = frappe.new_doc("User") + user.first_name = "Test" + user.last_name = "123" + user.email = emails[0] + user.append_roles("System Manager") + user.insert() + frappe.set_user(emails[0]) + + @classmethod + def tearDownClass(cls): + super().tearDownClass() + IntegrationTestUserInvitation.delete_all_invitations() + IntegrationTestUserInvitation.delete_all_user_roles() + frappe.db.delete("Email Queue") + for user_email in emails: + if frappe.db.exists("User", user_email): + frappe.delete_doc("User", user_email) + frappe.set_user("Administrator") + # some of the code under test commit internally + frappe.db.commit() # nosemgrep + + @classmethod + def delete_all_user_roles(cls): + frappe.db.sql("DELETE FROM `tabUser Role`") + + @classmethod + def delete_all_invitations(cls): + frappe.db.sql("DELETE FROM `tabUser Invitation`") + + @classmethod + def delete_invitation(cls, name: str): + frappe.db.sql(f'DELETE FROM `tabUser Invitation` WHERE name = "{name}"') + + def setUp(self): + super().setUp() + IntegrationTestUserInvitation.delete_all_invitations() + IntegrationTestUserInvitation.delete_all_user_roles() + frappe.db.delete("Email Queue") + + def test_insert_invitation(self): + invitation = self.get_dummy_invitation() + self.assertEqual(len(self.get_email_names()), 0) + invitation.insert() + self.assertEqual(invitation.invited_by, frappe.session.user) + self.assertEqual(invitation.status, "Pending") + self.assertIsInstance(invitation.email_sent_at, str) + self.assertIsInstance(invitation.key, str) + self.assertIsInstance(invitation.roles, list) + sent_emails = self.get_email_messages() + self.assertEqual(len(sent_emails), 1) + self.assertIn("invited", sent_emails[0].message.lower()) + + def test_update_invitation_status_to_expired(self): + invitation = self.get_dummy_invitation() + invitation.insert() + self.assertEqual(len(self.get_email_names()), 1) + invitation.expire() + emails = self.get_email_messages(False) + self.assertEqual(len(emails), 2) + self.assertIn("expired", emails[0].message.lower()) + + def test_cancel_pending_invitation(self): + invitation = self.get_dummy_invitation() + invitation.insert() + self.assertEqual(len(self.get_email_names(False)), 1) + self.assertEqual(invitation.status, "Pending") + invitation.cancel_invite() + sent_emails = self.get_email_messages(False) + self.assertEqual(len(sent_emails), 2) + self.assertIn("cancelled", sent_emails[0].message.lower()) + + def test_cancel_accepted_invitation(self): + invitation = self.get_dummy_invitation() + invitation.insert() + self.assertEqual(len(self.get_email_names(False)), 1) + invitation.status = "Accepted" + invitation.save() + invitation.cancel_invite() + self.assertEqual(len(self.get_email_names(False)), 1) + + def test_cancel_expired_invitation(self): + invitation = self.get_dummy_invitation() + invitation.insert() + self.assertEqual(len(self.get_email_names(False)), 1) + invitation.expire() + self.assertEqual(len(self.get_email_names(False)), 2) + invitation.cancel_invite() + self.assertEqual(len(self.get_email_names(False)), 2) + + def test_mark_expired_invitations(self): + invitation = self.get_dummy_invitation() + invitation.insert() + # the status of invitations older than 3 days should be set to expired + invitation.db_set("creation", frappe.utils.add_days(frappe.utils.now(), -4)) + mark_expired_invitations() + invitation.reload() + self.assertEqual(invitation.status, "Expired") + + def test_invite_by_email_api(self): + accepted_invite_email = emails[1] + invitation = frappe.get_doc( + doctype="User Invitation", + email=accepted_invite_email, + roles=[dict(role="System Manager")], + redirect_to_path="/abc", + app_name="frappe", + ).insert() + invitation.status = "Accepted" + invitation.save() + self.assertEqual(len(self.get_email_names(False)), 1) + pending_invite_email = emails[2] + frappe.get_doc( + doctype="User Invitation", + email=pending_invite_email, + roles=[dict(role="System Manager")], + redirect_to_path="/abc", + app_name="frappe", + ).insert() + self.assertEqual(len(self.get_email_names(False)), 2) + email_to_invite = emails[3] + res = invite_by_email( + emails=", ".join([accepted_invite_email, pending_invite_email, email_to_invite]), + roles=["System Manager"], + redirect_to_path="/xyz", + ) + self.assertSequenceEqual(res["accepted_invite_emails"], [accepted_invite_email]) + self.assertSequenceEqual(res["pending_invite_emails"], [pending_invite_email]) + self.assertSequenceEqual(res["invited_emails"], [email_to_invite]) + self.assertEqual(len(self.get_email_names(False)), 3) + + def test_accept_invitation_api_pass_redirect(self): + invitation = frappe.get_doc( + doctype="User Invitation", + email=emails[1], + roles=[dict(role="System Manager")], + redirect_to_path="/abc", + app_name="frappe", + ).insert() + self.assertEqual(len(frappe.get_all("User", filters={"email": invitation.email}, pluck="name")), 0) + self.assertEqual(len(self.get_email_names(False)), 1) + key = invitation._after_insert() + self.assertEqual(len(self.get_email_names(False)), 2) + _accept_invitation(key, True) + res = frappe.local.response + self.assertEqual(res.type, "redirect") + pattern = f"^{re.escape(frappe.utils.get_url(''))}/update-password\\?key=.+&redirect_to=/abc$" + self.assertRegex(res.location, pattern) + user = frappe.get_doc("User", invitation.email) + IntegrationTestUserInvitation.delete_invitation(invitation.name) + frappe.delete_doc("User", user.name) + + def test_accept_invitation_api_direct_redirect(self): + invitation = frappe.get_doc( + doctype="User Invitation", + email=emails[1], + roles=[dict(role="System Manager")], + redirect_to_path="/abc", + app_name="frappe", + ).insert() + self.assertEqual(len(frappe.get_all("User", filters={"email": invitation.email}, pluck="name")), 0) + original_disable_user_pass_login = frappe.get_system_settings("disable_user_pass_login") + frappe.db.set_single_value("System Settings", "disable_user_pass_login", 1) + self.assertEqual(len(self.get_email_names(False)), 1) + key = invitation._after_insert() + self.assertEqual(len(self.get_email_names(False)), 2) + _accept_invitation(key, True) + frappe.db.set_single_value( + "System Settings", "disable_user_pass_login", original_disable_user_pass_login + ) + res = frappe.local.response + self.assertEqual(res.type, "redirect") + pattern = f"^{re.escape(frappe.utils.get_url(''))}/abc$" + self.assertRegex(res.location, pattern) + user = frappe.get_doc("User", invitation.email) + IntegrationTestUserInvitation.delete_invitation(invitation.name) + frappe.delete_doc("User", user.name) + + def test_get_pending_invitations_api(self): + invitation = self.get_dummy_invitation() + invitation.insert() + invitation.reload() + pending_invitations = get_pending_invitations("frappe") + self.assertEqual(len(pending_invitations), 1) + pending_invitation = pending_invitations[0] + self.assertEqual(pending_invitation["name"], invitation.name) + self.assertEqual(pending_invitation["email"], invitation.email) + roles = pending_invitation["roles"] + self.assertIsInstance(roles, list) + self.assertSequenceEqual(roles, [r.role for r in invitation.roles]) + + def test_cancel_invitation_api(self): + invitation = self.get_dummy_invitation() + invitation.insert() + invitation.reload() + self.assertEqual(invitation.status, "Pending") + self.assertEqual(len(self.get_email_names()), 1) + res = cancel_invitation(invitation.name, "frappe") + self.assertTrue(res["cancelled_now"]) + invitation.reload() + self.assertEqual(invitation.status, "Cancelled") + self.assertEqual(len(self.get_email_names()), 2) + res = cancel_invitation(invitation.name, "frappe") + self.assertFalse(res["cancelled_now"]) + self.assertEqual(len(self.get_email_names()), 2) + + def get_dummy_invitation(self): + return frappe.get_doc( + doctype="User Invitation", + email=emails[1], + roles=[dict(role="System Manager")], + redirect_to_path="/abc", + app_name="frappe", + ) + + def get_email_names(self, sent_only=True): + filters = {"status": "Sent"} if sent_only else None + return frappe.db.get_all("Email Queue", filters=filters, fields=["name"]) + + def get_email_messages(self, sent_only=True): + filters = {"status": "Sent"} if sent_only else None + return frappe.db.get_all("Email Queue", filters=filters, fields=["message"]) diff --git a/frappe/core/doctype/user_invitation/user_invitation.js b/frappe/core/doctype/user_invitation/user_invitation.js new file mode 100644 index 0000000000..d60e28c031 --- /dev/null +++ b/frappe/core/doctype/user_invitation/user_invitation.js @@ -0,0 +1,23 @@ +// Copyright (c) 2025, Frappe Technologies and contributors +// For license information, please see license.txt + +frappe.ui.form.on("User Invitation", { + refresh(frm) { + frappe.xcall("frappe.apps.get_apps").then((r) => { + const apps = r?.map((r) => r.name) ?? []; + const default_app = "frappe"; + frm.set_df_property("app_name", "options", [default_app, ...apps]); + if (!frm.doc.app_name) { + frm.set_value("app_name", default_app); + } + }); + if (frm.doc.__islocal || frm.doc.status !== "Pending") { + return; + } + frm.add_custom_button(__("Cancel"), () => { + frappe.confirm(__("Are you sure you want to cancel the invitation?"), () => + frm.call("cancel_invite") + ); + }); + }, +}); diff --git a/frappe/core/doctype/user_invitation/user_invitation.json b/frappe/core/doctype/user_invitation/user_invitation.json new file mode 100644 index 0000000000..dffe32e82a --- /dev/null +++ b/frappe/core/doctype/user_invitation/user_invitation.json @@ -0,0 +1,143 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2025-07-07 14:19:31.014655", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "email", + "app_name", + "redirect_to_path", + "roles", + "status", + "invited_by", + "key", + "user", + "email_sent_at", + "accepted_at" + ], + "fields": [ + { + "fieldname": "email", + "fieldtype": "Data", + "in_list_view": 1, + "label": "Email", + "reqd": 1, + "set_only_once": 1 + }, + { + "fieldname": "invited_by", + "fieldtype": "Link", + "hidden": 1, + "in_list_view": 1, + "label": "Invited By", + "options": "User", + "read_only": 1 + }, + { + "default": "Pending", + "fieldname": "status", + "fieldtype": "Select", + "hidden": 1, + "in_list_view": 1, + "label": "Status", + "options": "Pending\nAccepted\nExpired\nCancelled", + "read_only": 1 + }, + { + "fieldname": "email_sent_at", + "fieldtype": "Datetime", + "hidden": 1, + "label": "Email Sent At", + "read_only": 1 + }, + { + "fieldname": "accepted_at", + "fieldtype": "Datetime", + "hidden": 1, + "label": "Accepted At", + "read_only": 1 + }, + { + "fieldname": "user", + "fieldtype": "Link", + "hidden": 1, + "label": "User", + "options": "User", + "read_only": 1 + }, + { + "fieldname": "app_name", + "fieldtype": "Select", + "in_list_view": 1, + "label": "App Name", + "reqd": 1, + "set_only_once": 1 + }, + { + "fieldname": "redirect_to_path", + "fieldtype": "Data", + "label": "Redirect To Path", + "read_only_depends_on": "eval:doc.status!==\"Pending\"", + "reqd": 1 + }, + { + "fieldname": "key", + "fieldtype": "Data", + "hidden": 1, + "label": "Key", + "read_only": 1 + }, + { + "fieldname": "roles", + "fieldtype": "Table MultiSelect", + "label": "Roles", + "options": "User Role", + "read_only_depends_on": "eval:Boolean(doc.creation)", + "reqd": 1 + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "links": [], + "modified": "2025-07-26 11:52:46.984800", + "modified_by": "Administrator", + "module": "Core", + "name": "User Invitation", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "quick_entry": 1, + "row_format": "Dynamic", + "sort_field": "creation", + "sort_order": "DESC", + "states": [ + { + "color": "Green", + "title": "Accepted" + }, + { + "color": "Orange", + "title": "Pending" + }, + { + "color": "Yellow", + "title": "Expired" + }, + { + "color": "Red", + "title": "Cancelled" + } + ] +} diff --git a/frappe/core/doctype/user_invitation/user_invitation.py b/frappe/core/doctype/user_invitation/user_invitation.py new file mode 100644 index 0000000000..cccb8749a3 --- /dev/null +++ b/frappe/core/doctype/user_invitation/user_invitation.py @@ -0,0 +1,241 @@ +# Copyright (c) 2025, Frappe Technologies and contributors +# For license information, please see license.txt + +import frappe +import frappe.utils +from frappe import _ +from frappe.model.document import Document +from frappe.permissions import get_roles + + +class UserInvitation(Document): + # begin: auto-generated types + # This code is auto-generated. Do not modify anything in this block. + + from typing import TYPE_CHECKING + + if TYPE_CHECKING: + from frappe.core.doctype.user_role.user_role import UserRole + from frappe.types import DF + + accepted_at: DF.Datetime | None + app_name: DF.Literal[None] + email: DF.Data + email_sent_at: DF.Datetime | None + invited_by: DF.Link | None + key: DF.Data | None + redirect_to_path: DF.Data + roles: DF.TableMultiSelect[UserRole] + status: DF.Literal["Pending", "Accepted", "Expired", "Cancelled"] + user: DF.Link | None + # end: auto-generated types + + def before_insert(self): + self._validate_invite() + self.invited_by = frappe.session.user + self.status = "Pending" + + def after_insert(self): + self._after_insert() + + def accept(self, ignore_permissions: bool = False): + accepted_now = self._accept() + if not accepted_now: + return + user, user_inserted = self._upsert_user(ignore_permissions) + self.save(ignore_permissions) + user.save(ignore_permissions) + self._run_after_accept_hooks(user, user_inserted) + + @frappe.whitelist() + def cancel_invite(self): + if self.status != "Pending": + return False + self.status = "Cancelled" + self.save() + email_title = self._get_email_title() + frappe.sendmail( + recipients=self.email, + subject=_("Invitation to join {0} cancelled").format(email_title), + template="user_invitation_cancelled", + args={"title": email_title}, + now=True, + ) + return True + + @frappe.whitelist() + def expire(self): + if self.status != "Pending": + return + self.status = "Expired" + self.save() + email_title = self._get_email_title() + invited_by_user = frappe.get_doc("User", self.invited_by) + frappe.sendmail( + recipients=invited_by_user.email, + subject=_("Invitation to join {0} expired").format(email_title), + template="user_invitation_expired", + args={"title": email_title}, + now=False, + ) + + def _validate_invite(self): + self._validate_app_name() + self._validate_roles() + self._validate_email() + if frappe.db.get_value( + "User Invitation", filters={"email": self.email, "status": "Accepted", "app_name": self.app_name} + ): + frappe.throw(title=_("Error"), msg=_("invitation already accepted")) + if frappe.db.get_value( + "User Invitation", filters={"email": self.email, "status": "Pending", "app_name": self.app_name} + ): + frappe.throw(title=_("Error"), msg=_("invitation already exists")) + + def _after_insert(self): + key = frappe.generate_hash() + self.db_set("key", frappe.utils.sha256_hash(key)) + invite_link = frappe.utils.get_url( + f"/api/method/frappe.core.api.user_invitation.accept_invitation?key={key}" + ) + email_title = self._get_email_title() + frappe.sendmail( + recipients=self.email, + subject=_("You've been invited to join {0}").format(email_title), + template="user_invitation", + args={"title": email_title, "invite_link": invite_link}, + now=True, + ) + self.db_set("email_sent_at", frappe.utils.now()) + return key + + def _accept(self): + if self.status == "Accepted": + return False + if self.status == "Expired": + frappe.throw(title=_("Error"), msg=_("Invitation is expired")) + if self.status == "Cancelled": + frappe.throw(title=_("Error"), msg=_("Invitation is cancelled")) + self.status = "Accepted" + self.accepted_at = frappe.utils.now() + self.user = self.email + return True + + def _upsert_user(self, ignore_permissions: bool = False): + user: Document | None = None + user_inserted = False + if frappe.db.exists("User", self.user): + user = frappe.get_doc("User", self.user) + else: + user = frappe.new_doc("User") + user.user_type = "System User" + user.email = self.email + user.first_name = self.email.split("@")[0].title() + user.send_welcome_email = False + user.insert(ignore_permissions) + user_inserted = True + user.append_roles(*[r.role for r in self.roles]) + return user, user_inserted + + def _run_after_accept_hooks(self, user: Document, user_inserted: bool): + user_invitation_hook = frappe.get_hooks("user_invitation", app_name=self.app_name) + if not isinstance(user_invitation_hook, dict): + return + for dot_path in user_invitation_hook.get("after_accept") or []: + frappe.call(dot_path, invitation=self, user=user, user_inserted=user_inserted) + + def _get_email_title(self): + return frappe.get_hooks("app_title", app_name=self.app_name)[0] + + def _validate_app_name(self): + UserInvitation.validate_app_name(self.app_name) + + def _validate_roles(self): + if self.app_name == "frappe": + return + user_invitation_hook = frappe.get_hooks("user_invitation", app_name=self.app_name) + allowed_roles: list[str] = [] + if isinstance(user_invitation_hook, dict): + allowed_roles = user_invitation_hook.get("allowed_roles") or [] + for r in self.roles: + if r.role in allowed_roles: + continue + frappe.throw( + title=_("Invalid role"), + msg=_("{0} is not an allowed role for {1}").format(r.role, self.app_name), + ) + + def _validate_email(self): + frappe.utils.validate_email_address(self.email, throw=True) + + def get_redirect_to_path(self): + start_index = 1 if self.redirect_to_path.startswith("/") else 0 + return self.redirect_to_path[start_index:] + + @staticmethod + def validate_app_name(app_name: str): + if app_name not in frappe.get_installed_apps(): + frappe.throw(title=_("Invalid app"), msg=_("application is not installed")) + + @staticmethod + def validate_role(app_name: str) -> None: + UserInvitation.validate_app_name(app_name) + user_invitation_hook = frappe.get_hooks("user_invitation", app_name=app_name) + only_for: list[str] = [] + if isinstance(user_invitation_hook, dict): + only_for = user_invitation_hook.get("only_for") or [] + if "System Manager" not in only_for: + only_for.append("System Manager") + frappe.only_for(only_for) + + +def mark_expired_invitations() -> None: + days = 3 + invitations_to_expire = frappe.db.get_all( + "User Invitation", + filters={"status": "Pending", "creation": ["<", frappe.utils.add_days(frappe.utils.now(), -days)]}, + ) + for invitation in invitations_to_expire: + invitation = frappe.get_doc("User Invitation", invitation.name) + invitation.expire() + # to avoid losing work in case the job times out without finishing + frappe.db.commit() # nosemgrep + + +def get_allowed_apps(user: Document | None) -> list[str]: + user_roles = set(get_user_roles(user)) + allowed_apps: list[str] = [] + for app in frappe.get_installed_apps(): + user_invitation_hooks = frappe.get_hooks("user_invitation", app_name=app) + if not isinstance(user_invitation_hooks, dict): + continue + only_for = user_invitation_hooks.get("only_for") or [] + if set(only_for) & user_roles: + allowed_apps.append(app) + return allowed_apps + + +def get_permission_query_conditions(user: Document | None) -> str | None: + user = get_user(user) + user_roles = get_user_roles(user) + if "System Manager" in user_roles: + return + allowed_apps = get_allowed_apps(user) + if not allowed_apps: + return "false" + allowed_apps_str = ", ".join([f'"{app}"' for app in allowed_apps]) + return f"`tabUser Invitation`.app_name IN ({allowed_apps_str})" + + +def has_permission( + doc: UserInvitation, user: Document | None = None, permission_type: str | None = None +) -> bool: + return permission_type != "delete" and doc.app_name in get_allowed_apps(user) + + +def get_user_roles(user: Document | None) -> list[str]: + return get_roles(get_user(user)) + + +def get_user(user: Document | None) -> Document: + return user or frappe.session.user diff --git a/frappe/core/doctype/user_permission/test_user_permission.py b/frappe/core/doctype/user_permission/test_user_permission.py index 47534ee5d8..afcc41279f 100644 --- a/frappe/core/doctype/user_permission/test_user_permission.py +++ b/frappe/core/doctype/user_permission/test_user_permission.py @@ -8,7 +8,7 @@ from frappe.core.doctype.user_permission.user_permission import ( ) from frappe.permissions import add_permission, has_user_permission from frappe.tests import IntegrationTestCase -from frappe.website.doctype.blog_post.test_blog_post import make_test_blog +from frappe.tests.test_helpers import setup_for_tests class TestUserPermission(IntegrationTestCase): @@ -23,6 +23,7 @@ class TestUserPermission(IntegrationTestCase): frappe.db.sql_ddl("DROP TABLE IF EXISTS `tabPerson`") frappe.delete_doc_if_exists("DocType", "Doc A") frappe.db.sql_ddl("DROP TABLE IF EXISTS `tabDoc A`") + setup_for_tests() def test_default_user_permission_validation(self): user = create_user("test_default_permission@example.com") @@ -39,27 +40,27 @@ class TestUserPermission(IntegrationTestCase): add_user_permissions(param) # create a duplicate entry with default perm_user = create_user("test_default_corectness2@example.com") - test_blog = make_test_blog() - param = get_params(perm_user, "Blog Post", test_blog.name, is_default=1, hide_descendants=1) + test_blog = frappe.get_doc("Test Blog Post", "_Test Blog Post 1") + param = get_params(perm_user, "Test Blog Post", test_blog.name, is_default=1, hide_descendants=1) add_user_permissions(param) frappe.db.delete("User Permission", filters={"for_value": test_blog.name}) - frappe.delete_doc("Blog Post", test_blog.name) + frappe.delete_doc("Test Blog Post", test_blog.name) def test_default_user_permission(self): frappe.set_user("Administrator") user = create_user("test_user_perm1@example.com", "Website Manager") for category in ["general", "public"]: - if not frappe.db.exists("Blog Category", category): - frappe.get_doc({"doctype": "Blog Category", "title": category}).insert() + if not frappe.db.exists("Test Blog Category", category): + frappe.get_doc({"doctype": "Test Blog Category", "title": category}).insert() - param = get_params(user, "Blog Category", "general", is_default=1) + param = get_params(user, "Test Blog Category", "general", is_default=1) add_user_permissions(param) - param = get_params(user, "Blog Category", "public") + param = get_params(user, "Test Blog Category", "public") add_user_permissions(param) frappe.set_user("test_user_perm1@example.com") - doc = frappe.new_doc("Blog Post") + doc = frappe.new_doc("Test Blog Post") self.assertEqual(doc.blog_category, "general") frappe.set_user("Administrator") diff --git a/frappe/email/doctype/newsletter_email_group/__init__.py b/frappe/core/doctype/user_role/__init__.py similarity index 100% rename from frappe/email/doctype/newsletter_email_group/__init__.py rename to frappe/core/doctype/user_role/__init__.py diff --git a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json b/frappe/core/doctype/user_role/user_role.json similarity index 58% rename from frappe/email/doctype/newsletter_attachment/newsletter_attachment.json rename to frappe/core/doctype/user_role/user_role.json index 47ff57b235..00fb33ea9a 100644 --- a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json +++ b/frappe/core/doctype/user_role/user_role.json @@ -1,32 +1,35 @@ { "actions": [], "allow_rename": 1, - "creation": "2021-12-06 16:37:40.652468", + "creation": "2025-07-17 10:56:04.746455", "doctype": "DocType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ - "attachment" + "role" ], "fields": [ { - "fieldname": "attachment", - "fieldtype": "Attach", + "fieldname": "role", + "fieldtype": "Link", "in_list_view": 1, - "label": "Attachment", + "label": "Role", + "options": "Role", "reqd": 1 } ], + "grid_page_length": 50, "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-03-23 16:03:31.101104", + "modified": "2025-07-17 10:56:36.357715", "modified_by": "Administrator", - "module": "Email", - "name": "Newsletter Attachment", + "module": "Core", + "name": "User Role", "owner": "Administrator", "permissions": [], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.py b/frappe/core/doctype/user_role/user_role.py similarity index 63% rename from frappe/email/doctype/newsletter_email_group/newsletter_email_group.py rename to frappe/core/doctype/user_role/user_role.py index 59b06e446d..6270a86312 100644 --- a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.py +++ b/frappe/core/doctype/user_role/user_role.py @@ -1,10 +1,11 @@ -# Copyright (c) 2015, Frappe Technologies and contributors -# License: MIT. See LICENSE +# Copyright (c) 2025, Frappe Technologies and contributors +# For license information, please see license.txt +# import frappe from frappe.model.document import Document -class NewsletterEmailGroup(Document): +class UserRole(Document): # begin: auto-generated types # This code is auto-generated. Do not modify anything in this block. @@ -13,11 +14,10 @@ class NewsletterEmailGroup(Document): if TYPE_CHECKING: from frappe.types import DF - email_group: DF.Link parent: DF.Data parentfield: DF.Data parenttype: DF.Data - total_subscribers: DF.ReadOnly | None + role: DF.Link # end: auto-generated types pass diff --git a/frappe/core/web_form/edit_profile/edit_profile.json b/frappe/core/web_form/edit_profile/edit_profile.json index 641e0e4d73..1be55728f4 100644 --- a/frappe/core/web_form/edit_profile/edit_profile.json +++ b/frappe/core/web_form/edit_profile/edit_profile.json @@ -22,7 +22,7 @@ "list_columns": [], "login_required": 1, "max_attachment_size": 0, - "modified": "2024-09-11 14:30:04.233730", + "modified": "2025-07-22 19:31:20.283749", "modified_by": "Administrator", "module": "Core", "name": "edit-profile", @@ -155,6 +155,20 @@ "read_only": 0, "reqd": 0, "show_in_filter": 0 + }, + { + "allow_read_on_all_link_options": 0, + "fieldname": "time_zone", + "fieldtype": "Select", + "hidden": 0, + "label": "Time Zone", + "max_length": 0, + "max_value": 0, + "options": "Africa/Abidjan\nAfrica/Accra\nAfrica/Addis_Ababa\nAfrica/Algiers\nAfrica/Asmara\nAfrica/Asmera\nAfrica/Bamako\nAfrica/Bangui\nAfrica/Banjul\nAfrica/Bissau\nAfrica/Blantyre\nAfrica/Brazzaville\nAfrica/Bujumbura\nAfrica/Cairo\nAfrica/Casablanca\nAfrica/Ceuta\nAfrica/Conakry\nAfrica/Dakar\nAfrica/Dar_es_Salaam\nAfrica/Djibouti\nAfrica/Douala\nAfrica/El_Aaiun\nAfrica/Freetown\nAfrica/Gaborone\nAfrica/Harare\nAfrica/Johannesburg\nAfrica/Juba\nAfrica/Kampala\nAfrica/Khartoum\nAfrica/Kigali\nAfrica/Kinshasa\nAfrica/Lagos\nAfrica/Libreville\nAfrica/Lome\nAfrica/Luanda\nAfrica/Lubumbashi\nAfrica/Lusaka\nAfrica/Malabo\nAfrica/Maputo\nAfrica/Maseru\nAfrica/Mbabane\nAfrica/Mogadishu\nAfrica/Monrovia\nAfrica/Nairobi\nAfrica/Ndjamena\nAfrica/Niamey\nAfrica/Nouakchott\nAfrica/Ouagadougou\nAfrica/Porto-Novo\nAfrica/Sao_Tome\nAfrica/Timbuktu\nAfrica/Tripoli\nAfrica/Tunis\nAfrica/Windhoek\nAmerica/Adak\nAmerica/Anchorage\nAmerica/Anguilla\nAmerica/Antigua\nAmerica/Araguaina\nAmerica/Argentina/Buenos_Aires\nAmerica/Argentina/Catamarca\nAmerica/Argentina/ComodRivadavia\nAmerica/Argentina/Cordoba\nAmerica/Argentina/Jujuy\nAmerica/Argentina/La_Rioja\nAmerica/Argentina/Mendoza\nAmerica/Argentina/Rio_Gallegos\nAmerica/Argentina/Salta\nAmerica/Argentina/San_Juan\nAmerica/Argentina/San_Luis\nAmerica/Argentina/Tucuman\nAmerica/Argentina/Ushuaia\nAmerica/Aruba\nAmerica/Asuncion\nAmerica/Atikokan\nAmerica/Atka\nAmerica/Bahia\nAmerica/Bahia_Banderas\nAmerica/Barbados\nAmerica/Belem\nAmerica/Belize\nAmerica/Blanc-Sablon\nAmerica/Boa_Vista\nAmerica/Bogota\nAmerica/Boise\nAmerica/Buenos_Aires\nAmerica/Cambridge_Bay\nAmerica/Campo_Grande\nAmerica/Cancun\nAmerica/Caracas\nAmerica/Catamarca\nAmerica/Cayenne\nAmerica/Cayman\nAmerica/Chicago\nAmerica/Chihuahua\nAmerica/Ciudad_Juarez\nAmerica/Coral_Harbour\nAmerica/Cordoba\nAmerica/Costa_Rica\nAmerica/Coyhaique\nAmerica/Creston\nAmerica/Cuiaba\nAmerica/Curacao\nAmerica/Danmarkshavn\nAmerica/Dawson\nAmerica/Dawson_Creek\nAmerica/Denver\nAmerica/Detroit\nAmerica/Dominica\nAmerica/Edmonton\nAmerica/Eirunepe\nAmerica/El_Salvador\nAmerica/Ensenada\nAmerica/Fort_Nelson\nAmerica/Fort_Wayne\nAmerica/Fortaleza\nAmerica/Glace_Bay\nAmerica/Godthab\nAmerica/Goose_Bay\nAmerica/Grand_Turk\nAmerica/Grenada\nAmerica/Guadeloupe\nAmerica/Guatemala\nAmerica/Guayaquil\nAmerica/Guyana\nAmerica/Halifax\nAmerica/Havana\nAmerica/Hermosillo\nAmerica/Indiana/Indianapolis\nAmerica/Indiana/Knox\nAmerica/Indiana/Marengo\nAmerica/Indiana/Petersburg\nAmerica/Indiana/Tell_City\nAmerica/Indiana/Vevay\nAmerica/Indiana/Vincennes\nAmerica/Indiana/Winamac\nAmerica/Indianapolis\nAmerica/Inuvik\nAmerica/Iqaluit\nAmerica/Jamaica\nAmerica/Jujuy\nAmerica/Juneau\nAmerica/Kentucky/Louisville\nAmerica/Kentucky/Monticello\nAmerica/Knox_IN\nAmerica/Kralendijk\nAmerica/La_Paz\nAmerica/Lima\nAmerica/Los_Angeles\nAmerica/Louisville\nAmerica/Lower_Princes\nAmerica/Maceio\nAmerica/Managua\nAmerica/Manaus\nAmerica/Marigot\nAmerica/Martinique\nAmerica/Matamoros\nAmerica/Mazatlan\nAmerica/Mendoza\nAmerica/Menominee\nAmerica/Merida\nAmerica/Metlakatla\nAmerica/Mexico_City\nAmerica/Miquelon\nAmerica/Moncton\nAmerica/Monterrey\nAmerica/Montevideo\nAmerica/Montreal\nAmerica/Montserrat\nAmerica/Nassau\nAmerica/New_York\nAmerica/Nipigon\nAmerica/Nome\nAmerica/Noronha\nAmerica/North_Dakota/Beulah\nAmerica/North_Dakota/Center\nAmerica/North_Dakota/New_Salem\nAmerica/Nuuk\nAmerica/Ojinaga\nAmerica/Panama\nAmerica/Pangnirtung\nAmerica/Paramaribo\nAmerica/Phoenix\nAmerica/Port-au-Prince\nAmerica/Port_of_Spain\nAmerica/Porto_Acre\nAmerica/Porto_Velho\nAmerica/Puerto_Rico\nAmerica/Punta_Arenas\nAmerica/Rainy_River\nAmerica/Rankin_Inlet\nAmerica/Recife\nAmerica/Regina\nAmerica/Resolute\nAmerica/Rio_Branco\nAmerica/Rosario\nAmerica/Santa_Isabel\nAmerica/Santarem\nAmerica/Santiago\nAmerica/Santo_Domingo\nAmerica/Sao_Paulo\nAmerica/Scoresbysund\nAmerica/Shiprock\nAmerica/Sitka\nAmerica/St_Barthelemy\nAmerica/St_Johns\nAmerica/St_Kitts\nAmerica/St_Lucia\nAmerica/St_Thomas\nAmerica/St_Vincent\nAmerica/Swift_Current\nAmerica/Tegucigalpa\nAmerica/Thule\nAmerica/Thunder_Bay\nAmerica/Tijuana\nAmerica/Toronto\nAmerica/Tortola\nAmerica/Vancouver\nAmerica/Virgin\nAmerica/Whitehorse\nAmerica/Winnipeg\nAmerica/Yakutat\nAmerica/Yellowknife\nAntarctica/Casey\nAntarctica/Davis\nAntarctica/DumontDUrville\nAntarctica/Macquarie\nAntarctica/Mawson\nAntarctica/McMurdo\nAntarctica/Palmer\nAntarctica/Rothera\nAntarctica/South_Pole\nAntarctica/Syowa\nAntarctica/Troll\nAntarctica/Vostok\nArctic/Longyearbyen\nAsia/Aden\nAsia/Almaty\nAsia/Amman\nAsia/Anadyr\nAsia/Aqtau\nAsia/Aqtobe\nAsia/Ashgabat\nAsia/Ashkhabad\nAsia/Atyrau\nAsia/Baghdad\nAsia/Bahrain\nAsia/Baku\nAsia/Bangkok\nAsia/Barnaul\nAsia/Beirut\nAsia/Bishkek\nAsia/Brunei\nAsia/Calcutta\nAsia/Chita\nAsia/Choibalsan\nAsia/Chongqing\nAsia/Chungking\nAsia/Colombo\nAsia/Dacca\nAsia/Damascus\nAsia/Dhaka\nAsia/Dili\nAsia/Dubai\nAsia/Dushanbe\nAsia/Famagusta\nAsia/Gaza\nAsia/Harbin\nAsia/Hebron\nAsia/Ho_Chi_Minh\nAsia/Hong_Kong\nAsia/Hovd\nAsia/Irkutsk\nAsia/Istanbul\nAsia/Jakarta\nAsia/Jayapura\nAsia/Jerusalem\nAsia/Kabul\nAsia/Kamchatka\nAsia/Karachi\nAsia/Kashgar\nAsia/Kathmandu\nAsia/Katmandu\nAsia/Khandyga\nAsia/Kolkata\nAsia/Krasnoyarsk\nAsia/Kuala_Lumpur\nAsia/Kuching\nAsia/Kuwait\nAsia/Macao\nAsia/Macau\nAsia/Magadan\nAsia/Makassar\nAsia/Manila\nAsia/Muscat\nAsia/Nicosia\nAsia/Novokuznetsk\nAsia/Novosibirsk\nAsia/Omsk\nAsia/Oral\nAsia/Phnom_Penh\nAsia/Pontianak\nAsia/Pyongyang\nAsia/Qatar\nAsia/Qostanay\nAsia/Qyzylorda\nAsia/Rangoon\nAsia/Riyadh\nAsia/Saigon\nAsia/Sakhalin\nAsia/Samarkand\nAsia/Seoul\nAsia/Shanghai\nAsia/Singapore\nAsia/Srednekolymsk\nAsia/Taipei\nAsia/Tashkent\nAsia/Tbilisi\nAsia/Tehran\nAsia/Tel_Aviv\nAsia/Thimbu\nAsia/Thimphu\nAsia/Tokyo\nAsia/Tomsk\nAsia/Ujung_Pandang\nAsia/Ulaanbaatar\nAsia/Ulan_Bator\nAsia/Urumqi\nAsia/Ust-Nera\nAsia/Vientiane\nAsia/Vladivostok\nAsia/Yakutsk\nAsia/Yangon\nAsia/Yekaterinburg\nAsia/Yerevan\nAtlantic/Azores\nAtlantic/Bermuda\nAtlantic/Canary\nAtlantic/Cape_Verde\nAtlantic/Faeroe\nAtlantic/Faroe\nAtlantic/Jan_Mayen\nAtlantic/Madeira\nAtlantic/Reykjavik\nAtlantic/South_Georgia\nAtlantic/St_Helena\nAtlantic/Stanley\nAustralia/ACT\nAustralia/Adelaide\nAustralia/Brisbane\nAustralia/Broken_Hill\nAustralia/Canberra\nAustralia/Currie\nAustralia/Darwin\nAustralia/Eucla\nAustralia/Hobart\nAustralia/LHI\nAustralia/Lindeman\nAustralia/Lord_Howe\nAustralia/Melbourne\nAustralia/NSW\nAustralia/North\nAustralia/Perth\nAustralia/Queensland\nAustralia/South\nAustralia/Sydney\nAustralia/Tasmania\nAustralia/Victoria\nAustralia/West\nAustralia/Yancowinna\nBrazil/Acre\nBrazil/DeNoronha\nBrazil/East\nBrazil/West\nCET\nCST6CDT\nCanada/Atlantic\nCanada/Central\nCanada/Eastern\nCanada/Mountain\nCanada/Newfoundland\nCanada/Pacific\nCanada/Saskatchewan\nCanada/Yukon\nChile/Continental\nChile/EasterIsland\nCuba\nEET\nEST\nEST5EDT\nEgypt\nEire\nEtc/GMT\nEtc/GMT+0\nEtc/GMT+1\nEtc/GMT+10\nEtc/GMT+11\nEtc/GMT+12\nEtc/GMT+2\nEtc/GMT+3\nEtc/GMT+4\nEtc/GMT+5\nEtc/GMT+6\nEtc/GMT+7\nEtc/GMT+8\nEtc/GMT+9\nEtc/GMT-0\nEtc/GMT-1\nEtc/GMT-10\nEtc/GMT-11\nEtc/GMT-12\nEtc/GMT-13\nEtc/GMT-14\nEtc/GMT-2\nEtc/GMT-3\nEtc/GMT-4\nEtc/GMT-5\nEtc/GMT-6\nEtc/GMT-7\nEtc/GMT-8\nEtc/GMT-9\nEtc/GMT0\nEtc/Greenwich\nEtc/UCT\nEtc/UTC\nEtc/Universal\nEtc/Zulu\nEurope/Amsterdam\nEurope/Andorra\nEurope/Astrakhan\nEurope/Athens\nEurope/Belfast\nEurope/Belgrade\nEurope/Berlin\nEurope/Bratislava\nEurope/Brussels\nEurope/Bucharest\nEurope/Budapest\nEurope/Busingen\nEurope/Chisinau\nEurope/Copenhagen\nEurope/Dublin\nEurope/Gibraltar\nEurope/Guernsey\nEurope/Helsinki\nEurope/Isle_of_Man\nEurope/Istanbul\nEurope/Jersey\nEurope/Kaliningrad\nEurope/Kiev\nEurope/Kirov\nEurope/Kyiv\nEurope/Lisbon\nEurope/Ljubljana\nEurope/London\nEurope/Luxembourg\nEurope/Madrid\nEurope/Malta\nEurope/Mariehamn\nEurope/Minsk\nEurope/Monaco\nEurope/Moscow\nEurope/Nicosia\nEurope/Oslo\nEurope/Paris\nEurope/Podgorica\nEurope/Prague\nEurope/Riga\nEurope/Rome\nEurope/Samara\nEurope/San_Marino\nEurope/Sarajevo\nEurope/Saratov\nEurope/Simferopol\nEurope/Skopje\nEurope/Sofia\nEurope/Stockholm\nEurope/Tallinn\nEurope/Tirane\nEurope/Tiraspol\nEurope/Ulyanovsk\nEurope/Uzhgorod\nEurope/Vaduz\nEurope/Vatican\nEurope/Vienna\nEurope/Vilnius\nEurope/Volgograd\nEurope/Warsaw\nEurope/Zagreb\nEurope/Zaporozhye\nEurope/Zurich\nFactory\nGB\nGB-Eire\nGMT\nGMT+0\nGMT-0\nGMT0\nGreenwich\nHST\nHongkong\nIceland\nIndian/Antananarivo\nIndian/Chagos\nIndian/Christmas\nIndian/Cocos\nIndian/Comoro\nIndian/Kerguelen\nIndian/Mahe\nIndian/Maldives\nIndian/Mauritius\nIndian/Mayotte\nIndian/Reunion\nIran\nIsrael\nJamaica\nJapan\nKwajalein\nLibya\nMET\nMST\nMST7MDT\nMexico/BajaNorte\nMexico/BajaSur\nMexico/General\nNZ\nNZ-CHAT\nNavajo\nPRC\nPST8PDT\nPacific/Apia\nPacific/Auckland\nPacific/Bougainville\nPacific/Chatham\nPacific/Chuuk\nPacific/Easter\nPacific/Efate\nPacific/Enderbury\nPacific/Fakaofo\nPacific/Fiji\nPacific/Funafuti\nPacific/Galapagos\nPacific/Gambier\nPacific/Guadalcanal\nPacific/Guam\nPacific/Honolulu\nPacific/Johnston\nPacific/Kanton\nPacific/Kiritimati\nPacific/Kosrae\nPacific/Kwajalein\nPacific/Majuro\nPacific/Marquesas\nPacific/Midway\nPacific/Nauru\nPacific/Niue\nPacific/Norfolk\nPacific/Noumea\nPacific/Pago_Pago\nPacific/Palau\nPacific/Pitcairn\nPacific/Pohnpei\nPacific/Ponape\nPacific/Port_Moresby\nPacific/Rarotonga\nPacific/Saipan\nPacific/Samoa\nPacific/Tahiti\nPacific/Tarawa\nPacific/Tongatapu\nPacific/Truk\nPacific/Wake\nPacific/Wallis\nPacific/Yap\nPoland\nPortugal\nROC\nROK\nSingapore\nTurkey\nUCT\nUS/Alaska\nUS/Aleutian\nUS/Arizona\nUS/Central\nUS/East-Indiana\nUS/Eastern\nUS/Hawaii\nUS/Indiana-Starke\nUS/Michigan\nUS/Mountain\nUS/Pacific\nUS/Samoa\nUTC\nUniversal\nW-SU\nWET\nZulu", + "precision": "", + "read_only": 0, + "reqd": 0, + "show_in_filter": 0 } ] -} \ No newline at end of file +} diff --git a/frappe/custom/doctype/customize_form/customize_form.json b/frappe/custom/doctype/customize_form/customize_form.json index 32e25ae29e..03ac4d1761 100644 --- a/frappe/custom/doctype/customize_form/customize_form.json +++ b/frappe/custom/doctype/customize_form/customize_form.json @@ -49,6 +49,7 @@ "email_append_to", "sender_field", "sender_name_field", + "recipient_account_field", "subject_field", "section_break_8", "sort_field", @@ -415,6 +416,12 @@ "fieldname": "protect_attached_files", "fieldtype": "Check", "label": "Protect Attached Files" + }, + { + "depends_on": "email_append_to", + "fieldname": "recipient_account_field", + "fieldtype": "Data", + "label": "Recipient Account Field" } ], "hide_toolbar": 1, @@ -423,7 +430,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2025-03-27 18:22:32.618603", + "modified": "2025-07-19 12:23:41.564203", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form", diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index 3bbd874732..584882a754 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -74,6 +74,7 @@ class CustomizeForm(Document): protect_attached_files: DF.Check queue_in_background: DF.Check quick_entry: DF.Check + recipient_account_field: DF.Data | None search_fields: DF.Data | None sender_field: DF.Data | None sender_name_field: DF.Data | None diff --git a/frappe/database/database.py b/frappe/database/database.py index 1f809c8d14..c3c6d90265 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -306,12 +306,11 @@ class Database: ): raise + self.log_query(query, query_type, values, debug) if debug: time_end = time() frappe.log(f"Execution time: {(time_end - time_start) * 1000:.3f} ms") - self.log_query(query, query_type, values, debug) - if auto_commit: self.commit() @@ -552,7 +551,6 @@ class Database: # returns default date_format frappe.db.get_value("System Settings", None, "date_format") """ - result = self.get_values( doctype, filters, @@ -731,9 +729,20 @@ class Database: :param filters: Filters (dict). :param doctype: DocType name. """ + + from frappe.model.meta import get_default_df + + meta = frappe.get_meta(doctype) + + def _cast(field, val): + df = meta.get_field(field) or get_default_df(field) + if not df: + return val + return cast_fieldtype(df.fieldtype, val) + if fields == "*" or isinstance(filters, dict): # check if single doc matches with filters - values = self.get_singles_dict(doctype) + values = self.get_singles_dict(doctype, cast=True) if isinstance(filters, dict): for key, value in filters.items(): if values.get(key) != value: @@ -760,6 +769,9 @@ class Database: return [] r = _dict(r) + for k, v in r.items(): + r[k] = _cast(k, v) + if update: r.update(update) @@ -864,7 +876,16 @@ class Database: frappe.qb.into("Singles").columns("doctype", "field", "value").insert(*singles_data).run(debug=debug) frappe.clear_document_cache(doctype, doctype) - def get_single_value(self, doctype: str, fieldname: str, cache: bool = True): + def get_single_value( + self, + doctype: str, + fieldname: str, + cache: bool = True, + *, + debug=False, + for_update=False, + run=True, + ): """Get property of Single DocType. Cache locally by default :param doctype: DocType of the single object whose value is requested @@ -875,17 +896,23 @@ class Database: # Get the default value of the company from the Global Defaults doctype. company = frappe.db.get_single_value('Global Defaults', 'default_company') """ - if cache and fieldname in self.value_cache[doctype]: + from frappe.model.meta import get_default_df + + if cache and not for_update and run and fieldname in self.value_cache[doctype]: return self.value_cache[doctype][fieldname] val = frappe.qb.get_query( table="Singles", filters={"doctype": doctype, "field": fieldname}, fields="value", - ).run() + for_update=for_update, + ).run(debug=debug, run=run) + if not run: + return val + val = val[0][0] if val else None - df = frappe.get_meta(doctype).get_field(fieldname) + df = frappe.get_meta(doctype).get_field(fieldname) or get_default_df(fieldname) if not df: frappe.throw( @@ -896,7 +923,8 @@ class Database: val = cast_fieldtype(df.fieldtype, val) - self.value_cache[doctype][fieldname] = val + if cache and not for_update and run: + self.value_cache[doctype][fieldname] = val return val @@ -1514,6 +1542,18 @@ class Database: """ raise NotImplementedError + def get_routines(self): + information_schema = frappe.qb.Schema("information_schema") + return ( + frappe.qb.from_(information_schema.routines) + .select(information_schema.routines.routine_name) + .where( + (information_schema.routines.routine_type.isin(["FUNCTION", "PROCEDURE"])) + & (information_schema.routines.routine_schema.eq(frappe.conf.db_name)) + ) + .run(as_dict=1, pluck="routine_name") + ) + @contextmanager def savepoint(catch: type | tuple[type, ...] = Exception): diff --git a/frappe/database/mariadb/database.py b/frappe/database/mariadb/database.py index 5cfe4a3fbf..50afa1ded4 100644 --- a/frappe/database/mariadb/database.py +++ b/frappe/database/mariadb/database.py @@ -142,12 +142,19 @@ class MariaDBConnectionUtil: if frappe.conf.local_infile: conn_settings["local_infile"] = frappe.conf.local_infile - if frappe.conf.db_ssl_ca and frappe.conf.db_ssl_cert and frappe.conf.db_ssl_key: - conn_settings["ssl"] = { + # Configure SSL settings + if frappe.conf.db_ssl_ca: + ssl_config = { "ca": frappe.conf.db_ssl_ca, - "cert": frappe.conf.db_ssl_cert, - "key": frappe.conf.db_ssl_key, + "check_hostname": frappe.conf.db_ssl_check_hostname, } + + # Add client certificates for mutual SSL if available + if frappe.conf.db_ssl_cert and frappe.conf.db_ssl_key: + ssl_config.update({"cert": frappe.conf.db_ssl_cert, "key": frappe.conf.db_ssl_key}) + + conn_settings["ssl"] = ssl_config + return conn_settings @@ -165,11 +172,11 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): self.db_type = "mariadb" self.type_map = { "Currency": ("decimal", "21,9"), - "Int": ("int", None), + "Int": ("int", "11"), "Long Int": ("bigint", "20"), "Float": ("decimal", "21,9"), "Percent": ("decimal", "21,9"), - "Check": ("tinyint", None), + "Check": ("tinyint", 4), "Small Text": ("text", ""), "Long Text": ("longtext", ""), "Code": ("longtext", ""), diff --git a/frappe/database/mariadb/mysqlclient.py b/frappe/database/mariadb/mysqlclient.py index 5f16c74a24..a844720057 100644 --- a/frappe/database/mariadb/mysqlclient.py +++ b/frappe/database/mariadb/mysqlclient.py @@ -143,13 +143,19 @@ class MariaDBConnectionUtil: if frappe.conf.local_infile: conn_settings["local_infile"] = frappe.conf.local_infile - if frappe.conf.db_ssl_ca and frappe.conf.db_ssl_cert and frappe.conf.db_ssl_key: - conn_settings["ssl"] = { + # Configure SSL settings + if frappe.conf.db_ssl_ca: + ssl_config = { "ca": frappe.conf.db_ssl_ca, - "cert": frappe.conf.db_ssl_cert, - "key": frappe.conf.db_ssl_key, + "check_hostname": frappe.conf.db_ssl_check_hostname, } + # Add client certificates for mutual SSL if available + if frappe.conf.db_ssl_cert and frappe.conf.db_ssl_key: + ssl_config.update({"cert": frappe.conf.db_ssl_cert, "key": frappe.conf.db_ssl_key}) + + conn_settings["ssl"] = ssl_config + return conn_settings @@ -198,11 +204,11 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database): self.db_type = "mariadb" self.type_map = { "Currency": ("decimal", "21,9"), - "Int": ("int", None), + "Int": ("int", "11"), "Long Int": ("bigint", "20"), "Float": ("decimal", "21,9"), "Percent": ("decimal", "21,9"), - "Check": ("tinyint", None), + "Check": ("tinyint", "4"), "Small Text": ("text", ""), "Long Text": ("longtext", ""), "Code": ("longtext", ""), diff --git a/frappe/database/schema.py b/frappe/database/schema.py index 571313dc68..cb0afb4281 100644 --- a/frappe/database/schema.py +++ b/frappe/database/schema.py @@ -175,6 +175,9 @@ class DBTable: pass +NOT_NULL_TYPES = ("Check", "Int", "Currency", "Float", "Percent") + + class DbColumn: def __init__( self, @@ -216,13 +219,14 @@ class DbColumn: default = None unique = False + if self.fieldtype in NOT_NULL_TYPES: + null = False + if self.fieldtype in ("Check", "Int"): default = cint(self.default) - null = False elif self.fieldtype in ("Currency", "Float", "Percent"): default = flt(self.default) - null = False elif ( self.default @@ -271,7 +275,10 @@ class DbColumn: return # type - if current_def["type"] != column_type: + if current_def["type"] != column_type and not ( + # XXX: MariaDB JSON is same as longtext and information schema still returns longtext + current_def["type"] == "longtext" and column_type == "json" and frappe.db.db_type == "mariadb" + ): self.table.change_type.append(self) # unique @@ -289,7 +296,11 @@ class DbColumn: self.table.set_default.append(self) # nullability - if self.not_nullable is not None and (self.not_nullable != current_def.get("not_nullable")): + if ( + self.not_nullable is not None + and (self.not_nullable != current_def.get("not_nullable")) + and self.fieldtype not in NOT_NULL_TYPES + ): self.table.change_nullability.append(self) # index should be applied or dropped irrespective of type change @@ -310,24 +321,36 @@ class DbColumn: else: # Strip quotes from default value # eg. database returns default value as "'System Manager'" - cur_default = cur_default.lstrip("'").rstrip("'") + cur_default = cur_default.lstrip("'").rstrip("'").replace("\\\\", "\\") fieldtype = self.fieldtype + db_field_type = frappe.db.type_map.get(fieldtype) if fieldtype in ["Int", "Check"]: cur_default = cint(cur_default) new_default = cint(new_default) elif fieldtype in ["Currency", "Float", "Percent"]: cur_default = flt(cur_default) new_default = flt(new_default) + elif fieldtype == "Time": + return self.default_changed_for_time(cur_default, new_default) + elif db_field_type and db_field_type[0] in ("varchar", "longtext", "text"): + new_default = cstr(new_default) + if not current_def.get("not_nullable"): + cur_default = cstr(cur_default) return cur_default != new_default def default_changed_for_decimal(self, current_def): + cur_default = current_def["default"] + if cur_default == "NULL": + cur_default = None try: - if current_def["default"] in ("", None) and self.default in ("", None): - # both none, empty + if cur_default in ("", None) and self.default in ("", None): return False - elif current_def["default"] in ("", None): + elif flt(cur_default) == 0.0 and flt(self.default) == 0.0: + return False + + elif cur_default in ("", None): try: # check if new default value is valid float(self.default) @@ -341,10 +364,28 @@ class DbColumn: else: # NOTE float() raise ValueError when "" or None is passed - return float(current_def["default"]) != float(self.default) + return float(cur_default) != float(self.default) except TypeError: return True + def default_changed_for_time(self, cur_default: str, new_default: str): + from datetime import datetime + + # Normalize time values to HH:MM:SS.ssssss format, from formats: HH:MM:SS.ssssss, HH:MM:SS, HH:MM + def normalize_time(val): + if not val: + return None + for fmt in ("%H:%M:%S.%f", "%H:%M:%S", "%H:%M"): + try: + return datetime.strptime(val, fmt).time().strftime("%H:%M:%S.%f") + except ValueError: + continue + return val + + cur = normalize_time(cur_default) + new = normalize_time(new_default) + return cur != new + def validate_column_name(n): if special_characters := SPECIAL_CHAR_PATTERN.findall(n): diff --git a/frappe/database/sqlite/database.py b/frappe/database/sqlite/database.py index 16da6dc394..94124171a8 100644 --- a/frappe/database/sqlite/database.py +++ b/frappe/database/sqlite/database.py @@ -477,7 +477,7 @@ class SQLiteDatabase(SQLiteExceptionUtil, Database): if not self.is_nested_transaction_error(e): raise e - def commit(self): + def commit(self, chain=None): """Commit current transaction. Calls SQL `COMMIT`.""" if not self._conn: self.connect() @@ -497,7 +497,7 @@ class SQLiteDatabase(SQLiteExceptionUtil, Database): self.after_commit.run() - def rollback(self, *, save_point=None): + def rollback(self, *, save_point=None, chain=None): """`ROLLBACK` current transaction. Optionally rollback to a known save_point.""" if not self._conn: self.connect() diff --git a/frappe/database/utils.py b/frappe/database/utils.py index fd4f0092a4..5685b5ad00 100644 --- a/frappe/database/utils.py +++ b/frappe/database/utils.py @@ -8,6 +8,7 @@ from functools import cached_property, wraps import frappe from frappe.query_builder.builder import MariaDB, Postgres, SQLite from frappe.query_builder.functions import Function +from frappe.utils import CallbackManager Query = str | MariaDB | Postgres | SQLite QueryValues = tuple | list | dict | None @@ -109,3 +110,49 @@ def dangerously_reconnect_on_connection_abort(func): raise return wrapper + + +class CommitAfterResponseManager(CallbackManager): + __slots__ = () + + def run(self): + db = getattr(frappe.local, "db", None) + if not db: + # try reconnecting to the database + frappe.connect(set_admin_as_user=False) + db = frappe.local.db + + savepoint_name = "commit_after_response" + + while self._functions: + _func = self._functions.popleft() + try: + db.savepoint(savepoint_name) + _func() + except Exception: + db.rollback(save_point=savepoint_name) + frappe.log_error(title="Error executing commit_after_response callback") + + db.commit() # nosemgrep + + +def commit_after_response(func): + """ + Runs and commits some queries after response is sent. + Works only if in a request context and not in tests. + Calls function immediately otherwise. + """ + + request = getattr(frappe.local, "request", False) + if not request or frappe.in_test: + func() + return + + callback_manager = getattr(request, "commit_after_response", None) + if callback_manager is None: + # if no callback manager, create one + callback_manager = CommitAfterResponseManager() + request.commit_after_response = callback_manager + request.after_response.add(callback_manager.run) + + callback_manager.add(func) diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json index 9174908ffb..0a84efa97a 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.json +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -33,6 +33,7 @@ "time_interval", "timeseries", "type", + "show_values_over_chart", "currency", "filters_section", "filters_json", @@ -293,10 +294,17 @@ "fieldtype": "Link", "label": "Currency", "options": "Currency" + }, + { + "default": "0", + "depends_on": "eval: doc.type == \"Bar\" || doc.type == \"Line\"", + "fieldname": "show_values_over_chart", + "fieldtype": "Check", + "label": "Show Values over Chart" } ], "links": [], - "modified": "2025-02-01 21:06:05.808591", + "modified": "2025-06-08 22:49:08.587921", "modified_by": "Administrator", "module": "Desk", "name": "Dashboard Chart", diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index 0a2131ca4a..b91b338ddb 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -10,7 +10,7 @@ from frappe.boot import get_allowed_report_names from frappe.model.document import Document from frappe.model.naming import append_number_if_name_exists from frappe.modules.export_file import export_to_files -from frappe.utils import cint, get_datetime, getdate, has_common, now_datetime, nowdate +from frappe.utils import cint, flt, get_datetime, getdate, has_common, now_datetime, nowdate from frappe.utils.dashboard import cache_source from frappe.utils.data import format_date from frappe.utils.dateutils import ( @@ -56,7 +56,7 @@ def get_permission_query_conditions(user): or `tabDashboard Chart`.`module` is NULL""".format(allowed_modules=",".join(allowed_modules)) return f""" - ((`tabDashboard Chart`.`chart_type` in ('Count', 'Sum', 'Average') + ((`tabDashboard Chart`.`chart_type` in ('Count', 'Sum', 'Average', 'Group By') and {doctype_condition}) or (`tabDashboard Chart`.`chart_type` = 'Report' @@ -313,8 +313,8 @@ def get_result(data, timegrain, from_date, to_date, chart_type): for d in result: count = 0 while data_index < len(data) and getdate(data[data_index][0]) <= d[0]: - d[1] += cint(data[data_index][1]) - count += cint(data[data_index][2]) + d[1] += flt(data[data_index][1]) + count += flt(data[data_index][2]) data_index += 1 if chart_type == "Average" and count != 0: d[1] = d[1] / count diff --git a/frappe/desk/doctype/event/test_event.py b/frappe/desk/doctype/event/test_event.py index 01cd92d705..76679a05b7 100644 --- a/frappe/desk/doctype/event/test_event.py +++ b/frappe/desk/doctype/event/test_event.py @@ -1,6 +1,5 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE -"""Use blog post test to test user permissions logic""" import json from datetime import date diff --git a/frappe/desk/doctype/todo/test_todo.py b/frappe/desk/doctype/todo/test_todo.py index 6fa713a279..60673aa34e 100644 --- a/frappe/desk/doctype/todo/test_todo.py +++ b/frappe/desk/doctype/todo/test_todo.py @@ -6,7 +6,7 @@ from frappe.model.db_query import DatabaseQuery from frappe.permissions import add_permission, reset_perms from frappe.tests import IntegrationTestCase -EXTRA_TEST_RECORD_DEPENDENCIES = ["User"] +EXTRA_TEST_RECORD_DEPENDENCIES = ["User", "Web Page"] class TestToDo(IntegrationTestCase): @@ -93,8 +93,8 @@ class TestToDo(IntegrationTestCase): frappe.set_user("Administrator") - test_user.add_roles("Blogger") - add_permission("ToDo", "Blogger") + test_user.add_roles("Website Manager") + add_permission("ToDo", "Website Manager") frappe.set_user("test4@example.com") @@ -103,7 +103,7 @@ class TestToDo(IntegrationTestCase): self.assertFalse(todo1.has_permission("write")) frappe.set_user("Administrator") - test_user.remove_roles("Blogger") + test_user.remove_roles("Website Manager") reset_perms("ToDo") clear_permissions_cache("ToDo") frappe.db.rollback() diff --git a/frappe/desk/page/setup_wizard/setup_wizard.py b/frappe/desk/page/setup_wizard/setup_wizard.py index 97d2ee0f61..401e6887d2 100755 --- a/frappe/desk/page/setup_wizard/setup_wizard.py +++ b/frappe/desk/page/setup_wizard/setup_wizard.py @@ -187,11 +187,32 @@ def run_setup_success(args): # nosemgrep def get_stages_hooks(args): # nosemgrep stages = [] - for method in frappe.get_hooks("setup_wizard_stages"): - stages += frappe.get_attr(method)(args) + + installed_apps = frappe.get_installed_apps(_ensure_on_bench=True) + for app_name in installed_apps: + setup_wizard_stages = frappe.get_hooks(app_name=app_name).get("setup_wizard_stages") + if not setup_wizard_stages: + continue + + for method in setup_wizard_stages: + _stages = frappe.get_attr(method)(args) + update_app_details_in_stages(_stages, app_name) + stages += _stages + return stages +def update_app_details_in_stages(_stages, app_name): + for stage in _stages: + for key in stage: + if key != "tasks": + continue + + for task in stage[key]: + if task.get("app_name") is None: + task["app_name"] = app_name + + def get_setup_complete_hooks(args): # nosemgrep return [ { @@ -348,7 +369,9 @@ def _get_default_roles() -> set[str]: def disable_future_access(): frappe.db.set_default("desktop:home_page", "workspace") # Enable onboarding after install + frappe.clear_cache(doctype="System Settings") frappe.db.set_single_value("System Settings", "enable_onboarding", 1) + frappe.db.set_single_value("System Settings", "setup_complete", frappe.is_setup_complete()) @frappe.whitelist() diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index c6e9e87be7..2e17eccea5 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -330,6 +330,7 @@ def export_query(): include_indentation = form_params.include_indentation include_filters = form_params.include_filters visible_idx = form_params.visible_idx + include_hidden_columns = form_params.include_hidden_columns if isinstance(visible_idx, str): visible_idx = json.loads(visible_idx) @@ -347,11 +348,20 @@ def export_query(): format_fields(data) xlsx_data, column_widths = build_xlsx_data( - data, visible_idx, include_indentation, include_filters=include_filters + data, + visible_idx, + include_indentation, + include_filters=include_filters, + include_hidden_columns=include_hidden_columns, ) if file_format_type == "CSV": - content = get_csv_bytes(xlsx_data, csv_params) + from frappe.utils.xlsxutils import handle_html + + content = get_csv_bytes( + [[handle_html(frappe.as_unicode(v)) if isinstance(v, str) else v for v in r] for r in xlsx_data], + csv_params, + ) file_extension = "csv" elif file_format_type == "Excel": from frappe.utils.xlsxutils import make_xlsx @@ -393,7 +403,14 @@ def format_fields(data: frappe._dict) -> None: row[index] = round(row[index], col.get("precision")) -def build_xlsx_data(data, visible_idx, include_indentation, include_filters=False, ignore_visible_idx=False): +def build_xlsx_data( + data, + visible_idx, + include_indentation, + include_filters=False, + ignore_visible_idx=False, + include_hidden_columns=False, +): EXCEL_TYPES = ( str, bool, @@ -433,7 +450,7 @@ def build_xlsx_data(data, visible_idx, include_indentation, include_filters=Fals column_data = [] for column in data.columns: - if column.get("hidden"): + if column.get("hidden") and not cint(include_hidden_columns): continue column_data.append(_(column.get("label"))) column_width = cint(column.get("width", 0)) @@ -449,7 +466,7 @@ def build_xlsx_data(data, visible_idx, include_indentation, include_filters=Fals row_data = [] if isinstance(row, dict): for col_idx, column in enumerate(data.columns): - if column.get("hidden"): + if column.get("hidden") and not cint(include_hidden_columns): continue label = column.get("label") fieldname = column.get("fieldname") diff --git a/frappe/email/__init__.py b/frappe/email/__init__.py index 40af148bc1..cabd91ccff 100644 --- a/frappe/email/__init__.py +++ b/frappe/email/__init__.py @@ -1,8 +1,13 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE +from typing import TYPE_CHECKING, Literal, Optional + import frappe +if TYPE_CHECKING: + from frappe.email.doctype.email_queue.email_queue import EmailQueue + def sendmail_to_system_managers(subject, content): frappe.sendmail(recipients=get_system_managers(), subject=subject, content=content) @@ -92,3 +97,137 @@ def get_communication_doctype(doctype, txt, searchfield, start, page_len, filter ] return [[dt] for dt in com_doctypes if txt.lower().replace("%", "") in dt.lower() and dt in can_read] + + +def sendmail( + recipients=None, + sender="", + subject="No Subject", + message="No Message", + as_markdown=False, + delayed=True, + reference_doctype=None, + reference_name=None, + unsubscribe_method=None, + unsubscribe_params=None, + unsubscribe_message=None, + add_unsubscribe_link=1, + attachments=None, + content=None, + doctype=None, + name=None, + reply_to=None, + queue_separately=False, + cc=None, + bcc=None, + message_id=None, + in_reply_to=None, + send_after=None, + expose_recipients=None, + send_priority=1, + communication=None, + retry=1, + now=None, + read_receipt=None, + is_notification=False, + inline_images=None, + template=None, + args=None, + header=None, + print_letterhead=False, + with_container=False, + email_read_tracker_url=None, + x_priority: Literal[1, 3, 5] = 3, + email_headers=None, +) -> Optional["EmailQueue"]: + """Send email using user's default **Email Account** or global default **Email Account**. + + + :param recipients: List of recipients. + :param sender: Email sender. Default is current user or default outgoing account. + :param subject: Email Subject. + :param message: (or `content`) Email Content. + :param as_markdown: Convert content markdown to HTML. + :param delayed: Send via scheduled email sender **Email Queue**. Don't send immediately. Default is true + :param send_priority: Priority for Email Queue, default 1. + :param reference_doctype: (or `doctype`) Append as communication to this DocType. + :param reference_name: (or `name`) Append as communication to this document name. + :param unsubscribe_method: Unsubscribe url with options email, doctype, name. e.g. `/api/method/unsubscribe` + :param unsubscribe_params: Unsubscribe paramaters to be loaded on the unsubscribe_method [optional] (dict). + :param attachments: List of attachments. + :param reply_to: Reply-To Email Address. + :param message_id: Used for threading. If a reply is received to this email, Message-Id is sent back as In-Reply-To in received email. + :param in_reply_to: Used to send the Message-Id of a received email back as In-Reply-To. + :param send_after: Send after the given datetime. + :param expose_recipients: Display all recipients in the footer message - "This email was sent to" + :param communication: Communication link to be set in Email Queue record + :param inline_images: List of inline images as {"filename", "filecontent"}. All src properties will be replaced with random Content-Id + :param template: Name of html template from templates/emails folder + :param args: Arguments for rendering the template + :param header: Append header in email + :param with_container: Wraps email inside a styled container + :param x_priority: 1 = HIGHEST, 3 = NORMAL, 5 = LOWEST + :param email_headers: Additional headers to be added in the email, e.g. {"X-Custom-Header": "value"} or {"Custom-Header": "value"}. Automatically prepends "X-" to the header name if not present. + """ + + from frappe.utils.jinja import get_email_from_template + + if recipients is None: + recipients = [] + if cc is None: + cc = [] + if bcc is None: + bcc = [] + + text_content = None + if template: + message, text_content = get_email_from_template(template, args) + + message = content or message + + if as_markdown: + from frappe.utils import md_to_html + + message = md_to_html(message) + + if not delayed: + now = True + + from frappe.email.doctype.email_queue.email_queue import QueueBuilder + + builder = QueueBuilder( + recipients=recipients, + sender=sender, + subject=subject, + message=message, + text_content=text_content, + reference_doctype=doctype or reference_doctype, + reference_name=name or reference_name, + add_unsubscribe_link=add_unsubscribe_link, + unsubscribe_method=unsubscribe_method, + unsubscribe_params=unsubscribe_params, + unsubscribe_message=unsubscribe_message, + attachments=attachments, + reply_to=reply_to, + cc=cc, + bcc=bcc, + message_id=message_id, + in_reply_to=in_reply_to, + send_after=send_after, + expose_recipients=expose_recipients, + send_priority=send_priority, + queue_separately=queue_separately, + communication=communication, + read_receipt=read_receipt, + is_notification=is_notification, + inline_images=inline_images, + header=header, + print_letterhead=print_letterhead, + with_container=with_container, + email_read_tracker_url=email_read_tracker_url, + x_priority=x_priority, + email_headers=email_headers, + ) + + # build email queue and send the email if send_now is True. + return builder.process(send_now=now) diff --git a/frappe/email/doctype/auto_email_report/auto_email_report.json b/frappe/email/doctype/auto_email_report/auto_email_report.json index 0eadc7d74f..0553fd9745 100644 --- a/frappe/email/doctype/auto_email_report/auto_email_report.json +++ b/frappe/email/doctype/auto_email_report/auto_email_report.json @@ -182,7 +182,7 @@ "fieldname": "format", "fieldtype": "Select", "label": "Format", - "options": "HTML\nXLSX\nCSV", + "options": "HTML\nXLSX\nCSV\nPDF", "reqd": 1 }, { @@ -220,7 +220,7 @@ } ], "links": [], - "modified": "2024-03-23 16:01:28.131581", + "modified": "2025-07-04 17:33:36.750217", "modified_by": "Administrator", "module": "Email", "name": "Auto Email Report", @@ -251,8 +251,9 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/email/doctype/auto_email_report/auto_email_report.py b/frappe/email/doctype/auto_email_report/auto_email_report.py index 747af1983e..9f83923302 100644 --- a/frappe/email/doctype/auto_email_report/auto_email_report.py +++ b/frappe/email/doctype/auto_email_report/auto_email_report.py @@ -9,6 +9,7 @@ from email.utils import formataddr import frappe from frappe import _ from frappe.desk.query_report import build_xlsx_data +from frappe.email.email_body import get_formatted_html from frappe.model.document import Document from frappe.model.naming import append_number_if_name_exists from frappe.utils import ( @@ -29,6 +30,7 @@ from frappe.utils import ( validate_email_address, ) from frappe.utils.csvutils import to_csv +from frappe.utils.pdf import get_pdf from frappe.utils.xlsxutils import make_xlsx @@ -51,7 +53,7 @@ class AutoEmailReport(Document): enabled: DF.Check filter_meta: DF.Text | None filters: DF.Text | None - format: DF.Literal["HTML", "XLSX", "CSV"] + format: DF.Literal["HTML", "XLSX", "CSV", "PDF"] frequency: DF.Literal["Daily", "Weekdays", "Weekly", "Monthly"] from_date_field: DF.Literal[None] no_of_rows: DF.Int @@ -109,7 +111,7 @@ class AutoEmailReport(Document): def validate_report_format(self): """check if user has select correct report format""" - valid_report_formats = ["HTML", "XLSX", "CSV"] + valid_report_formats = ["HTML", "XLSX", "CSV", "PDF"] if self.format not in valid_report_formats: frappe.throw( _("{0} is not a valid report format. Report format should one of the following {1}").format( @@ -184,6 +186,16 @@ class AutoEmailReport(Document): xlsx_data, column_widths = build_xlsx_data(report_data, [], 1, ignore_visible_idx=True) return to_csv(xlsx_data) + elif self.format == "PDF": + columns, data = make_links(columns, data) + columns = update_field_types(columns) + options = {} + + if len(columns) > 8: + options["orientation"] = "landscape" + html = get_formatted_html(subject=self.name, message=self.get_html_table(columns, data)) + return get_pdf(html, options) + else: frappe.throw(_("Invalid Output Format")) diff --git a/frappe/email/doctype/auto_email_report/test_auto_email_report.py b/frappe/email/doctype/auto_email_report/test_auto_email_report.py index ed44d72ed0..0c7b2c0158 100644 --- a/frappe/email/doctype/auto_email_report/test_auto_email_report.py +++ b/frappe/email/doctype/auto_email_report/test_auto_email_report.py @@ -1,6 +1,9 @@ # Copyright (c) 2015, Frappe Technologies and Contributors # License: MIT. See LICENSE import json +from io import BytesIO + +from pypdf import PdfReader import frappe from frappe.tests import IntegrationTestCase @@ -28,6 +31,11 @@ class TestAutoEmailReport(IntegrationTestCase): data = auto_email_report.get_report_content() + auto_email_report.format = "PDF" + + data = auto_email_report.get_report_content() + PdfReader(stream=BytesIO(data)) + def test_dynamic_date_filters(self): auto_email_report = get_auto_email_report() diff --git a/frappe/email/doctype/email_group/email_group.js b/frappe/email/doctype/email_group/email_group.js index bfe1577594..fd6efde627 100644 --- a/frappe/email/doctype/email_group/email_group.js +++ b/frappe/email/doctype/email_group/email_group.js @@ -62,15 +62,6 @@ frappe.ui.form.on("Email Group", { }, __("Action") ); - - frm.add_custom_button( - __("New Newsletter"), - function () { - frappe.route_options = { email_group: frm.doc.name }; - frappe.new_doc("Newsletter"); - }, - __("Action") - ); } frm.trigger("preview_welcome_url"); diff --git a/frappe/email/doctype/email_group/email_group.py b/frappe/email/doctype/email_group/email_group.py index d51cf6b585..0985cba6e1 100755 --- a/frappe/email/doctype/email_group/email_group.py +++ b/frappe/email/doctype/email_group/email_group.py @@ -38,10 +38,19 @@ class EmailGroup(Document): """Extract Email Addresses from given doctype and add them to the current list""" meta = frappe.get_meta(doctype) email_field = next( - d.fieldname - for d in meta.fields - if d.fieldtype in ("Data", "Small Text", "Text", "Code") and d.options == "Email" + ( + d.fieldname + for d in meta.fields + if d.fieldtype in ("Data", "Small Text", "Text", "Code") and d.options == "Email" + ), + None, ) + if not email_field: + frappe.throw( + _("No Email field found in {0}").format(doctype), + title=_("Invalid Doctype"), + ) + unsubscribed_field = "unsubscribed" if meta.get_field("unsubscribed") else None added = 0 diff --git a/frappe/email/doctype/newsletter/exceptions.py b/frappe/email/doctype/newsletter/exceptions.py deleted file mode 100644 index ccce54c957..0000000000 --- a/frappe/email/doctype/newsletter/exceptions.py +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors -# MIT License. See LICENSE - -from frappe.exceptions import ValidationError - - -class NewsletterAlreadySentError(ValidationError): - pass - - -class NoRecipientFoundError(ValidationError): - pass - - -class NewsletterNotSavedError(ValidationError): - pass diff --git a/frappe/email/doctype/newsletter/newsletter.js b/frappe/email/doctype/newsletter/newsletter.js deleted file mode 100644 index 385b31dfab..0000000000 --- a/frappe/email/doctype/newsletter/newsletter.js +++ /dev/null @@ -1,229 +0,0 @@ -// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -// License: GNU General Public License v3. See license.txt - -frappe.ui.form.on("Newsletter", { - refresh(frm) { - let doc = frm.doc; - let can_write = frappe.boot.user.can_write.includes(doc.doctype); - if (!frm.is_new() && !frm.is_dirty() && !doc.email_sent && can_write) { - frm.add_custom_button( - __("Send a test email"), - () => { - frm.events.send_test_email(frm); - }, - __("Preview") - ); - - frm.add_custom_button( - __("Check broken links"), - () => { - frm.dashboard.set_headline(__("Checking broken links...")); - frm.call("find_broken_links").then((r) => { - frm.dashboard.set_headline(""); - let links = r.message; - if (links && links.length) { - let html = - ""; - frm.dashboard.set_headline( - __("Following links are broken in the email content: {0}", [html]) - ); - } else { - frm.dashboard.set_headline( - __("No broken links found in the email content") - ); - setTimeout(() => { - frm.dashboard.set_headline(""); - }, 3000); - } - }); - }, - __("Preview") - ); - - frm.add_custom_button( - __("Send now"), - () => { - if (frm.doc.schedule_send) { - frappe.confirm( - __( - "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" - ), - function () { - frm.events.send_emails(frm); - } - ); - return; - } - frappe.confirm( - __("Are you sure you want to send this newsletter now?"), - () => { - frm.events.send_emails(frm); - } - ); - }, - __("Send") - ); - - frm.add_custom_button( - __("Schedule sending"), - () => { - frm.events.schedule_send_dialog(frm); - }, - __("Send") - ); - } - - frm.events.update_sending_status(frm); - - if (frm.is_new() && !doc.sender_email) { - let { fullname, email } = frappe.user_info(doc.owner); - frm.set_value("sender_email", email); - frm.set_value("sender_name", fullname); - } - - frm.trigger("update_schedule_message"); - }, - - send_emails(frm) { - frappe.dom.freeze(__("Queuing emails...")); - frm.call("send_emails").then(() => { - frm.refresh(); - frappe.dom.unfreeze(); - frappe.show_alert( - __("Queued {0} emails", [frappe.utils.shorten_number(frm.doc.total_recipients)]) - ); - }); - }, - - schedule_send_dialog(frm) { - let hours = frappe.utils.range(24); - let time_slots = hours.map((hour) => { - return `${(hour + "").padStart(2, "0")}:00`; - }); - let d = new frappe.ui.Dialog({ - title: __("Schedule Newsletter"), - fields: [ - { - label: __("Date"), - fieldname: "date", - fieldtype: "Date", - options: { - minDate: new Date(), - }, - reqd: true, - }, - { - label: __("Time"), - fieldname: "time", - fieldtype: "Select", - options: time_slots, - reqd: true, - }, - ], - primary_action_label: __("Schedule"), - primary_action({ date, time }) { - frm.set_value("schedule_sending", 1); - frm.set_value("schedule_send", `${date} ${time}:00`); - d.hide(); - frm.save(); - }, - secondary_action_label: __("Cancel Scheduling"), - secondary_action() { - frm.set_value("schedule_sending", 0); - frm.set_value("schedule_send", ""); - d.hide(); - frm.save(); - }, - }); - if (frm.doc.schedule_sending) { - let parts = frm.doc.schedule_send.split(" "); - if (parts.length === 2) { - let [date, time] = parts; - d.set_value("date", date); - d.set_value("time", time.slice(0, 5)); - } - } - d.show(); - }, - - send_test_email(frm) { - let d = new frappe.ui.Dialog({ - title: __("Send Test Email"), - fields: [ - { - label: __("Email"), - fieldname: "email", - fieldtype: "Data", - options: "Email", - }, - ], - primary_action_label: __("Send"), - primary_action({ email }) { - d.get_primary_btn().text(__("Sending...")).prop("disabled", true); - frm.call("send_test_email", { email }).then(() => { - d.get_primary_btn().text(__("Send again")).prop("disabled", false); - }); - }, - }); - d.show(); - }, - - async update_sending_status(frm) { - if (frm.doc.email_sent && frm.$wrapper.is(":visible") && !frm.waiting_for_request) { - frm.waiting_for_request = true; - let res = await frm.call("get_sending_status"); - frm.waiting_for_request = false; - let stats = res.message; - stats && frm.events.update_sending_progress(frm, stats); - if ( - stats.sent + stats.error >= frm.doc.total_recipients || - (!stats.total && !stats.emails_queued) - ) { - frm.sending_status && clearInterval(frm.sending_status); - frm.sending_status = null; - return; - } - } - - if (frm.sending_status) return; - frm.sending_status = setInterval(() => frm.events.update_sending_status(frm), 5000); - }, - - update_sending_progress(frm, stats) { - if (stats.sent + stats.error >= frm.doc.total_recipients || !frm.doc.email_sent) { - frm.doc.email_sent && frm.page.set_indicator(__("Sent"), "green"); - frm.dashboard.hide_progress(); - return; - } - if (stats.total) { - frm.page.set_indicator(__("Sending"), "blue"); - frm.dashboard.show_progress( - __("Sending emails"), - (stats.sent * 100) / frm.doc.total_recipients, - __("{0} of {1} sent", [stats.sent, frm.doc.total_recipients]) - ); - } else if (stats.emails_queued) { - frm.page.set_indicator(__("Queued"), "blue"); - } - }, - - on_hide(frm) { - if (frm.sending_status) { - clearInterval(frm.sending_status); - frm.sending_status = null; - } - }, - - update_schedule_message(frm) { - if (!frm.doc.email_sent && frm.doc.schedule_send) { - let datetime = frappe.datetime.global_date_format(frm.doc.schedule_send); - frm.dashboard.set_headline_alert( - __("This newsletter is scheduled to be sent on {0}", [datetime.bold()]) - ); - } else { - frm.dashboard.clear_headline(); - } - }, -}); diff --git a/frappe/email/doctype/newsletter/newsletter.json b/frappe/email/doctype/newsletter/newsletter.json deleted file mode 100644 index 8def40c232..0000000000 --- a/frappe/email/doctype/newsletter/newsletter.json +++ /dev/null @@ -1,282 +0,0 @@ -{ - "actions": [], - "allow_guest_to_view": 1, - "allow_rename": 1, - "creation": "2013-01-10 16:34:31", - "description": "Create and send emails to a specific group of subscribers periodically.", - "doctype": "DocType", - "document_type": "Other", - "engine": "InnoDB", - "field_order": [ - "status_section", - "email_sent_at", - "column_break_3", - "total_recipients", - "column_break_12", - "total_views", - "email_sent", - "from_section", - "sender_name", - "column_break_5", - "sender_email", - "column_break_7", - "send_from", - "recipients", - "email_group", - "subject_section", - "subject", - "newsletter_content", - "content_type", - "message", - "message_md", - "message_html", - "campaign", - "attachments", - "send_unsubscribe_link", - "send_webview_link", - "schedule_settings_section", - "scheduled_to_send", - "schedule_sending", - "schedule_send", - "publish_as_a_web_page_section", - "published", - "route" - ], - "fields": [ - { - "fieldname": "email_group", - "fieldtype": "Table", - "in_standard_filter": 1, - "label": "Audience", - "options": "Newsletter Email Group", - "reqd": 1 - }, - { - "fieldname": "send_from", - "fieldtype": "Data", - "ignore_xss_filter": 1, - "label": "Sender", - "read_only": 1 - }, - { - "default": "0", - "fieldname": "email_sent", - "fieldtype": "Check", - "hidden": 1, - "label": "Email Sent", - "no_copy": 1, - "read_only": 1 - }, - { - "fieldname": "newsletter_content", - "fieldtype": "Section Break", - "label": "Content" - }, - { - "fieldname": "subject", - "fieldtype": "Small Text", - "in_global_search": 1, - "in_list_view": 1, - "label": "Subject", - "reqd": 1 - }, - { - "depends_on": "eval: doc.content_type === 'Rich Text'", - "fieldname": "message", - "fieldtype": "Text Editor", - "in_list_view": 1, - "label": "Message", - "mandatory_depends_on": "eval: doc.content_type === 'Rich Text'" - }, - { - "default": "1", - "fieldname": "send_unsubscribe_link", - "fieldtype": "Check", - "label": "Send Unsubscribe Link" - }, - { - "default": "0", - "fieldname": "published", - "fieldtype": "Check", - "label": "Published" - }, - { - "depends_on": "published", - "fieldname": "route", - "fieldtype": "Data", - "label": "Route", - "read_only": 1 - }, - { - "fieldname": "scheduled_to_send", - "fieldtype": "Int", - "hidden": 1, - "label": "Scheduled To Send" - }, - { - "fieldname": "recipients", - "fieldtype": "Section Break", - "label": "To" - }, - { - "depends_on": "eval: doc.schedule_sending", - "fieldname": "schedule_send", - "fieldtype": "Datetime", - "label": "Send Email At", - "read_only": 1, - "read_only_depends_on": "eval: doc.email_sent" - }, - { - "fieldname": "content_type", - "fieldtype": "Select", - "label": "Content Type", - "options": "Rich Text\nMarkdown\nHTML" - }, - { - "depends_on": "eval:doc.content_type === 'Markdown'", - "fieldname": "message_md", - "fieldtype": "Markdown Editor", - "label": "Message (Markdown)", - "mandatory_depends_on": "eval:doc.content_type === 'Markdown'" - }, - { - "depends_on": "eval:doc.content_type === 'HTML'", - "fieldname": "message_html", - "fieldtype": "HTML Editor", - "label": "Message (HTML)", - "mandatory_depends_on": "eval:doc.content_type === 'HTML'" - }, - { - "default": "0", - "fieldname": "schedule_sending", - "fieldtype": "Check", - "label": "Schedule sending at a later time", - "read_only_depends_on": "eval: doc.email_sent" - }, - { - "default": "0", - "fieldname": "send_webview_link", - "fieldtype": "Check", - "label": "Send Web View Link" - }, - { - "fieldname": "from_section", - "fieldtype": "Section Break", - "label": "From" - }, - { - "fieldname": "sender_name", - "fieldtype": "Data", - "label": "Sender Name" - }, - { - "fieldname": "sender_email", - "fieldtype": "Data", - "label": "Sender Email", - "options": "Email", - "reqd": 1 - }, - { - "fieldname": "column_break_5", - "fieldtype": "Column Break" - }, - { - "fieldname": "column_break_7", - "fieldtype": "Column Break" - }, - { - "fieldname": "subject_section", - "fieldtype": "Section Break", - "label": "Subject" - }, - { - "fieldname": "publish_as_a_web_page_section", - "fieldtype": "Section Break", - "label": "Publish as a web page" - }, - { - "depends_on": "schedule_sending", - "fieldname": "schedule_settings_section", - "fieldtype": "Section Break", - "label": "Scheduled Sending" - }, - { - "fieldname": "attachments", - "fieldtype": "Table", - "label": "Attachments", - "options": "Newsletter Attachment" - }, - { - "fieldname": "email_sent_at", - "fieldtype": "Datetime", - "label": "Email Sent At", - "read_only": 1 - }, - { - "fieldname": "total_recipients", - "fieldtype": "Int", - "label": "Total Recipients", - "read_only": 1 - }, - { - "depends_on": "email_sent", - "fieldname": "status_section", - "fieldtype": "Section Break", - "label": "Status" - }, - { - "fieldname": "column_break_12", - "fieldtype": "Column Break" - }, - { - "fieldname": "column_break_3", - "fieldtype": "Column Break" - }, - { - "default": "0", - "fieldname": "total_views", - "fieldtype": "Int", - "label": "Total Views", - "no_copy": 1, - "read_only": 1 - }, - { - "fieldname": "campaign", - "fieldtype": "Link", - "label": "Campaign", - "options": "UTM Campaign" - } - ], - "has_web_view": 1, - "icon": "fa fa-envelope", - "idx": 1, - "index_web_pages_for_search": 1, - "is_published_field": "published", - "links": [], - "make_attachments_public": 1, - "modified": "2024-11-12 12:41:02.569631", - "modified_by": "Administrator", - "module": "Email", - "name": "Newsletter", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "export": 1, - "print": 1, - "read": 1, - "report": 1, - "role": "Newsletter Manager", - "share": 1, - "write": 1 - } - ], - "route": "newsletters", - "sort_field": "creation", - "sort_order": "ASC", - "states": [], - "title_field": "subject", - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/email/doctype/newsletter/newsletter.py b/frappe/email/doctype/newsletter/newsletter.py deleted file mode 100644 index 8f4702ff28..0000000000 --- a/frappe/email/doctype/newsletter/newsletter.py +++ /dev/null @@ -1,457 +0,0 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors -# MIT License. See LICENSE - - -import frappe -import frappe.utils -from frappe import _ -from frappe.email.doctype.email_group.email_group import add_subscribers -from frappe.rate_limiter import rate_limit -from frappe.utils.safe_exec import is_job_queued -from frappe.utils.verified_command import get_signed_params, verify_request -from frappe.website.website_generator import WebsiteGenerator - -from .exceptions import NewsletterAlreadySentError, NewsletterNotSavedError, NoRecipientFoundError - - -class Newsletter(WebsiteGenerator): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.email.doctype.newsletter_attachment.newsletter_attachment import NewsletterAttachment - from frappe.email.doctype.newsletter_email_group.newsletter_email_group import NewsletterEmailGroup - from frappe.types import DF - - attachments: DF.Table[NewsletterAttachment] - campaign: DF.Link | None - content_type: DF.Literal["Rich Text", "Markdown", "HTML"] - email_group: DF.Table[NewsletterEmailGroup] - email_sent: DF.Check - email_sent_at: DF.Datetime | None - message: DF.TextEditor | None - message_html: DF.HTMLEditor | None - message_md: DF.MarkdownEditor | None - published: DF.Check - route: DF.Data | None - schedule_send: DF.Datetime | None - schedule_sending: DF.Check - scheduled_to_send: DF.Int - send_from: DF.Data | None - send_unsubscribe_link: DF.Check - send_webview_link: DF.Check - sender_email: DF.Data - sender_name: DF.Data | None - subject: DF.SmallText - total_recipients: DF.Int - total_views: DF.Int - # end: auto-generated types - - def validate(self): - self.route = f"newsletters/{self.name}" - self.validate_sender_address() - self.validate_publishing() - self.validate_scheduling_date() - - @property - def newsletter_recipients(self) -> list[str]: - if getattr(self, "_recipients", None) is None: - self._recipients = self.get_recipients() - return self._recipients - - @frappe.whitelist() - def get_sending_status(self): - count_by_status = frappe.get_all( - "Email Queue", - filters={"reference_doctype": self.doctype, "reference_name": self.name}, - fields=["status", "count(name) as count"], - group_by="status", - order_by="status", - ) - sent = 0 - error = 0 - total = 0 - for row in count_by_status: - if row.status == "Sent": - sent = row.count - elif row.status == "Error": - error = row.count - total += row.count - emails_queued = is_job_queued( - job_name=frappe.utils.get_job_name("send_bulk_emails_for", self.doctype, self.name), - queue="long", - ) - return {"sent": sent, "error": error, "total": total, "emails_queued": emails_queued} - - @frappe.whitelist() - def send_test_email(self, email): - test_emails = frappe.utils.validate_email_address(email, throw=True) - self.send_newsletter(emails=test_emails, test_email=True) - frappe.msgprint(_("Test email sent to {0}").format(email), alert=True) - - @frappe.whitelist() - def find_broken_links(self): - import requests - from bs4 import BeautifulSoup - - html = self.get_message() - soup = BeautifulSoup(html, "html.parser") - links = soup.find_all("a") - images = soup.find_all("img") - broken_links = [] - for el in links + images: - url = el.attrs.get("href") or el.attrs.get("src") - try: - response = requests.head(url, verify=False, timeout=5) - if response.status_code >= 400: - broken_links.append(url) - except Exception: - broken_links.append(url) - return broken_links - - @frappe.whitelist() - def send_emails(self): - """queue sending emails to recipients""" - self.schedule_sending = False - self.schedule_send = None - self.queue_all() - - def validate_send(self): - """Validate if Newsletter can be sent.""" - self.validate_newsletter_status() - self.validate_newsletter_recipients() - - def validate_newsletter_status(self): - if self.email_sent: - frappe.throw(_("Newsletter has already been sent"), exc=NewsletterAlreadySentError) - - if self.get("__islocal"): - frappe.throw(_("Please save the Newsletter before sending"), exc=NewsletterNotSavedError) - - def validate_newsletter_recipients(self): - if not self.newsletter_recipients: - frappe.throw(_("Newsletter should have atleast one recipient"), exc=NoRecipientFoundError) - - def validate_sender_address(self): - """Validate self.send_from is a valid email address or not.""" - if self.sender_email: - frappe.utils.validate_email_address(self.sender_email, throw=True) - self.send_from = ( - f"{self.sender_name} <{self.sender_email}>" if self.sender_name else self.sender_email - ) - - def validate_publishing(self): - if self.send_webview_link and not self.published: - frappe.throw(_("Newsletter must be published to send webview link in email")) - - def validate_scheduling_date(self): - if getattr(frappe.flags, "is_scheduler_running", False): - return - - if ( - self.schedule_sending - and frappe.utils.get_datetime(self.schedule_send) < frappe.utils.now_datetime() - ): - frappe.throw(_("Past dates are not allowed for Scheduling.")) - - def get_linked_email_queue(self) -> list[str]: - """Get list of email queue linked to this newsletter.""" - return frappe.get_all( - "Email Queue", - filters={ - "reference_doctype": self.doctype, - "reference_name": self.name, - }, - pluck="name", - ) - - def get_queued_recipients(self) -> list[str]: - """Recipients who have already been queued for receiving the newsletter.""" - return frappe.get_all( - "Email Queue Recipient", - filters={ - "parent": ("in", self.get_linked_email_queue()), - }, - pluck="recipient", - ) - - def get_pending_recipients(self) -> list[str]: - """Get list of pending recipients of the newsletter. These - recipients may not have receive the newsletter in the previous iteration. - """ - - queued_recipients = set(self.get_queued_recipients()) - return [x for x in self.newsletter_recipients if x not in queued_recipients] - - def queue_all(self): - """Queue Newsletter to all the recipients generated from the `Email Group` table""" - self.validate() - self.validate_send() - - recipients = self.get_pending_recipients() - self.send_newsletter(emails=recipients) - - self.email_sent = True - self.email_sent_at = frappe.utils.now() - self.total_recipients = len(recipients) - self.save() - - def get_newsletter_attachments(self) -> list[dict[str, str]]: - """Get list of attachments on current Newsletter""" - return [{"file_url": row.attachment} for row in self.attachments] - - def send_newsletter(self, emails: list[str], test_email: bool = False): - """Trigger email generation for `emails` and add it in Email Queue.""" - attachments = self.get_newsletter_attachments() - sender = self.send_from or frappe.utils.get_formatted_email(self.owner) - args = self.as_dict() - args["message"] = self.get_message(medium="email") - - is_auto_commit_set = bool(frappe.db.auto_commit_on_many_writes) - frappe.db.auto_commit_on_many_writes = not frappe.in_test - - frappe.sendmail( - subject=self.subject, - sender=sender, - recipients=emails, - attachments=attachments, - template="newsletter", - add_unsubscribe_link=self.send_unsubscribe_link, - unsubscribe_method="/unsubscribe", - reference_doctype=self.doctype, - reference_name=self.name, - queue_separately=True, - send_priority=0, - args=args, - email_read_tracker_url=None - if test_email - else "/api/method/frappe.email.doctype.newsletter.newsletter.newsletter_email_read", - ) - - frappe.db.auto_commit_on_many_writes = is_auto_commit_set - - def get_message(self, medium=None) -> str: - message = self.message - if self.content_type == "Markdown": - message = frappe.utils.md_to_html(self.message_md) - if self.content_type == "HTML": - message = self.message_html - - html = frappe.render_template(message, {"doc": self.as_dict()}) - - return self.add_source(html, medium=medium) - - def add_source(self, html: str, medium="None") -> str: - """Add source to the site links in the newsletter content.""" - from bs4 import BeautifulSoup - - soup = BeautifulSoup(html, "html.parser") - - links = soup.find_all("a") - for link in links: - href = link.get("href") - if href and not href.startswith("#"): - if not frappe.utils.is_site_link(href): - continue - new_href = frappe.utils.add_trackers_to_url( - href, source="Newsletter", campaign=self.campaign, medium=medium - ) - link["href"] = new_href - - return str(soup) - - def get_recipients(self) -> list[str]: - """Get recipients from Email Group""" - emails = frappe.get_all( - "Email Group Member", - filters={"unsubscribed": 0, "email_group": ("in", self.get_email_groups())}, - pluck="email", - ) - return list(set(emails)) - - def get_email_groups(self) -> list[str]: - # wondering why the 'or'? i can't figure out why both aren't equivalent - @gavin - return [x.email_group for x in self.email_group] or frappe.get_all( - "Newsletter Email Group", - filters={"parent": self.name, "parenttype": "Newsletter"}, - pluck="email_group", - ) - - def get_attachments(self) -> list[dict[str, str]]: - return frappe.get_all( - "File", - fields=["name", "file_name", "file_url", "is_private"], - filters={ - "attached_to_name": self.name, - "attached_to_doctype": "Newsletter", - "is_private": 0, - }, - ) - - -def confirmed_unsubscribe(email, group): - """unsubscribe the email(user) from the mailing list(email_group)""" - frappe.flags.ignore_permissions = True - doc = frappe.get_doc("Email Group Member", {"email": email, "email_group": group}) - if not doc.unsubscribed: - doc.unsubscribed = 1 - doc.save(ignore_permissions=True) - - -@frappe.whitelist(allow_guest=True) -@rate_limit(limit=10, seconds=60 * 60) -def subscribe(email, email_group=None): - """API endpoint to subscribe an email to a particular email group. Triggers a confirmation email.""" - - if email_group is None: - email_group = get_default_email_group() - - # build subscription confirmation URL - api_endpoint = frappe.utils.get_url( - "/api/method/frappe.email.doctype.newsletter.newsletter.confirm_subscription" - ) - signed_params = get_signed_params({"email": email, "email_group": email_group}) - confirm_subscription_url = f"{api_endpoint}?{signed_params}" - - # fetch custom template if available - email_confirmation_template = frappe.db.get_value( - "Email Group", email_group, "confirmation_email_template" - ) - - # build email and send - if email_confirmation_template: - args = {"email": email, "confirmation_url": confirm_subscription_url, "email_group": email_group} - email_template = frappe.get_doc("Email Template", email_confirmation_template) - email_subject = email_template.subject - content = frappe.render_template(email_template.response, args) - else: - email_subject = _("Confirm Your Email") - translatable_content = ( - _("Thank you for your interest in subscribing to our updates"), - _("Please verify your Email Address"), - confirm_subscription_url, - _("Click here to verify"), - ) - content = """ -

{}. {}.

-

{}

- """.format(*translatable_content) - - frappe.sendmail( - email, - subject=email_subject, - content=content, - ) - - -@frappe.whitelist(allow_guest=True) -def confirm_subscription(email, email_group=None): - """API endpoint to confirm email subscription. - This endpoint is called when user clicks on the link sent to their mail. - """ - if not verify_request(): - return - - if email_group is None: - email_group = get_default_email_group() - - try: - group = frappe.get_doc("Email Group", email_group) - except frappe.DoesNotExistError: - group = frappe.get_doc({"doctype": "Email Group", "title": email_group}).insert( - ignore_permissions=True - ) - - frappe.flags.ignore_permissions = True - - add_subscribers(email_group, email) - frappe.db.commit() - - welcome_url = group.get_welcome_url(email) - - if welcome_url: - frappe.local.response["type"] = "redirect" - frappe.local.response["location"] = welcome_url - else: - frappe.respond_as_web_page( - _("Confirmed"), - _("{0} has been successfully added to the Email Group.").format(email), - indicator_color="green", - ) - - -def get_list_context(context=None): - context.update( - { - "show_search": True, - "no_breadcrumbs": True, - "title": _("Newsletters"), - "filters": {"published": 1}, - "row_template": "email/doctype/newsletter/templates/newsletter_row.html", - } - ) - - -def send_scheduled_email(): - """Send scheduled newsletter to the recipients.""" - frappe.flags.is_scheduler_running = True - - scheduled_newsletter = frappe.get_all( - "Newsletter", - filters={ - "schedule_send": ("<=", frappe.utils.now_datetime()), - "email_sent": False, - "schedule_sending": True, - }, - ignore_ifnull=True, - pluck="name", - ) - - for newsletter_name in scheduled_newsletter: - try: - newsletter = frappe.get_doc("Newsletter", newsletter_name) - newsletter.queue_all() - - except Exception: - frappe.db.rollback() - - # wasn't able to send emails :( - frappe.db.set_value("Newsletter", newsletter_name, "email_sent", 0) - newsletter.log_error("Failed to send newsletter") - - if not frappe.in_test: - frappe.db.commit() - - frappe.flags.is_scheduler_running = False - - -@frappe.whitelist(allow_guest=True) -def newsletter_email_read(recipient_email=None, reference_doctype=None, reference_name=None): - if not (recipient_email and reference_name): - return - verify_request() - try: - doc = frappe.get_cached_doc("Newsletter", reference_name) - if doc.add_viewed(recipient_email, force=True, unique_views=True): - newsletter = frappe.qb.DocType("Newsletter") - ( - frappe.qb.update(newsletter) - .set(newsletter.total_views, newsletter.total_views + 1) - .where(newsletter.name == doc.name) - ).run() - - except Exception: - frappe.log_error( - title=f"Unable to mark as viewed for {recipient_email}", - reference_doctype="Newsletter", - reference_name=reference_name, - ) - - finally: - frappe.response.update(frappe.utils.get_imaginary_pixel_response()) - - -def get_default_email_group(): - return _("Website", lang=frappe.db.get_default("language")) diff --git a/frappe/email/doctype/newsletter/newsletter_list.js b/frappe/email/doctype/newsletter/newsletter_list.js deleted file mode 100644 index 71e9423b7e..0000000000 --- a/frappe/email/doctype/newsletter/newsletter_list.js +++ /dev/null @@ -1,12 +0,0 @@ -frappe.listview_settings["Newsletter"] = { - add_fields: ["subject", "email_sent", "schedule_sending"], - get_indicator: function (doc) { - if (doc.email_sent) { - return [__("Sent"), "green", "email_sent,=,1"]; - } else if (doc.schedule_sending) { - return [__("Scheduled"), "purple", "email_sent,=,0|schedule_sending,=,1"]; - } else { - return [__("Not Sent"), "gray", "email_sent,=,0"]; - } - }, -}; diff --git a/frappe/email/doctype/newsletter/templates/newsletter.html b/frappe/email/doctype/newsletter/templates/newsletter.html deleted file mode 100644 index 05f3560648..0000000000 --- a/frappe/email/doctype/newsletter/templates/newsletter.html +++ /dev/null @@ -1,65 +0,0 @@ -{% extends "templates/web.html" %} - -{% block title %} {{ doc.subject }} {% endblock %} - -{% block page_content %} - - -
-
-
-

{{ doc.subject }}

-

- {{ frappe.format_date(doc.modified) }} -

-
-
- {{ doc.get_message(medium="web_page") }} -
-
- - {% if doc.attachments %} -
-
-
- {{ _("Attachments") }} -
-
-
-
- {% for attachment in doc.attachments %} -

- - {{ attachment.attachment }} - -

- {% endfor %} -
-
-
- {% endif %} - -
-{% endblock %} \ No newline at end of file diff --git a/frappe/email/doctype/newsletter/templates/newsletter_row.html b/frappe/email/doctype/newsletter/templates/newsletter_row.html deleted file mode 100644 index 503fadb1ea..0000000000 --- a/frappe/email/doctype/newsletter/templates/newsletter_row.html +++ /dev/null @@ -1,15 +0,0 @@ -
- -
-
- {{ doc.subject }} -
-
-
- {{ frappe.utils.pretty_date(doc.modified) }} -
-
-
-
-
\ No newline at end of file diff --git a/frappe/email/doctype/newsletter/test_newsletter.py b/frappe/email/doctype/newsletter/test_newsletter.py deleted file mode 100644 index c7ee147410..0000000000 --- a/frappe/email/doctype/newsletter/test_newsletter.py +++ /dev/null @@ -1,252 +0,0 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors -# MIT License. See LICENSE - -from random import choice -from unittest.mock import MagicMock, PropertyMock, patch - -import frappe -from frappe.email.doctype.newsletter.exceptions import ( - NewsletterAlreadySentError, - NoRecipientFoundError, -) -from frappe.email.doctype.newsletter.newsletter import ( - Newsletter, - confirmed_unsubscribe, - send_scheduled_email, -) -from frappe.email.queue import flush -from frappe.tests import IntegrationTestCase -from frappe.utils import add_days, getdate - -emails = [ - "test_subscriber1@example.com", - "test_subscriber2@example.com", - "test_subscriber3@example.com", - "test1@example.com", -] -newsletters = [] - - -def get_dotted_path(obj: type) -> str: - klass = obj.__class__ - module = klass.__module__ - if module == "builtins": - return klass.__qualname__ # avoid outputs like 'builtins.str' - return f"{module}.{klass.__qualname__}" - - -class TestNewsletterMixin: - def setUp(self): - frappe.set_user("Administrator") - self.setup_email_group() - - def tearDown(self): - frappe.set_user("Administrator") - for newsletter in newsletters: - frappe.db.delete( - "Email Queue", - { - "reference_doctype": "Newsletter", - "reference_name": newsletter, - }, - ) - frappe.delete_doc("Newsletter", newsletter) - frappe.db.delete("Newsletter Email Group", {"parent": newsletter}) - newsletters.remove(newsletter) - - def setup_email_group(self): - if not frappe.db.exists("Email Group", "_Test Email Group"): - frappe.get_doc({"doctype": "Email Group", "title": "_Test Email Group"}).insert() - - for email in emails: - doctype = "Email Group Member" - email_filters = {"email": email, "email_group": "_Test Email Group"} - - savepoint = "setup_email_group" - frappe.db.savepoint(savepoint) - - try: - frappe.get_doc( - { - "doctype": doctype, - **email_filters, - } - ).insert(ignore_if_duplicate=True) - except Exception: - frappe.db.rollback(save_point=savepoint) - frappe.db.set_value(doctype, email_filters, "unsubscribed", 0) - - frappe.db.release_savepoint(savepoint) - - def send_newsletter(self, published=0, schedule_send=None) -> str | None: - frappe.db.delete("Email Queue") - frappe.db.delete("Email Queue Recipient") - frappe.db.delete("Newsletter") - - newsletter_options = { - "published": published, - "schedule_sending": bool(schedule_send), - "schedule_send": schedule_send, - } - newsletter = self.get_newsletter(**newsletter_options) - - if schedule_send: - send_scheduled_email() - else: - newsletter.send_emails() - return newsletter.name - - return newsletter - - @staticmethod - def get_newsletter(**kwargs) -> "Newsletter": - """Generate and return Newsletter object""" - doctype = "Newsletter" - newsletter_content = { - "subject": "_Test Newsletter", - "sender_name": "Test Sender", - "sender_email": "test_sender@example.com", - "content_type": "Rich Text", - "message": "Testing my news.", - } - similar_newsletters = frappe.get_all(doctype, newsletter_content, pluck="name") - - for similar_newsletter in similar_newsletters: - frappe.delete_doc(doctype, similar_newsletter) - - newsletter = frappe.get_doc({"doctype": doctype, **newsletter_content, **kwargs}) - newsletter.append("email_group", {"email_group": "_Test Email Group"}) - newsletter.save(ignore_permissions=True) - newsletter.reload() - newsletters.append(newsletter.name) - - attached_files = frappe.get_all( - "File", - { - "attached_to_doctype": newsletter.doctype, - "attached_to_name": newsletter.name, - }, - pluck="name", - ) - for file in attached_files: - frappe.delete_doc("File", file) - - return newsletter - - -class TestNewsletter(TestNewsletterMixin, IntegrationTestCase): - def test_send(self): - self.send_newsletter() - - email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")] - self.assertEqual(len(email_queue_list), 4) - - recipients = {e.recipients[0].recipient for e in email_queue_list} - self.assertTrue(set(emails).issubset(recipients)) - - def test_unsubscribe(self): - name = self.send_newsletter() - to_unsubscribe = choice(emails) - group = frappe.get_all("Newsletter Email Group", filters={"parent": name}, fields=["email_group"]) - - flush() - confirmed_unsubscribe(to_unsubscribe, group[0].email_group) - - name = self.send_newsletter() - email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")] - self.assertEqual(len(email_queue_list), 3) - recipients = [e.recipients[0].recipient for e in email_queue_list] - - for email in emails: - if email != to_unsubscribe: - self.assertTrue(email in recipients) - - def test_schedule_send(self): - newsletter = self.send_newsletter(schedule_send=add_days(getdate(), 1)) - newsletter.db_set("schedule_send", add_days(getdate(), -1)) # Set date in past - send_scheduled_email() - - email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")] - self.assertEqual(len(email_queue_list), 4) - recipients = [e.recipients[0].recipient for e in email_queue_list] - for email in emails: - self.assertTrue(email in recipients) - - def test_newsletter_send_test_email(self): - """Test "Send Test Email" functionality of Newsletter""" - newsletter = self.get_newsletter() - test_email = choice(emails) - newsletter.send_test_email(test_email) - - self.assertFalse(newsletter.email_sent) - newsletter.save = MagicMock() - self.assertFalse(newsletter.save.called) - # check if the test email is in the queue - email_queue = frappe.get_all( - "Email Queue", - filters=[ - ["reference_doctype", "=", "Newsletter"], - ["reference_name", "=", newsletter.name], - ["Email Queue Recipient", "recipient", "=", test_email], - ], - ) - self.assertTrue(email_queue) - - def test_newsletter_status(self): - """Test for Newsletter's stats on onload event""" - newsletter = self.get_newsletter() - newsletter.email_sent = True - result = newsletter.get_sending_status() - self.assertTrue("total" in result) - self.assertTrue("sent" in result) - - def test_already_sent_newsletter(self): - newsletter = self.get_newsletter() - newsletter.send_emails() - - with self.assertRaises(NewsletterAlreadySentError): - newsletter.send_emails() - - def test_newsletter_with_no_recipient(self): - newsletter = self.get_newsletter() - property_path = f"{get_dotted_path(newsletter)}.newsletter_recipients" - - with patch(property_path, new_callable=PropertyMock) as mock_newsletter_recipients: - mock_newsletter_recipients.return_value = [] - with self.assertRaises(NoRecipientFoundError): - newsletter.send_emails() - - def test_send_scheduled_email_error_handling(self): - newsletter = self.get_newsletter(schedule_send=add_days(getdate(), -1)) - job_path = "frappe.email.doctype.newsletter.newsletter.Newsletter.queue_all" - m = MagicMock(side_effect=frappe.OutgoingEmailError) - - with self.assertRaises(frappe.OutgoingEmailError): - with patch(job_path, new_callable=m): - send_scheduled_email() - - newsletter.reload() - self.assertEqual(newsletter.email_sent, 0) - - def test_retry_partially_sent_newsletter(self): - frappe.db.delete("Email Queue") - frappe.db.delete("Email Queue Recipient") - frappe.db.delete("Newsletter") - - newsletter = self.get_newsletter() - newsletter.send_emails() - email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")] - self.assertEqual(len(email_queue_list), 4) - - # delete a queue document to emulate partial send - queue_recipient_name = email_queue_list[0].recipients[0].recipient - email_queue_list[0].delete() - newsletter.email_sent = False - - # make sure the pending recipient is only the one which has been deleted - self.assertEqual(newsletter.get_pending_recipients(), [queue_recipient_name]) - - # retry - newsletter.send_emails() - self.assertEqual(frappe.db.count("Email Queue"), 4) - self.assertTrue(newsletter.email_sent) diff --git a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json b/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json deleted file mode 100644 index b8f1dea630..0000000000 --- a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "actions": [], - "creation": "2017-02-26 16:20:52.654136", - "doctype": "DocType", - "editable_grid": 1, - "engine": "InnoDB", - "field_order": [ - "email_group", - "total_subscribers" - ], - "fields": [ - { - "columns": 7, - "fieldname": "email_group", - "fieldtype": "Link", - "in_list_view": 1, - "label": "Email Group", - "options": "Email Group", - "reqd": 1 - }, - { - "columns": 3, - "fetch_from": "email_group.total_subscribers", - "fieldname": "total_subscribers", - "fieldtype": "Read Only", - "in_list_view": 1, - "label": "Total Subscribers" - } - ], - "istable": 1, - "links": [], - "modified": "2024-03-23 16:03:31.190219", - "modified_by": "Administrator", - "module": "Email", - "name": "Newsletter Email Group", - "owner": "Administrator", - "permissions": [], - "quick_entry": 1, - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/email/doctype/notification/notification.js b/frappe/email/doctype/notification/notification.js index c2277644bd..9f430e9143 100644 --- a/frappe/email/doctype/notification/notification.js +++ b/frappe/email/doctype/notification/notification.js @@ -205,9 +205,12 @@ frappe.ui.form.on("Notification", { return dialog; }); } + + frm.trigger("set_up_filters_editor"); }, document_type: function (frm) { frappe.notification.setup_fieldname_select(frm); + frm.trigger("set_up_filters_editor"); }, view_properties: function (frm) { frappe.route_options = { doc_type: frm.doc.document_type }; @@ -246,4 +249,41 @@ frappe.ui.form.on("Notification", { frm.set_df_property("channel", "description", ` `); } }, + condition_type: function (frm) { + if (frm.doc.condition_type === "Filters") { + frm.set_value("condition", ""); + } else { + frm.set_value("filters", ""); + } + + frm.trigger("set_up_filters_editor"); + }, + set_up_filters_editor(frm) { + const parent = frm.get_field("filters_editor").$wrapper; + parent.empty(); + + if (!frm.doc.document_type || frm.doc.condition_type !== "Filters") { + return; + } + + const filters = + frm.doc.filters && frm.doc.filters !== "[]" ? JSON.parse(frm.doc.filters) : []; + + frappe.model.with_doctype(frm.doc.document_type, () => { + const filter_group = new frappe.ui.FilterGroup({ + parent: parent, + doctype: frm.doc.document_type, + on_change: () => { + frappe.model.set_value( + frm.doc.doctype, + frm.doc.name, + "filters", + JSON.stringify(filter_group.get_filters()) + ); + }, + }); + + filter_group.add_filters_to_filter_group(filters); + }); + }, }); diff --git a/frappe/email/doctype/notification/notification.json b/frappe/email/doctype/notification/notification.json index 8128c64720..384729764e 100644 --- a/frappe/email/doctype/notification/notification.json +++ b/frappe/email/doctype/notification/notification.json @@ -13,7 +13,7 @@ "column_break_2", "channel", "slack_webhook_url", - "filters", + "filters_section", "subject", "event", "document_type", @@ -29,7 +29,10 @@ "send_system_notification", "sender_email", "section_break_9", + "condition_type", + "filters_editor", "condition", + "filters", "column_break_6", "html_7", "property_section", @@ -79,8 +82,11 @@ }, { "fieldname": "filters", - "fieldtype": "Section Break", - "label": "Filters" + "fieldtype": "Code", + "hidden": 1, + "label": "Filters", + "options": "JSON", + "read_only": 1 }, { "depends_on": "eval: in_list(['Email', 'Slack', 'System Notification'], doc.channel)", @@ -178,6 +184,7 @@ "fieldtype": "Section Break" }, { + "depends_on": "eval:doc.condition_type===\"Python\"", "description": "Optional: The alert will be sent if this expression is true", "fieldname": "condition", "fieldtype": "Code", @@ -190,6 +197,7 @@ "fieldtype": "Column Break" }, { + "depends_on": "eval:doc.condition_type===\"Python\"", "fieldname": "html_7", "fieldtype": "HTML", "options": "

Condition Examples:

\n
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n
\n" @@ -311,12 +319,31 @@ "fieldtype": "Datetime", "label": "Last Run", "read_only": 1 + }, + { + "default": "Python", + "fieldname": "condition_type", + "fieldtype": "Select", + "label": "Condition Type", + "options": "Python\nFilters" + }, + { + "depends_on": "eval:doc.condition_type===\"Filters\"", + "fieldname": "filters_editor", + "fieldtype": "HTML", + "label": "Filters Editor" + }, + { + "fieldname": "filters_section", + "fieldtype": "Section Break", + "label": "Filters" } ], + "grid_page_length": 50, "icon": "fa fa-envelope", "index_web_pages_for_search": 1, "links": [], - "modified": "2024-09-12 10:28:35.077180", + "modified": "2025-05-10 21:03:15.561558", "modified_by": "Administrator", "module": "Email", "name": "Notification", @@ -334,9 +361,10 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 00fe5f25ec..cc9222301e 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -15,6 +15,7 @@ from frappe.integrations.doctype.slack_webhook_url.slack_webhook_url import send from frappe.model.document import Document from frappe.modules.utils import export_module_json, get_doc_module from frappe.utils import add_to_date, cast, now_datetime, nowdate, validate_email_address +from frappe.utils.data import evaluate_filters from frappe.utils.jinja import validate_template from frappe.utils.safe_exec import get_safe_globals @@ -36,6 +37,7 @@ class Notification(Document): attach_print: DF.Check channel: DF.Literal["Email", "Slack", "System Notification", "SMS"] condition: DF.Code | None + condition_type: DF.Literal["Python", "Filters"] date_changed: DF.Literal[None] datetime_changed: DF.Literal[None] datetime_last_run: DF.Datetime | None @@ -56,6 +58,7 @@ class Notification(Document): "Method", "Custom", ] + filters: DF.Code | None is_standard: DF.Check message: DF.Code | None message_type: DF.Literal["Markdown", "HTML", "Plain Text"] @@ -88,12 +91,15 @@ class Notification(Document): @frappe.whitelist() def preview_meets_condition(self, preview_document): - if not self.condition: + if not self.condition and not self.filters: return _("Yes") try: doc = frappe.get_cached_doc(self.document_type, preview_document) - context = get_context(doc) - return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + if self.condition_type == "Python": + context = get_context(doc) + return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + elif self.condition_type == "Filters": + return _("Yes") if evaluate_filters(doc, json.loads(self.filters)) else _("No") except Exception as e: frappe.local.message_log = [] return _("Failed to evaluate conditions: {}").format(e) @@ -135,6 +141,9 @@ class Notification(Document): # END: PreviewRenderer API + def before_save(self): + self.remove_invalid_condition() + def validate(self): if self.channel in ("Email", "Slack", "System Notification"): validate_template(self.subject) @@ -159,6 +168,7 @@ class Notification(Document): self.validate_forbidden_document_types() self.validate_condition() + self.validate_filters() self.validate_standard() clear_notification_cache() @@ -192,13 +202,29 @@ def get_context(context): _("Cannot edit Standard Notification. To edit, please disable this and duplicate it") ) + def remove_invalid_condition(self): + if self.condition_type == "Filters": + self.condition = None + elif self.condition_type == "Python": + self.filters = None + def validate_condition(self): + if not self.condition: + return + temp_doc = frappe.new_doc(self.document_type) - if self.condition: - try: - frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) - except Exception: - frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + try: + frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) + except Exception: + frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + + def validate_filters(self): + if not self.filters: + return + + filters = json.loads(self.filters) + dummy_doc = frappe.new_doc(self.document_type) + evaluate_filters(dummy_doc, filters) def validate_forbidden_document_types(self): if self.document_type in FORBIDDEN_DOCUMENT_TYPES or ( @@ -232,10 +258,18 @@ def get_context(context): ], ) + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_lazy_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -281,10 +315,18 @@ def get_context(context): self.db_set("datetime_last_run", now) # set reference now for next run + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_lazy_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -705,9 +747,12 @@ def evaluate_alert(doc: Document, alert, event=None): context = get_context(doc) - if alert.condition: + if alert.condition_type == "Python" and alert.condition: if not frappe.safe_eval(alert.condition, None, context): return + elif alert.condition_type == "Filters" and alert.filters: + if not evaluate_filters(doc, json.loads(alert.filters)): + return if event == "Value Change" and not doc.is_new(): if not frappe.db.has_column(doc.doctype, alert.value_changed): diff --git a/frappe/email/doctype/notification/test_notification.py b/frappe/email/doctype/notification/test_notification.py index 6ec5926261..63f3a630df 100644 --- a/frappe/email/doctype/notification/test_notification.py +++ b/frappe/email/doctype/notification/test_notification.py @@ -1,8 +1,8 @@ # Copyright (c) 2018, Frappe Technologies and Contributors # License: MIT. See LICENSE +import json from contextlib import contextmanager -from datetime import timedelta import frappe import frappe.utils @@ -500,6 +500,36 @@ class TestNotification(IntegrationTestCase): self.assertTrue("test1@example.com" in recipients) self.assertEqual(notification.enabled, 1) + def test_filters_condition(self): + """Test Notification with Condition Type 'Filters'.""" + frappe.delete_doc_if_exists("Notification", "Test Filters Condition") + + notification = frappe.new_doc("Notification") + notification.name = "Test Filters Condition" + notification.subject = "Test Filters Condition" + notification.document_type = "ToDo" + notification.event = "Save" + notification.condition_type = "Filters" + notification.filters = json.dumps([["status", "=", "Open"]]) + notification.message = "Test message" + notification.channel = "Email" + notification.append("recipients", {"receiver_by_document_field": "allocated_to"}) + notification.save() + + todo = frappe.new_doc("ToDo") + todo.description = "Checking email notification with filters condition" + todo.allocated_to = "test1@example.com" + todo.save() + + email_queue = frappe.get_doc( + "Email Queue", {"reference_doctype": "ToDo", "reference_name": todo.name} + ) + self.assertTrue(email_queue) + + recipients = [d.recipient for d in email_queue.recipients] + self.assertTrue("test1@example.com" in recipients) + self.assertEqual(notification.enabled, 1) + # ruff: noqa: RUF001 """ @@ -520,7 +550,7 @@ Ran 3 tests in 2.677s OK """ - +# from datetime import timedelta # from frappe.utils import add_to_date, now_datetime # class TestNotificationOffsetRange(IntegrationTestCase): # def setUp(self): diff --git a/frappe/email/queue.py b/frappe/email/queue.py index cd6de1ff81..7cd8e97292 100755 --- a/frappe/email/queue.py +++ b/frappe/email/queue.py @@ -1,5 +1,6 @@ # Copyright (c) 2022, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE +from datetime import timedelta import frappe from frappe import _, msgprint @@ -177,3 +178,27 @@ def get_queue(): {"now": now_datetime()}, as_dict=True, ) + + +def retry_sending_emails(): + emails_in_sending = frappe.get_all( + "Email Queue", filters={"status": "Sending"}, fields=["name", "modified"] + ) + for e in emails_in_sending: + if now_datetime() - e["modified"] > timedelta(minutes=15): + update_fields = {} + email_queue = frappe.get_doc("Email Queue", e["name"]) + sent_to_atleast_one_recipient = any( + rec.recipient for rec in email_queue.recipients if rec.is_mail_sent() + ) + if email_queue.retry < cint(frappe.db.get_system_setting("email_retry_limit")) or 3: + update_fields.update( + { + "status": "Partially Sent" if sent_to_atleast_one_recipient else "Not Sent", + "retry": email_queue.retry + 1, + } + ) + else: + update_fields.update({"status": "Error"}) + update_fields.update({"error": "Retry Limit Exceeded"}) + email_queue.update_status(**update_fields, commit=True) diff --git a/frappe/email/receive.py b/frappe/email/receive.py index e624d82a10..a0409c7909 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -162,10 +162,14 @@ class EmailServer: return res[0] == "OK" # The folder exists TODO: handle other responses too def logout(self): - if cint(self.settings.use_imap): - self.imap.logout() - else: - self.pop.quit() + try: + if cint(self.settings.use_imap): + self.imap.logout() + else: + self.pop.quit() + except imaplib.IMAP4.abort: + self.connect() + self.logout() return def get_messages(self, folder="INBOX"): @@ -846,6 +850,9 @@ class InboundMail(Email): if email_fields.sender_name_field: parent.set(email_fields.sender_name_field, frappe.as_unicode(self.from_real_name)) + if email_fields.recipient_account_field: + parent.set(email_fields.recipient_account_field, self.email_account.name) + parent.flags.ignore_mandatory = True try: @@ -887,7 +894,7 @@ class InboundMail(Email): """Return Email related fields of a doctype.""" fields = frappe._dict() - email_fields = ["subject_field", "sender_field", "sender_name_field"] + email_fields = ["subject_field", "sender_field", "sender_name_field", "recipient_account_field"] meta = frappe.get_meta(doctype) for field in email_fields: diff --git a/frappe/email/test_smtp.py b/frappe/email/test_smtp.py index 8964c48965..dc5faccdd2 100644 --- a/frappe/email/test_smtp.py +++ b/frappe/email/test_smtp.py @@ -47,11 +47,9 @@ class TestSMTP(IntegrationTestCase): password="password", enable_outgoing=1, default_outgoing=1, - append_to="Blog Post", - ) - self.assertEqual( - EmailAccount.find_outgoing(match_by_doctype="Blog Post").email_id, "append_to@gmail.com" + append_to="Todo", ) + self.assertEqual(EmailAccount.find_outgoing(match_by_doctype="Todo").email_id, "append_to@gmail.com") # add back the mail_server frappe.conf["mail_server"] = mail_server diff --git a/frappe/frappeclient.py b/frappe/frappeclient.py index 5cf6a91293..f8c619fc6b 100644 --- a/frappe/frappeclient.py +++ b/frappe/frappeclient.py @@ -107,12 +107,23 @@ class FrappeClient: headers=self.headers, ) - def get_list(self, doctype, fields='["name"]', filters=None, limit_start=0, limit_page_length=None): + def get_list( + self, + doctype, + fields='["name"]', + filters=None, + limit_start=0, + limit_page_length=None, + order_by=None, + group_by=None, + ): """Return list of records of a particular type.""" if not isinstance(fields, str): fields = json.dumps(fields) params = { "fields": fields, + "order_by": order_by, + "group_by": group_by, } if filters: params["filters"] = json.dumps(filters) diff --git a/frappe/gettext/extractors/workspace.py b/frappe/gettext/extractors/workspace.py index 944bc52941..d904029118 100644 --- a/frappe/gettext/extractors/workspace.py +++ b/frappe/gettext/extractors/workspace.py @@ -68,6 +68,16 @@ def extract(fileobj, *args, **kwargs): for shortcut in data.get("shortcuts", []) if shortcut.get("format") ) + yield from ( + ( + None, + "_", + quick_list.get("label"), + [f"Label of a quick_list in the {workspace_name} Workspace"], + ) + for quick_list in data.get("quick_lists", []) + if quick_list.get("label") + ) content = json.loads(data.get("content", "[]")) for item in content: diff --git a/frappe/hooks.py b/frappe/hooks.py index 7162165ed0..8d16696f41 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -3,7 +3,7 @@ import os from . import __version__ as app_version app_name = "frappe" -app_title = "Framework" +app_title = "Frappe Framework" app_publisher = "Frappe Technologies" app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node" app_license = "MIT" @@ -54,19 +54,13 @@ web_include_icons = [ email_css = ["email.bundle.css"] website_route_rules = [ - {"from_route": "/blog/", "to_route": "Blog Post"}, {"from_route": "/kb/", "to_route": "Help Article"}, - {"from_route": "/newsletters", "to_route": "Newsletter"}, {"from_route": "/profile", "to_route": "me"}, {"from_route": "/app/", "to_route": "app"}, ] website_redirects = [ {"source": r"/desk(.*)", "target": r"/app\1"}, - { - "source": "/.well-known/openid-configuration", - "target": "/api/method/frappe.integrations.oauth2.openid_configuration", - }, ] base_template = "templates/base.html" @@ -116,6 +110,7 @@ permission_query_conditions = { "Workflow Action": "frappe.workflow.doctype.workflow_action.workflow_action.get_permission_query_conditions", "Prepared Report": "frappe.core.doctype.prepared_report.prepared_report.get_permission_query_condition", "File": "frappe.core.doctype.file.file.get_permission_query_conditions", + "User Invitation": "frappe.core.doctype.user_invitation.user_invitation.get_permission_query_conditions", } has_permission = { @@ -133,6 +128,7 @@ has_permission = { "File": "frappe.core.doctype.file.file.has_permission", "Prepared Report": "frappe.core.doctype.prepared_report.prepared_report.has_permission", "Notification Settings": "frappe.desk.doctype.notification_settings.notification_settings.has_permission", + "User Invitation": "frappe.core.doctype.user_invitation.user_invitation.has_permission", } has_website_permission = {"Address": "frappe.contacts.doctype.address.address.has_website_permission"} @@ -158,6 +154,7 @@ doc_events = { "frappe.automation.doctype.assignment_rule.assignment_rule.update_due_date", "frappe.core.doctype.user_type.user_type.apply_permissions_for_non_standard_user_type", "frappe.core.doctype.permission_log.permission_log.make_perm_log", + "frappe.search.sqlite_search.update_doc_index", ], "after_rename": "frappe.desk.notifications.clear_doctype_notifications", "on_cancel": [ @@ -168,6 +165,7 @@ doc_events = { "on_trash": [ "frappe.desk.notifications.clear_doctype_notifications", "frappe.workflow.doctype.workflow_action.workflow_action.process_workflow_actions", + "frappe.search.sqlite_search.delete_doc_index", ], "on_update_after_submit": [ "frappe.workflow.doctype.workflow_action.workflow_action.process_workflow_actions", @@ -210,6 +208,7 @@ scheduler_events = { "frappe.deferred_insert.save_to_db", "frappe.automation.doctype.reminder.reminder.send_reminders", "frappe.model.utils.link_count.update_link_count", + "frappe.search.sqlite_search.build_index_if_not_exists", ], # 10 minutes "0/10 * * * *": [ @@ -222,12 +221,11 @@ scheduler_events = { }, "all": [ "frappe.email.queue.flush", + "frappe.email.queue.retry_sending_emails", "frappe.monitor.flush", "frappe.integrations.doctype.google_calendar.google_calendar.sync", ], - "hourly": [ - "frappe.email.doctype.newsletter.newsletter.send_scheduled_email", - ], + "hourly": [], # Maintenance queue happen roughly once an hour but don't align with wall-clock time of *:00 # Use these for when you don't care about when the job runs but just need some guarantee for # frequency. @@ -254,6 +252,7 @@ scheduler_events = { "frappe.website.doctype.personal_data_deletion_request.personal_data_deletion_request.remove_unverified_record", "frappe.automation.doctype.auto_repeat.auto_repeat.make_auto_repeat_entry", "frappe.core.doctype.log_settings.log_settings.run_log_clean_up", + "frappe.core.doctype.user_invitation.user_invitation.mark_expired_invitations", ], "weekly_long": [ "frappe.desk.form.document_follow.send_weekly_updates", @@ -282,7 +281,10 @@ setup_wizard_exception = [ ] before_migrate = ["frappe.core.doctype.patch_log.patch_log.before_migrate"] -after_migrate = ["frappe.website.doctype.website_theme.website_theme.after_migrate"] +after_migrate = [ + "frappe.website.doctype.website_theme.website_theme.after_migrate", + "frappe.search.sqlite_search.build_index_in_background", +] otp_methods = ["OTP App", "Email", "SMS"] @@ -358,11 +360,9 @@ global_search_doctypes = { {"doctype": "ToDo"}, {"doctype": "Note"}, {"doctype": "Event"}, - {"doctype": "Blog Post"}, {"doctype": "Dashboard"}, {"doctype": "Country"}, {"doctype": "Currency"}, - {"doctype": "Newsletter"}, {"doctype": "Letter Head"}, {"doctype": "Workflow"}, {"doctype": "Web Page"}, @@ -421,6 +421,7 @@ before_request = [ "frappe.recorder.record", "frappe.monitor.start", "frappe.rate_limiter.apply", + "frappe.integrations.oauth2.set_cors_for_privileged_requests", ] after_request = [ @@ -572,3 +573,7 @@ persistent_cache_keys = [ "rate-limit-counter-*", "rl:*", ] + +user_invitation = { + "only_for": ["System Manager"], +} diff --git a/frappe/installer.py b/frappe/installer.py index ae1165209b..c752a97d47 100644 --- a/frappe/installer.py +++ b/frappe/installer.py @@ -75,6 +75,7 @@ def _new_site( except Exception: enable_scheduler = False + clear_site_locks() make_site_dirs() if rollback_callback: rollback_callback.add(lambda: shutil.rmtree(frappe.get_site_path())) @@ -447,6 +448,7 @@ def _delete_modules(modules: list[str], dry_run: bool) -> list[str]: if not dry_run: if doctype.issingle: + frappe.delete_doc(doctype.name, doctype.name, ignore_on_trash=True, force=True) frappe.delete_doc("DocType", doctype.name, ignore_on_trash=True, force=True) else: drop_doctypes.append(doctype.name) @@ -671,6 +673,14 @@ def get_conf_params(db_name=None, db_password=None): return {"db_name": db_name, "db_password": db_password} +def clear_site_locks(): + import shutil + from pathlib import Path + + path = Path(frappe.get_site_path("locks")) + shutil.rmtree(path, ignore_errors=True) + + def make_site_dirs(): for dir_path in [ os.path.join("public", "files"), diff --git a/frappe/integrations/README.md b/frappe/integrations/README.md new file mode 100644 index 0000000000..864665c25f --- /dev/null +++ b/frappe/integrations/README.md @@ -0,0 +1,70 @@ +# Integrations + +## OAuth 2 + +Frappe Framework uses [`oauthlib`](https://github.com/oauthlib/oauthlib) to manage OAuth2 requirements. A Frappe instance can function as all of these: + +1. **Resource Server**: contains resources, for example the data in your DocTypes. +2. **Authorization Server**: server that issues tokens to access some resource. +3. **Client**: app that requires access to some resource on a resource server. + +DocTypes pertaining to the above roles: + +1. **Common** + - **OAuth Settings**: allows configuring certain OAuth features pertaining to the three roles. +2. **Authorization Server** + - **OAuth Client**: keeps records of _clients_ registered with the frappe instance. + - **OAuth Bearer Token**: tokens given out to registered _clients_ are maintained here. + - **OAuth Authorization Code**: keeps track of OAuth codes a client responds with in exchange for a token. + - **OAuth Provider Settings**: allows skipping authorization. `[DEPRECATED]` use **OAuth Settings** instead. +3. **Client** + - **Connected App**: keeps records of _authorization servers_ against whom this frappe instance is registered as a _client_ so some resource can be accessed. Eg. a users Google Drive account. + - **Social Key Login**: similar to **Connected App**, but for the purpose of logging into the frappe instance. Eg. a users Google account to enable "Login with Google". + - **Token Cache**: tokens received by the Frappe instance when accessing a **Connected App**. + +### Features + +Additional features over `oauthlib` that have implemented in the Framework: + +- **Dynamic Client Registration**: allows a client to register itself without manual configuration by the resource owner. [RFC7591](https://datatracker.ietf.org/doc/html/rfc7591) +- **Authorization Server Metadata Discovery**: allows a client to view the instance's auth server (itself) metadata such as auth end points. [RFC8414](https://datatracker.ietf.org/doc/html/rfc8414) +- **Resource Server Metadata Discovery**: allows a client to view the instance's resource server metadata such as documentation, auth servers, etc. [RFC9728](https://datatracker.ietf.org/doc/html/rfc9728) + +### Additional Docs + +Documentation of various OAuth2 features: + +1. [How to setup OAuth 2?](https://docs.frappe.io/framework/user/en/guides/integration/how_to_set_up_oauth) +2. [OAuth 2](https://docs.frappe.io/framework/user/en/guides/integration/rest_api/oauth-2) +3. [Token Based Authentication](https://docs.frappe.io/framework/user/en/guides/integration/rest_api/token_based_authentication) +4. [Using Frappe as OAuth Service](https://docs.frappe.io/framework/user/en/using_frappe_as_oauth_service) +5. [Social Login Key](https://docs.frappe.io/framework/user/en/guides/integration/social_login_key) +6. [Connected App](https://docs.frappe.io/framework/user/en/guides/app-development/connected-app) + +> [!WARNING] +> +> Some of these might be outdated, it is always recommended to check the code +> when in doubt. + +### OAuth Settings + +A Single doctype that allows configuring OAuth2 related features. It is +recommended to open the DocType page itself as each field and section has a +sufficiently descriptive help text. + +The settings allow toggling the following features: + +- Authorization check when active token is present using the _Skip Authorization_ field. _**Note**: Keep this unchecked in production._ +- **Authorization Server Metadata Discovery**: by toggling the _Show Auth Server Metadata_ field. +- **Dynamic Client Registration**: by toggling the _Enable Dynamic Client Registration_ field. +- **Resource Server Metadata Discovery**: by toggling the _Show Protected Resource Metadata_. + +The remaining fields (in the **Resource** section) are used only when responding to requests on `/.well-known/oauth-protected-resource` + +> **Regarding Public Clients** +> +> Public clients, for example an SPA, have restricted access by default. This +> restriction is applied by use of CORS. +> +> To side-step this restriction for certain trusted clients, you may add their +> hostnames to the **Allowed Public Client Origins** field. diff --git a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py index 31ba3d0963..85bf3b4af9 100644 --- a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py +++ b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py @@ -613,7 +613,7 @@ class Test_OpenLDAP(LDAP_TestCase, TestCase): "ldap_group": "Administrators", "erpnext_role": "System Manager", }, - {"doctype": "LDAP Group Mapping", "ldap_group": "Users", "erpnext_role": "Blogger"}, + {"doctype": "LDAP Group Mapping", "ldap_group": "Users", "erpnext_role": "Website Manager"}, {"doctype": "LDAP Group Mapping", "ldap_group": "Group3", "erpnext_role": "Accounts User"}, ] LDAP_USERNAME_FIELD = "uid" @@ -637,7 +637,7 @@ class Test_ActiveDirectory(LDAP_TestCase, TestCase): "ldap_group": "Domain Administrators", "erpnext_role": "System Manager", }, - {"doctype": "LDAP Group Mapping", "ldap_group": "Domain Users", "erpnext_role": "Blogger"}, + {"doctype": "LDAP Group Mapping", "ldap_group": "Domain Users", "erpnext_role": "Website Manager"}, { "doctype": "LDAP Group Mapping", "ldap_group": "Enterprise Administrators", diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.json b/frappe/integrations/doctype/oauth_client/oauth_client.json index e60cc1f5f1..a41d62ac4d 100644 --- a/frappe/integrations/doctype/oauth_client/oauth_client.json +++ b/frappe/integrations/doctype/oauth_client/oauth_client.json @@ -7,19 +7,29 @@ "engine": "InnoDB", "field_order": [ "client_id", - "app_name", "user", "allowed_roles", "cb_1", "client_secret", - "skip_authorization", - "sb_1", - "scopes", - "cb_3", - "redirect_uris", "default_redirect_uri", + "skip_authorization", + "client_metadata_section", + "app_name", + "scopes", + "column_break_htfq", + "redirect_uris", + "section_break_ggiv", + "client_uri", + "software_id", + "tos_uri", + "contacts", + "column_break_ziii", + "logo_uri", + "software_version", + "policy_uri", "sb_advanced", "grant_type", + "token_endpoint_auth_method", "cb_2", "response_type" ], @@ -27,13 +37,13 @@ { "fieldname": "client_id", "fieldtype": "Data", - "label": "App Client ID", + "label": "Client ID", "read_only": 1 }, { "fieldname": "app_name", "fieldtype": "Data", - "label": "App Name", + "label": "App Name (Client Name)", "reqd": 1 }, { @@ -50,7 +60,7 @@ { "fieldname": "client_secret", "fieldtype": "Data", - "label": "App Client Secret", + "label": "Client Secret", "read_only": 1 }, { @@ -60,10 +70,6 @@ "fieldtype": "Check", "label": "Skip Authorization" }, - { - "fieldname": "sb_1", - "fieldtype": "Section Break" - }, { "default": "all openid", "description": "A list of resources which the Client App will have access to after the user allows it.
e.g. project", @@ -72,10 +78,6 @@ "label": "Scopes", "reqd": 1 }, - { - "fieldname": "cb_3", - "fieldtype": "Column Break" - }, { "description": "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook", "fieldname": "redirect_uris", @@ -121,10 +123,85 @@ "fieldtype": "Table MultiSelect", "label": "Allowed Roles", "options": "OAuth Client Role" + }, + { + "fieldname": "client_metadata_section", + "fieldtype": "Section Break", + "label": "Client Metadata" + }, + { + "depends_on": "eval: doc.client_uri", + "description": "URL of a web page providing information about the client.", + "fieldname": "client_uri", + "fieldtype": "Data", + "label": "Client URI" + }, + { + "fieldname": "column_break_htfq", + "fieldtype": "Column Break" + }, + { + "depends_on": "eval: doc.client_uri", + "description": "URL that references a logo for the client.", + "fieldname": "logo_uri", + "fieldtype": "Data", + "label": "Logo URI" + }, + { + "fieldname": "section_break_ggiv", + "fieldtype": "Section Break" + }, + { + "depends_on": "eval: doc.software_id", + "description": "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n
\nShould remain same across multiple versions or updates of the software.", + "fieldname": "software_id", + "fieldtype": "Data", + "label": "Software ID" + }, + { + "fieldname": "column_break_ziii", + "fieldtype": "Column Break" + }, + { + "depends_on": "eval: doc.software_version", + "description": "A version identifier string for the client software.\n
\nThe value of the should change on any update of the client software with the same Software ID.", + "fieldname": "software_version", + "fieldtype": "Data", + "label": "Software Version" + }, + { + "depends_on": "eval: doc.tos_uri", + "description": "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing.", + "fieldname": "tos_uri", + "fieldtype": "Data", + "label": "TOS URI" + }, + { + "depends_on": "eval: doc.policy_uri", + "description": "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing.", + "fieldname": "policy_uri", + "fieldtype": "Data", + "label": "Policy URI" + }, + { + "depends_on": "eval: doc.contacts", + "description": "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses.", + "fieldname": "contacts", + "fieldtype": "Small Text", + "label": "Contacts" + }, + { + "default": "Client Secret Basic", + "description": "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE.", + "fieldname": "token_endpoint_auth_method", + "fieldtype": "Select", + "label": "Token Endpoint Auth Method", + "options": "Client Secret Basic\nClient Secret Post\nNone" } ], + "grid_page_length": 50, "links": [], - "modified": "2024-04-29 12:07:07.946980", + "modified": "2025-07-04 14:07:36.146393", "modified_by": "Administrator", "module": "Integrations", "name": "OAuth Client", @@ -143,6 +220,7 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], diff --git a/frappe/integrations/doctype/oauth_client/oauth_client.py b/frappe/integrations/doctype/oauth_client/oauth_client.py index 4b084898fb..35df45dbc3 100644 --- a/frappe/integrations/doctype/oauth_client/oauth_client.py +++ b/frappe/integrations/doctype/oauth_client/oauth_client.py @@ -1,7 +1,11 @@ # Copyright (c) 2015, Frappe Technologies and contributors # License: MIT. See LICENSE +import datetime +import time + import frappe +import frappe.utils from frappe import _ from frappe.model.document import Document from frappe.permissions import SYSTEM_USER_ROLE @@ -21,12 +25,20 @@ class OAuthClient(Document): app_name: DF.Data client_id: DF.Data | None client_secret: DF.Data | None + client_uri: DF.Data | None + contacts: DF.SmallText | None default_redirect_uri: DF.Data grant_type: DF.Literal["Authorization Code", "Implicit"] + logo_uri: DF.Data | None + policy_uri: DF.Data | None redirect_uris: DF.Text | None response_type: DF.Literal["Code", "Token"] scopes: DF.Text skip_authorization: DF.Check + software_id: DF.Data | None + software_version: DF.Data | None + token_endpoint_auth_method: DF.Literal["Client Secret Basic", "Client Secret Post", "None"] + tos_uri: DF.Data | None user: DF.Link | None # end: auto-generated types @@ -55,3 +67,18 @@ class OAuthClient(Document): """Returns true if session user is allowed to use this client.""" allowed_roles = {d.role for d in self.allowed_roles} return bool(allowed_roles & set(frappe.get_roles())) + + def is_public_client(self) -> bool: + return self.token_endpoint_auth_method == "None" + + def client_id_issued_at(self) -> int: + """Returns UNIX timestamp (seconds since epoch) of the client creation time.""" + + if isinstance(self.creation, datetime.datetime): + return int(self.creation.timestamp()) + + try: + d = datetime.datetime.fromisoformat(self.creation) + return int(d.timestamp()) + except Exception: + return int(frappe.utils.now_datetime().timestamp()) diff --git a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py index 74fa9fdd80..1b91bbfdeb 100644 --- a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py +++ b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py @@ -19,10 +19,3 @@ class OAuthProviderSettings(Document): # end: auto-generated types pass - - -def get_oauth_settings(): - """Return OAuth settings.""" - return frappe._dict( - {"skip_authorization": frappe.db.get_single_value("OAuth Provider Settings", "skip_authorization")} - ) diff --git a/frappe/templates/includes/likes/__init__.py b/frappe/integrations/doctype/oauth_settings/__init__.py similarity index 100% rename from frappe/templates/includes/likes/__init__.py rename to frappe/integrations/doctype/oauth_settings/__init__.py diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.js b/frappe/integrations/doctype/oauth_settings/oauth_settings.js new file mode 100644 index 0000000000..f8839d6e6c --- /dev/null +++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.js @@ -0,0 +1,8 @@ +// Copyright (c) 2025, Frappe Technologies and contributors +// For license information, please see license.txt + +// frappe.ui.form.on("OAuth Settings", { +// refresh(frm) { + +// }, +// }); diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json new file mode 100644 index 0000000000..713bb04a9a --- /dev/null +++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json @@ -0,0 +1,166 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2025-07-03 12:04:14.759362", + "description": "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three.", + "doctype": "DocType", + "engine": "InnoDB", + "field_order": [ + "authorization_tab", + "authorization_server_section", + "show_auth_server_metadata", + "skip_authorization", + "column_break_ogmd", + "enable_dynamic_client_registration", + "allowed_public_client_origins", + "resource_tab", + "config_section", + "show_protected_resource_metadata", + "column_break_wlfj", + "show_social_login_key_as_authorization_server", + "resource_server_section", + "resource_name", + "resource_policy_uri", + "column_break_zyte", + "resource_documentation", + "resource_tos_uri", + "scopes_supported" + ], + "fields": [ + { + "description": "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point.", + "fieldname": "resource_server_section", + "fieldtype": "Section Break", + "label": "Metadata" + }, + { + "default": "Frappe Framework Application", + "description": "Human-readable name intended for display to the end user.", + "fieldname": "resource_name", + "fieldtype": "Data", + "label": "Resource Name" + }, + { + "fieldname": "column_break_zyte", + "fieldtype": "Column Break" + }, + { + "default": "https://docs.frappe.io/framework", + "description": "URL of a human-readable page with info that developers might need.", + "fieldname": "resource_documentation", + "fieldtype": "Data", + "label": "Resource Documentation" + }, + { + "description": "URL of human-readable page with info on requirements about how the client can use the data.", + "fieldname": "resource_policy_uri", + "fieldtype": "Data", + "label": "Resource Policy URI" + }, + { + "description": "URL of human-readable page with info about the protected resource's terms of service.", + "fieldname": "resource_tos_uri", + "fieldtype": "Data", + "label": "Resource TOS URI" + }, + { + "fieldname": "authorization_server_section", + "fieldtype": "Section Break" + }, + { + "default": "1", + "description": "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414", + "fieldname": "show_auth_server_metadata", + "fieldtype": "Check", + "label": "Show Auth Server Metadata" + }, + { + "default": "1", + "description": "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728", + "fieldname": "show_protected_resource_metadata", + "fieldtype": "Check", + "label": "Show Protected Resource Metadata" + }, + { + "description": "New line separated list of scope values.", + "fieldname": "scopes_supported", + "fieldtype": "Small Text", + "label": "Scopes Supported" + }, + { + "default": "1", + "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591", + "fieldname": "enable_dynamic_client_registration", + "fieldtype": "Check", + "label": "Enable Dynamic Client Registration" + }, + { + "default": "0", + "description": "Allows skipping authorization if a user has active tokens.", + "fieldname": "skip_authorization", + "fieldtype": "Check", + "label": "Skip Authorization" + }, + { + "default": "0", + "description": "Allows enabled Social Login Key Base URL to be shown as authorization server.", + "fieldname": "show_social_login_key_as_authorization_server", + "fieldtype": "Check", + "label": "Show Social Login Key as Authorization Server" + }, + { + "fieldname": "column_break_ogmd", + "fieldtype": "Column Break" + }, + { + "fieldname": "authorization_tab", + "fieldtype": "Tab Break", + "label": "Authorization" + }, + { + "fieldname": "resource_tab", + "fieldtype": "Tab Break", + "label": "Resource" + }, + { + "fieldname": "config_section", + "fieldtype": "Section Break", + "label": "Config" + }, + { + "fieldname": "column_break_wlfj", + "fieldtype": "Column Break" + }, + { + "description": "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n
\nPublic clients are restricted by default.", + "fieldname": "allowed_public_client_origins", + "fieldtype": "Small Text", + "label": "Allowed Public Client Origins" + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "issingle": 1, + "links": [], + "modified": "2025-07-04 15:01:45.453238", + "modified_by": "Administrator", + "module": "Integrations", + "name": "OAuth Settings", + "owner": "Administrator", + "permissions": [ + { + "create": 1, + "delete": 1, + "email": 1, + "print": 1, + "read": 1, + "role": "System Manager", + "share": 1, + "write": 1 + } + ], + "row_format": "Dynamic", + "sort_field": "creation", + "sort_order": "DESC", + "states": [] +} diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py new file mode 100644 index 0000000000..fb7b6e2263 --- /dev/null +++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py @@ -0,0 +1,30 @@ +# Copyright (c) 2025, Frappe Technologies and contributors +# For license information, please see license.txt + +# import frappe +from frappe.model.document import Document + + +class OAuthSettings(Document): + # begin: auto-generated types + # This code is auto-generated. Do not modify anything in this block. + + from typing import TYPE_CHECKING + + if TYPE_CHECKING: + from frappe.types import DF + + allowed_public_client_origins: DF.SmallText | None + enable_dynamic_client_registration: DF.Check + resource_documentation: DF.Data | None + resource_name: DF.Data | None + resource_policy_uri: DF.Data | None + resource_tos_uri: DF.Data | None + scopes_supported: DF.SmallText | None + show_auth_server_metadata: DF.Check + show_protected_resource_metadata: DF.Check + show_social_login_key_as_authorization_server: DF.Check + skip_authorization: DF.Check + # end: auto-generated types + + pass diff --git a/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py new file mode 100644 index 0000000000..887c9e7278 --- /dev/null +++ b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py @@ -0,0 +1,20 @@ +# Copyright (c) 2025, Frappe Technologies and Contributors +# See license.txt + +# import frappe +from frappe.tests import IntegrationTestCase + +# On IntegrationTestCase, the doctype test records and all +# link-field test record dependencies are recursively loaded +# Use these module variables to add/remove to/from that list +EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] +IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"] + + +class IntegrationTestOAuthSettings(IntegrationTestCase): + """ + Integration tests for OAuthSettings. + Use this class for testing interactions between multiple components. + """ + + pass diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.json b/frappe/integrations/doctype/social_login_key/social_login_key.json index 55c9f96abb..ab63adcec8 100644 --- a/frappe/integrations/doctype/social_login_key/social_login_key.json +++ b/frappe/integrations/doctype/social_login_key/social_login_key.json @@ -20,6 +20,7 @@ "base_url", "configuration_section", "sign_ups", + "show_in_resource_metadata", "client_urls", "authorize_url", "access_token_url", @@ -172,11 +173,19 @@ "fieldtype": "Select", "label": "Sign ups", "options": "\nAllow\nDeny" + }, + { + "default": "1", + "description": "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point.", + "fieldname": "show_in_resource_metadata", + "fieldtype": "Check", + "label": "Show in Resource Metadata" } ], + "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-09-06 15:22:46.342392", + "modified": "2025-07-03 12:47:01.696817", "modified_by": "Administrator", "module": "Integrations", "name": "Social Login Key", @@ -195,9 +204,10 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "provider_name", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.py b/frappe/integrations/doctype/social_login_key/social_login_key.py index fbfa83fb3d..0e1567a995 100644 --- a/frappe/integrations/doctype/social_login_key/social_login_key.py +++ b/frappe/integrations/doctype/social_login_key/social_login_key.py @@ -54,6 +54,7 @@ class SocialLoginKey(Document): icon: DF.Data | None provider_name: DF.Data redirect_url: DF.Data | None + show_in_resource_metadata: DF.Check sign_ups: DF.Literal["", "Allow", "Deny"] social_login_provider: DF.Literal[ "Custom", diff --git a/frappe/integrations/doctype/webhook/webhook.json b/frappe/integrations/doctype/webhook/webhook.json index 5b8d277753..be71730a57 100644 --- a/frappe/integrations/doctype/webhook/webhook.json +++ b/frappe/integrations/doctype/webhook/webhook.json @@ -56,7 +56,7 @@ "fieldtype": "Select", "in_list_view": 1, "label": "Doc Event", - "options": "after_insert\non_update\non_submit\non_cancel\non_trash\non_update_after_submit\non_change", + "options": "after_insert\non_update\non_submit\non_cancel\non_trash\non_update_after_submit\non_change\nworkflow_transition", "set_only_once": 1 }, { @@ -189,7 +189,7 @@ "link_fieldname": "webhook" } ], - "modified": "2024-10-28 12:21:52.172428", + "modified": "2025-07-18 18:22:38.276809", "modified_by": "Administrator", "module": "Integrations", "name": "Webhook", diff --git a/frappe/integrations/doctype/webhook/webhook.py b/frappe/integrations/doctype/webhook/webhook.py index e1741f3b56..b20ed27ad8 100644 --- a/frappe/integrations/doctype/webhook/webhook.py +++ b/frappe/integrations/doctype/webhook/webhook.py @@ -49,6 +49,7 @@ class Webhook(Document): "on_trash", "on_update_after_submit", "on_change", + "workflow_transition", ] webhook_doctype: DF.Link webhook_headers: DF.Table[WebhookHeader] @@ -68,6 +69,9 @@ class Webhook(Document): def on_update(self): frappe.client_cache.delete_value("webhooks") + def execute_for_doc(self, doc: Document): + enqueue_webhook(doc, self) + def validate_docevent(self): if self.webhook_doctype: is_submittable = frappe.get_value("DocType", self.webhook_doctype, "is_submittable") @@ -144,7 +148,8 @@ def get_context(doc): def enqueue_webhook(doc, webhook) -> None: request_url = headers = data = r = None try: - webhook: Webhook = frappe.get_doc("Webhook", webhook.get("name")) + if not isinstance(webhook, Document): + webhook: Webhook = frappe.get_doc("Webhook", webhook.get("name")) request_url = webhook.request_url if webhook.is_dynamic_url: request_url = frappe.render_template(webhook.request_url, get_context(doc)) @@ -180,6 +185,9 @@ def enqueue_webhook(doc, webhook) -> None: sleep(3 * i + 1) if i != 2: continue + else: + if webhook.webhook_docevent == "workflow_transition": + raise e def log_request( diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py index 59e9f675b6..96224f4c5a 100644 --- a/frappe/integrations/oauth2.py +++ b/frappe/integrations/oauth2.py @@ -1,12 +1,22 @@ +import datetime import json -from urllib.parse import quote, urlencode +from typing import Literal, cast +from urllib.parse import quote, urlencode, urlparse from oauthlib.oauth2 import FatalClientError, OAuth2Error from oauthlib.openid.connect.core.endpoints.pre_configured import Server as WebApplicationServer +from pydantic import ValidationError +from werkzeug import Response +from werkzeug.exceptions import NotFound import frappe -from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import ( +import frappe.utils +from frappe import oauth +from frappe.integrations.utils import ( + OAuth2DynamicClientMetadata, + create_new_oauth_client, get_oauth_settings, + validate_dynamic_client_metadata, ) from frappe.oauth import ( OAuthWebRequestValidator, @@ -15,6 +25,14 @@ from frappe.oauth import ( get_userinfo, ) +ENDPOINTS = { + "token_endpoint": "/api/method/frappe.integrations.oauth2.get_token", + "userinfo_endpoint": "/api/method/frappe.integrations.oauth2.openid_profile", + "revocation_endpoint": "/api/method/frappe.integrations.oauth2.revoke_token", + "authorization_endpoint": "/api/method/frappe.integrations.oauth2.authorize", + "introspection_endpoint": "/api/method/frappe.integrations.oauth2.introspect_token", +} + def get_oauth_server(): if not getattr(frappe.local, "oauth_server", None): @@ -179,17 +197,18 @@ def openid_profile(*args, **kwargs): return generate_json_error_response(e) -@frappe.whitelist(allow_guest=True) -def openid_configuration(): +def get_openid_configuration(): + response = Response() + response.mimetype = "application/json" frappe_server_url = get_server_url() - frappe.local.response = frappe._dict( + response.data = frappe.as_json( { "issuer": frappe_server_url, - "authorization_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.authorize", - "token_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.get_token", - "userinfo_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.openid_profile", - "revocation_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.revoke_token", - "introspection_endpoint": f"{frappe_server_url}/api/method/frappe.integrations.oauth2.introspect_token", + "authorization_endpoint": f"{frappe_server_url}{ENDPOINTS['authorization_endpoint']}", + "token_endpoint": f"{frappe_server_url}{ENDPOINTS['token_endpoint']}", + "userinfo_endpoint": f"{frappe_server_url}{ENDPOINTS['userinfo_endpoint']}", + "revocation_endpoint": f"{frappe_server_url}{ENDPOINTS['revocation_endpoint']}", + "introspection_endpoint": f"{frappe_server_url}{ENDPOINTS['introspection_endpoint']}", "response_types_supported": [ "code", "token", @@ -202,6 +221,7 @@ def openid_configuration(): "id_token_signing_alg_values_supported": ["HS256"], } ) + return response @frappe.whitelist(allow_guest=True) @@ -244,3 +264,293 @@ def introspect_token(token=None, token_type_hint=None): except Exception: frappe.local.response = frappe._dict({"active": False}) + + +def handle_wellknown(path: str): + """Path handler for GET requests to /.well-known/ endpoints. Invoked in app.py""" + + if path.startswith("/.well-known/openid-configuration"): + return get_openid_configuration() + + if path.startswith("/.well-known/oauth-authorization-server") and is_oauth_metadata_enabled( + "auth_server" + ): + return get_authorization_server_metadata() + + if path.startswith("/.well-known/oauth-protected-resource") and is_oauth_metadata_enabled("resource"): + return get_protected_resource_metadata() + + raise NotFound + + +def get_authorization_server_metadata(): + """ + Creates response for the /.well-known/oauth-authorization-server endpoint. + + Reference: https://datatracker.ietf.org/doc/html/rfc8414 + """ + + response = Response() + response.mimetype = "application/json" + response.data = frappe.as_json(_get_authorization_server_metadata()) + frappe.local.allow_cors = "*" + return response + + +def _get_authorization_server_metadata(): + """ + Responds with the authorization server metadata. + + Reference: https://datatracker.ietf.org/doc/html/rfc8414#section-2 + + Note: + Value for response_types_supported does not include token because, PKCE + token flow is not supported. Responding with token in the redirect URL + is an unsafe practice, so code is the only supported response type. + """ + + issuer = get_resource_url() + metadata = dict( + issuer=issuer, + authorization_endpoint=f"{issuer}{ENDPOINTS['authorization_endpoint']}", + token_endpoint=f"{issuer}{ENDPOINTS['token_endpoint']}", + response_types_supported=["code"], + response_modes_supported=["query"], + grant_types_supported=["authorization_code", "refresh_token"], + token_endpoint_auth_methods_supported=["none", "client_secret_basic"], + service_documentation="https://docs.frappe.io/framework/user/en/guides/integration/how_to_set_up_oauth#add-a-client-app", + revocation_endpoint=f"{issuer}{ENDPOINTS['revocation_endpoint']}", + revocation_endpoint_auth_methods_supported=["client_secret_basic"], + introspection_endpoint=f"{issuer}{ENDPOINTS['introspection_endpoint']}", + userinfo_endpoint=f"{issuer}{ENDPOINTS['userinfo_endpoint']}", + code_challenge_methods_supported=["S256"], + ) + + if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"): + metadata["registration_endpoint"] = f"{issuer}/api/method/frappe.integrations.oauth2.register_client" + + return metadata + + +@frappe.whitelist(allow_guest=True, methods=["POST"]) +def register_client(): + """ + Registers an OAuth client. + + Reference: https://datatracker.ietf.org/doc/html/rfc7591 + """ + + if not frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"): + raise NotFound + + response = Response() + response.mimetype = "application/json" + data = frappe.request.json + + if data is None: + response.status_code = 400 + response.data = frappe.as_json( + { + "error": "invalid_client_metadata", + "error_description": "Request body is empty", + } + ) + return response + + try: + client = OAuth2DynamicClientMetadata.model_validate(data) + except ValidationError as e: + response.status_code = 400 + response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": str(e)}) + return response + + """ + Note: + + A check for existing client cannot be done unless a software_statement (JWT) + is issued. Use of software_statement is not yet implemented. + + Doing an exists check based on just client_name or other replicable + parameters risks leaking client_id and client_secret. So it's better to + issue a new client. + """ + + if error := validate_dynamic_client_metadata(client): + response.status_code = 400 + response.data = frappe.as_json({"error": "invalid_client_metadata", "error_description": error}) + return response + + doc = create_new_oauth_client(client) + response_data = { + "client_id": doc.client_id, + "client_secret": doc.client_secret, + "client_id_issued_at": doc.client_id_issued_at(), + "client_secret_expires_at": 0, + # Response should include registered metadata + "client_name": doc.app_name, + "client_uri": doc.client_uri, + "grant_types": ["authorization_code"], + "response_types": ["code"], + "logo_uri": doc.logo_uri, + "tos_uri": doc.tos_uri, + "policy_uri": doc.policy_uri, + "software_id": doc.software_id, + "software_version": doc.software_version, + "scope": doc.scopes, + "redirect_uris": doc.redirect_uris.split("\n") if doc.redirect_uris else None, + "contacts": doc.contacts.split("\n") if doc.contacts else None, + } + + if doc.is_public_client(): + del response_data["client_secret"] + + _del_none_values(response_data) + response.status_code = 201 # Created + response.data = frappe.as_json(response_data) + return response + + +def get_protected_resource_metadata(): + """ + Creates response for the /.well-known/oauth-protected-resource endpoint. + + Reference: https://datatracker.ietf.org/doc/html/rfc9728 + """ + + response = Response() + response.mimetype = "application/json" + response.data = frappe.as_json(_get_protected_resource_metadata()) + return response + + +def _get_protected_resource_metadata(): + from frappe.integrations.doctype.oauth_settings.oauth_settings import OAuthSettings + + oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings", ignore_permissions=True)) + resource = get_resource_url() + authorization_servers = [resource] + + if oauth_settings.show_social_login_key_as_authorization_server: + authorization_servers.extend( + frappe.get_list( + "Social Login Key", + filters={ + "enable_social_login": True, + "show_in_resource_metadata": True, + }, + pluck="base_url", + ignore_permissions=True, + ) + ) + + metadata = dict( + resource=resource, + authorization_servers=authorization_servers, + bearer_methods_supported=["header"], + resource_name=oauth_settings.resource_name, + resource_documentation=oauth_settings.resource_documentation, + resource_policy_uri=oauth_settings.resource_policy_uri, + resource_tos_uri=oauth_settings.resource_tos_uri, + ) + + if oauth_settings.scopes_supported is not None: + scopes = [] + for _s in oauth_settings.scopes_supported.split("\n"): + s = _s.strip() + if s is None: + continue + scopes.append(s) + + if scopes: + metadata["scopes_supported"] = scopes + _del_none_values(metadata) + return metadata + + +def is_oauth_metadata_enabled(label: Literal["resource", "auth_server"]): + if label not in ["resource", "auth_server"]: + return False + + fieldname = "show_auth_server_metadata" + if label == "resource": + fieldname = "show_protected_resource_metadata" + + return bool( + frappe.get_cached_value( + "OAuth Settings", + "OAuth Settings", + fieldname, + ) + ) + + +def get_resource_url(): + """Uses request URL to reflect the resource URL""" + request_url = urlparse(frappe.request.url) + return f"{request_url.scheme}://{request_url.netloc}" + + +def _del_none_values(d: dict): + for k in list(d.keys()): + if k in d and d[k] is None: + del d[k] + + +def set_cors_for_privileged_requests(): + """ + Called in before_request hook, prevents failure of privileged requests, + for OPTIONS and: + 1. GET requests on /.well-known/ + 2. POST requests on /api/method/frappe.integrations.oauth2.register_client + + Point 2. also depends on OAuth Settings for dynamic client registration. + Without these, registration requests from public clients will fail due to + preflight requests failing. + """ + if ( + frappe.conf.allow_cors == "*" + or not frappe.local.request + or not frappe.local.request.headers.get("Origin") + ): + return + + if frappe.request.path.startswith("/.well-known/") and frappe.request.method in ("GET", "OPTIONS"): + frappe.local.allow_cors = "*" + return + + if ( + frappe.request.path.startswith("/api/method/frappe.integrations.oauth2.register_client") + and frappe.request.method in ("POST", "OPTIONS") + and frappe.get_cached_value( + "OAuth Settings", + "OAuth Settings", + "enable_dynamic_client_registration", + ) + ): + _set_allowed_cors() + return + + if ( + frappe.request.path.startswith(ENDPOINTS["token_endpoint"]) + or frappe.request.path.startswith(ENDPOINTS["revocation_endpoint"]) + or frappe.request.path.startswith(ENDPOINTS["introspection_endpoint"]) + or frappe.request.path.startswith(ENDPOINTS["userinfo_endpoint"]) + ) and frappe.request.method in ("POST", "OPTIONS"): + _set_allowed_cors() + return + + +def _set_allowed_cors(): + allowed = frappe.get_cached_value( + "OAuth Settings", + "OAuth Settings", + "allowed_public_client_origins", + ) + if not allowed: + return + + allowed = allowed.strip().splitlines() + if "*" in allowed: + frappe.local.allow_cors = "*" + else: + frappe.local.allow_cors = allowed diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py index bb4f62463b..4f7d27d461 100644 --- a/frappe/integrations/utils.py +++ b/frappe/integrations/utils.py @@ -3,12 +3,48 @@ import datetime import json +from typing import Any, cast from urllib.parse import parse_qs +from pydantic import BaseModel, HttpUrl + import frappe +from frappe.integrations.doctype.oauth_client.oauth_client import OAuthClient from frappe.utils import get_request_session +class OAuth2DynamicClientMetadata(BaseModel): + """ + OAuth 2.0 Dynamic Client Registration Metadata. + + As defined in RFC7591 - OAuth 2.0 Dynamic Client Registration Protocol + https://datatracker.ietf.org/doc/html/rfc7591#section-2 + """ + + # Used to identify the client to the authorization server + redirect_uris: list[HttpUrl] + token_endpoint_auth_method: str | None = "client_secret_basic" + grant_types: list[str] | None = ["authorization_code"] + response_types: list[str] | None = ["code"] + + # Client identifiers shown to user + client_name: str + scope: str | None = None + client_uri: HttpUrl | None = None + logo_uri: HttpUrl | None = None + + # Client contact and other information for the client + contacts: list[str] | None = None + tos_uri: HttpUrl | None = None + policy_uri: HttpUrl | None = None + software_id: str | None = None + software_version: str | None = None + + # JSON Web Key Set (JWKS) not used here + jwks_uri: HttpUrl | None = None + jwks: dict | None = None + + def make_request(method: str, url: str, auth=None, headers=None, data=None, json=None, params=None): auth = auth or "" data = data or {} @@ -164,3 +200,73 @@ def get_json(obj): def json_handler(obj): if isinstance(obj, datetime.date | datetime.timedelta | datetime.datetime): return str(obj) + + +def validate_dynamic_client_metadata(client: OAuth2DynamicClientMetadata): + invalidation_reasons = [] + if len(client.redirect_uris) == 0: + invalidation_reasons.append("redirect_uris is required") + + if client.grant_types and not set(client.grant_types).issubset({"authorization_code", "refresh_token"}): + invalidation_reasons.append("only 'authorization_code' and 'refresh_token' grant types are supported") + + if client.response_types and not all(rt == "code" for rt in client.response_types): + invalidation_reasons.append("only 'code' response_type is supported") + + if not frappe.conf.developer_mode and any(c.scheme != "https" for c in client.redirect_uris): + invalidation_reasons.append("redirect_uris must be https") + + if invalidation_reasons: + return ",\n".join(invalidation_reasons) + + return None + + +def create_new_oauth_client(client: OAuth2DynamicClientMetadata): + doc = cast(OAuthClient, frappe.get_doc({"doctype": "OAuth Client"})) + redirect_uris = [str(uri) for uri in client.redirect_uris] + + doc.app_name = client.client_name + doc.scopes = client.scope or "all" + doc.redirect_uris = "\n".join(redirect_uris) + doc.default_redirect_uri = redirect_uris[0] + doc.response_type = "Code" + doc.grant_type = "Authorization Code" + doc.skip_authorization = False + + if client.client_uri: + doc.client_uri = client.client_uri.encoded_string() + if client.logo_uri: + doc.logo_uri = client.logo_uri.encoded_string() + if client.tos_uri: + doc.tos_uri = client.tos_uri.encoded_string() + if client.policy_uri: + doc.policy_uri = client.policy_uri.encoded_string() + if client.contacts: + doc.contacts = "\n".join(client.contacts) + if client.software_id: + doc.software_id = client.software_id + if client.software_version: + doc.software_version = client.software_version + + if client.token_endpoint_auth_method == "none": + doc.token_endpoint_auth_method = "None" + if client.token_endpoint_auth_method == "client_secret_post": + doc.token_endpoint_auth_method = "Client Secret Post" + + doc.save(ignore_permissions=True) + return doc + + +def get_oauth_settings(): + """Return OAuth settings.""" + settings: dict[str, Any] = frappe._dict({"skip_authorization": None}) + if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "skip_authorization"): + settings["skip_authorization"] = "Auto" # based on legacy OAuth Provider Settings value + + elif value := frappe.get_cached_value( + "OAuth Provider Settings", "OAuth Provider Settings", "skip_authorization" + ): + settings["skip_authorization"] = value + + return settings diff --git a/frappe/integrations/workspace/integrations/integrations.json b/frappe/integrations/workspace/integrations/integrations.json index 2d72732361..787ea5ad32 100644 --- a/frappe/integrations/workspace/integrations/integrations.json +++ b/frappe/integrations/workspace/integrations/integrations.json @@ -1,6 +1,7 @@ { + "app": "frappe", "charts": [], - "content": "[{\"id\":\"NPK_AfSLQ2\",\"type\":\"header\",\"data\":{\"text\":\"Reports & Masters\",\"col\":12}},{\"id\":\"lDOo58F7ZI\",\"type\":\"card\",\"data\":{\"card_name\":\"Backup\",\"col\":4}},{\"id\":\"ij1pcK8jst\",\"type\":\"card\",\"data\":{\"card_name\":\"Google Services\",\"col\":4}},{\"id\":\"aTlMujEHpN\",\"type\":\"card\",\"data\":{\"card_name\":\"Authentication\",\"col\":4}},{\"id\":\"gY5NXKtXss\",\"type\":\"card\",\"data\":{\"card_name\":\"Settings\",\"col\":4}},{\"id\":\"n_CI3GGqW-\",\"type\":\"card\",\"data\":{\"card_name\":\"Push Notifications\",\"col\":4}}]", + "content": "[{\"id\":\"3iua9gS06d\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Google Settings\",\"col\":3}},{\"id\":\"G4mkFTN5SN\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Webhook\",\"col\":3}},{\"id\":\"fPZBlLf1Ux\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"ij1pcK8jst\",\"type\":\"card\",\"data\":{\"card_name\":\"Google Services\",\"col\":4}},{\"id\":\"aTlMujEHpN\",\"type\":\"card\",\"data\":{\"card_name\":\"Authentication\",\"col\":4}},{\"id\":\"gY5NXKtXss\",\"type\":\"card\",\"data\":{\"card_name\":\"Settings\",\"col\":4}},{\"id\":\"n_CI3GGqW-\",\"type\":\"card\",\"data\":{\"card_name\":\"Push Notifications\",\"col\":4}}]", "creation": "2020-03-02 15:16:18.714190", "custom_blocks": [], "docstatus": 0, @@ -53,17 +54,6 @@ "onboard": 0, "type": "Link" }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Google Drive", - "link_count": 0, - "link_to": "Google Drive", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, { "hidden": 0, "is_query_report": 0, @@ -177,7 +167,7 @@ "type": "Link" } ], - "modified": "2024-02-28 10:47:38.188832", + "modified": "2025-07-14 10:35:20.131242", "modified_by": "Administrator", "module": "Integrations", "name": "Integrations", @@ -189,6 +179,23 @@ "restrict_to_domain": "", "roles": [], "sequence_id": 20.0, - "shortcuts": [], - "title": "Integrations" + "shortcuts": [ + { + "color": "Grey", + "doc_view": "List", + "label": "Google Settings", + "link_to": "Google Settings", + "type": "DocType" + }, + { + "color": "Grey", + "doc_view": "List", + "label": "Webhook", + "link_to": "Webhook", + "stats_filter": "[]", + "type": "DocType" + } + ], + "title": "Integrations", + "type": "Workspace" } \ No newline at end of file diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po index 925d735b7f..1a666723e9 100644 --- a/frappe/locale/ar.po +++ b/frappe/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:49\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'في عرض القائمة' غير مسموح للنوع {0} في ال msgid "'Recipients' not specified" msgstr "لم يتم تحديد "المستلمين"" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "تمت مزامنة حدث تقويم Google واحد." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "تعليق واحد" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "منذ 1 ساعة" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "منذ 1 دقيقة" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "قبل شهر" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "سيتم تصدير سجل واحد" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 قبل أسبوع" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "منذ سنة" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "5 السجلات" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -534,11 +534,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -565,6 +560,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "يجب أن تحتوي الوظيفة المميزة على صورة غلاف" @@ -599,6 +599,13 @@ msgstr "رمز هذه العملة. ر.س مثلاً" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "كلمة في حد ذاتها هي سهلة التخمين." @@ -843,7 +850,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -860,7 +866,7 @@ msgstr "العمل / الطريق" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "فشل العمل" @@ -909,10 +915,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "الإجراءات" @@ -974,8 +980,8 @@ msgstr "سجل النشاط" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "إضافة" @@ -992,7 +998,7 @@ msgstr "إضافة / تحديث" msgid "Add A New Rule" msgstr "إضافة قاعدة جديدة" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "إضافة مرفق" @@ -1016,7 +1022,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "إضافة مخطط إلى لوحة القيادة" @@ -1025,8 +1031,8 @@ msgid "Add Child" msgstr "إضافة الطفل" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1062,7 +1068,7 @@ msgid "Add Gray Background" msgstr "أضف خلفية رمادية" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "إضافة مجموعة" @@ -1087,7 +1093,7 @@ msgstr "أضف مشاركين" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1097,7 +1103,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "إضافة التوقيع" @@ -1120,12 +1126,12 @@ msgstr "إضافة المشتركين" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1232,7 +1238,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "إضافة إلى لوحة القيادة" @@ -1387,11 +1393,11 @@ msgstr "الادارة" msgid "Administrator" msgstr "مدير" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "تسجيل دخول مسؤول النظام" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr ".{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان" @@ -1499,6 +1505,14 @@ msgstr "إنذار" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1539,7 +1553,6 @@ msgstr "محاذاة القيمة" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1869,6 +1882,12 @@ msgstr "سمح في المذكرات" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1885,7 +1904,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "السماح DOCTYPE ، DOCTYPE . كن حذرا!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "مسجل بالفعل" @@ -1976,7 +2031,7 @@ msgstr "المعدل" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1984,7 +2039,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "حدث خطأ أثناء إعداد الإعدادات الافتراضية للجلسة" @@ -2065,16 +2120,6 @@ msgstr "" msgid "App" msgstr "تطبيق" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "هوية العميل للتطبيق" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "كلمة مرور التطبيق الثانوي" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2088,21 +2133,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "اسم التطبيق" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "لم يتم تثبيت التطبيق {0}" @@ -2167,7 +2215,7 @@ msgstr "تم التطبيق" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "تطبيق قاعدة الواجب" @@ -2248,7 +2296,7 @@ msgstr "أرشفة" msgid "Archived Columns" msgstr "أعمدة من الأرشيف" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2280,7 +2328,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2316,10 +2364,6 @@ msgstr "هل أنت متأكد أنك تريد إعادة تعيين كافة ا msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2352,16 +2396,16 @@ msgstr "" msgid "Assign Condition" msgstr "تعيين الشرط" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "تكليف إلى" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "تكليف إلى" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2513,7 +2557,7 @@ msgstr "" msgid "Attach" msgstr "إرفاق" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "إرفاق طباعة المستند" @@ -2573,9 +2617,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "مرفق" @@ -2602,20 +2644,17 @@ msgid "Attachment Removed" msgstr "تم حذف المرفق" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "المرفقات" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "محاولة الاتصال بـ QZ Tray ..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "محاولة إطلاق QZ Tray ..." @@ -2623,11 +2662,6 @@ msgstr "محاولة إطلاق QZ Tray ..." msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2672,6 +2706,11 @@ msgstr "فشلت المصادقة أثناء تلقي رسائل البريد ا msgid "Author" msgstr "مؤلف" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2906,7 +2945,7 @@ msgstr "الصورة الرمزية" msgid "Average" msgstr "معدل" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "متوسط {0}" @@ -3011,7 +3050,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3054,7 +3093,7 @@ msgstr "صورة الخلفية" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "خلفية عن الخبرات السابقة" @@ -3659,7 +3698,7 @@ msgstr "ملغي" msgid "CC" msgstr "نسخة" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "نسخة" @@ -3782,10 +3821,8 @@ msgstr "عنوان رد الاتصال" msgid "Camera" msgstr "الة تصوير" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3852,7 +3889,7 @@ msgstr "" msgid "Cancel" msgstr "إلغاء" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "إلغاء" @@ -3870,11 +3907,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "الغاء جميع الوثائق" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "إلغاء {0} وثائق؟" @@ -3941,11 +3974,11 @@ msgstr "لا يمكن الإلغاء قبل الإرسال. انظر الانت msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3973,7 +4006,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "لا يمكن حذف المجلدات الرئيسية والمرفقات" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}" @@ -4028,7 +4061,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "لا يمكنك التعديل على التقارير القياسية. يرجى نسخ التقريرالقياسي و التعديل على النسخة الجديدة" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "لا يمكنك التعديل على وثيقة ملغية" @@ -4065,7 +4098,7 @@ msgstr "لا يمكن تعيين طابعات متعددة على تنسيق ط msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "لا يمكن ربط وثيقة إلغاء: {0}" @@ -4110,7 +4143,7 @@ msgstr "لا يمكن تحديث {0}" msgid "Cannot use sub-query in order by" msgstr "لا يمكن استخدام طلب البحث الفرعي بالترتيب" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4136,7 +4169,7 @@ msgstr "بطاقة" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "ملصق البطاقة" @@ -4167,10 +4200,6 @@ msgstr "وصف الفئة" msgid "Category Name" msgstr "اسم التصنيف" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "سنت" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4278,7 +4307,7 @@ msgstr "تكوين الرسم البياني" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "اسم المخطط" @@ -4335,10 +4364,6 @@ msgstr "التحقق من" msgid "Check Request URL" msgstr "تحقق من عنوان الرابط المطلوب" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4362,10 +4387,6 @@ msgstr "التحقق من ذلك إذا كنت تريد لإجبار المست msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "فحص لحظة واحدة" @@ -4412,6 +4433,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes الأخرى" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "اختر بطاقة موجودة أو أنشئ بطاقة جديدة" @@ -4451,15 +4476,19 @@ msgstr "المدينة / البلدة" msgid "Clear" msgstr "واضح" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4485,7 +4514,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "مسح أذونات المستخدم" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4501,10 +4530,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "انقر هنا للتأكيد" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4584,8 +4609,10 @@ msgid "Client Credentials" msgstr "وثائق تفويض العميل" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "رمز العميل" @@ -4601,6 +4628,12 @@ msgstr "" msgid "Client Information" msgstr "معلومات العميل" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4613,13 +4646,32 @@ msgstr "العميل النصي" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "سر العميل" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4704,7 +4756,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "انهيار" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "انهيار جميع" @@ -4759,7 +4811,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4846,11 +4898,11 @@ msgstr "الأعمدة" msgid "Columns / Fields" msgstr "الأعمدة / الحقول" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "أعمدة بناء على" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "الجمع بين نوع المنحة ( {0} ) ونوع الاستجابة ( {1} ) غير مسموح به" @@ -5009,7 +5061,7 @@ msgstr "أكمال" msgid "Complete By" msgstr "الكامل من جانب" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "أكمال التسجيل" @@ -5099,6 +5151,12 @@ msgstr "" msgid "Conditions" msgstr "الظروف" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5135,7 +5193,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "أكد" @@ -5144,7 +5202,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "أكد" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5157,7 +5215,7 @@ msgstr "" msgid "Confirm New Password" msgstr "تأكيد كلمة المرور الجديدة" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5166,17 +5224,12 @@ msgstr "" msgid "Confirm Request" msgstr "تأكيد الطلب" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "تأكيد البريد الإلكتروني الخاص بك" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "نموذج البريد الإلكتروني للتأكيد" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "مؤكد" @@ -5203,8 +5256,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "متصلا علبة QZ!" @@ -5296,6 +5349,11 @@ msgstr "إعدادات الاتصال بنا" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "خيارات الاتصال، مثل "الاستعلام المبيعات والدعم الاستعلام" الخ كل على سطر جديد أو مفصولة بفواصل." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5307,8 +5365,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5316,8 +5372,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5341,10 +5396,8 @@ msgstr "المحتوى (تخفيض السعر)" msgid "Content Hash" msgstr "تجزئة المحتوى" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5401,7 +5454,7 @@ msgstr "حالة المساهمة" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "نسخ إلى الحافظة." @@ -5417,7 +5470,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5442,7 +5495,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "لا يمكن أن تجد {0}" @@ -5450,6 +5503,10 @@ msgstr "لا يمكن أن تجد {0}" msgid "Could not map column {0} to field {1}" msgstr "تعذر تعيين العمود {0} للحقل {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5466,7 +5523,7 @@ msgstr "تعذر الحفظ ، يرجى التحقق من البيانات ال #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "عد" @@ -5505,7 +5562,7 @@ msgstr "عداد" msgid "Country" msgstr "الدولة" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5537,7 +5594,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5551,13 +5608,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "إنشاء بطاقة" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "إنشاء مخطط" @@ -5636,11 +5693,6 @@ msgstr "انشاء جديد {0}" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5989,6 +6041,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6022,12 +6078,12 @@ msgstr "تم تصدير التخصيصات ل {0} إلى:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "تخصيص" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "تخصيص" @@ -6046,7 +6102,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "تخصيص نموذج" @@ -6172,7 +6228,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "لوحة القيادة" @@ -6339,7 +6395,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6403,6 +6458,11 @@ msgstr "يوم" msgid "Day of Week" msgstr "يوم من الأسبوع" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "أيام" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6667,15 +6727,16 @@ msgstr "مؤجل" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -6711,7 +6772,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6753,12 +6814,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "احذف هذا السجل للسماح بالإرسال إلى عنوان البريد الإلكتروني هذا" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "حذف {0} العناصر نهائيا؟" @@ -6982,6 +7043,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7165,8 +7227,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "معطل" @@ -7175,7 +7237,7 @@ msgstr "معطل" msgid "Disabled Auto Reply" msgstr "الرد التلقائي معطل" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7333,6 +7395,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7578,7 +7641,7 @@ msgstr "شرط قاعدة تسمية المستند" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "المستند في قائمة الانتظار" @@ -7735,7 +7798,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7872,7 +7935,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7926,7 +7989,7 @@ msgstr "رابط التحميل" msgid "Download PDF" msgstr "تحميل PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "تحميل التقرير" @@ -8010,7 +8073,7 @@ msgid "Due Date Based On" msgstr "تاريخ الاستحقاق بناء على" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "مكررة" @@ -8125,9 +8188,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8139,7 +8202,7 @@ msgstr "" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "تصحيح" @@ -8174,11 +8237,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "تحرير مخصص HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "تعديل القائمة" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "تعديل القائمة" @@ -8353,10 +8416,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8391,7 +8453,7 @@ msgstr "" msgid "Email Account Name" msgstr "البريد الإلكتروني اسم الحساب" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "تمت إضافة حساب البريد الإلكتروني عدة مرات" @@ -8447,11 +8509,9 @@ msgstr "تذييل البريد الإلكتروني" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "البريد الإلكتروني المجموعة" @@ -8500,7 +8560,7 @@ msgstr "قائمة إنتظار البريد الإلكتروني" msgid "Email Queue Recipient" msgstr "البريد الإلكتروني المستلم قائمة الانتظار" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8524,18 +8584,11 @@ msgstr "" msgid "Email Rule" msgstr "البريد الإلكتروني القاعدة" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "إرسال البريد الإلكتروني" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8571,7 +8624,7 @@ msgstr "مزامنة البريد الإلكتروني الخيار" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "قالب البريد الإلكتروني" @@ -8603,7 +8656,7 @@ msgstr "تم نقل البريد الإلكتروني إلى المهملات" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل)" @@ -8629,7 +8682,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "رسائل البريد الإلكتروني هي صامتة" @@ -8642,10 +8695,18 @@ msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إ msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8681,6 +8742,12 @@ msgstr "تمكين الربط التلقائي في المستندات" msgid "Enable Comments" msgstr "تمكين تعليقات" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8840,8 +8907,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "تمكين" @@ -8968,7 +9035,7 @@ msgstr "أدخل معرف العميل وسر العميل في إعدادات G msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "أدخل البريد الإلكتروني المستلم" @@ -9071,7 +9138,7 @@ msgstr "" msgid "Error Message" msgstr "رسالة خطأ" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "خطأ في الاتصال بـ QZ Tray Application ...

تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." @@ -9109,6 +9176,14 @@ msgstr "خطأ في الإخطار" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}" @@ -9274,7 +9349,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "وقت التنفيذ: {0} ثانية" @@ -9300,11 +9375,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "وسعت" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "توسيع الكل" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9357,13 +9436,13 @@ msgstr "وقت انتهاء صلاحية رمز الاستجابة السريع #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "تصدير" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "تصدير" @@ -9721,8 +9800,8 @@ msgstr "جلب مستندات البحث العالمي الافتراضية." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9793,7 +9872,7 @@ msgstr "حقل لتعقب" msgid "Field type cannot be changed for {0}" msgstr "لا يمكن تغيير نوع الحقل ل {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9836,7 +9915,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "اسم الحقل محدد ب 64 حرف
Fieldname is limited to 64 characters ({0})" @@ -9852,7 +9931,7 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}" @@ -9904,6 +9983,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10069,6 +10152,14 @@ msgstr "اسم الفلتر" msgid "Filter Values" msgstr "قيم التصفية" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10280,7 +10371,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "إتبع" @@ -10288,7 +10379,7 @@ msgstr "إتبع" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10312,10 +10403,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "الحقول التالية والقيم المفقودة:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10476,7 +10563,7 @@ msgstr "للمستخدم" msgid "For Value" msgstr "للقيمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10)." @@ -10732,15 +10819,13 @@ msgid "Friday" msgstr "الجمعة" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "من" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "من" @@ -10756,7 +10841,7 @@ msgstr "من تاريخ" msgid "From Date Field" msgstr "من حقل التاريخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "من نوع المستند" @@ -10807,7 +10892,7 @@ msgstr "العرض الكامل" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "وظيفة" @@ -10816,10 +10901,14 @@ msgstr "وظيفة" msgid "Function Based On" msgstr "وظيفة على أساس" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '" @@ -10881,7 +10970,7 @@ msgstr "عام" msgid "Generate Keys" msgstr "توليد مفاتيح" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "توليد تقرير جديد" @@ -10889,8 +10978,8 @@ msgstr "توليد تقرير جديد" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -11005,7 +11094,7 @@ msgstr "اختصارات العالمية" msgid "Global Unsubscribe" msgstr "إلغاء الاشتراك العالمية" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "اذهب" @@ -11169,8 +11258,6 @@ msgstr "جهات اتصال Google - تعذر تحديث جهة الاتصال msgid "Google Contacts Id" msgstr "معرف جهات اتصال Google" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "محرك جوجل" @@ -11207,6 +11294,7 @@ msgstr "خدمات جوجل" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11301,6 +11389,10 @@ msgstr "مجموعة حسب النوع" msgid "Group By field is required to create a dashboard chart" msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "عقدة المجموعة" @@ -11315,7 +11407,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11349,7 +11441,6 @@ msgstr "HH: MM: SS" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11363,11 +11454,10 @@ msgstr "HH: MM: SS" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11596,7 +11686,7 @@ msgstr "هلفتيكا" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11632,12 +11722,17 @@ msgstr "مخفي" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "إخفاء" @@ -11744,7 +11839,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "إخفاء القائمة الرئيسية" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11799,7 +11894,7 @@ msgstr "سيتم تطبيق قاعدة الأولوية الأعلى أولاً" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "تلميح: تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور" @@ -11872,20 +11967,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "حد المعدل بالساعة لإنشاء روابط إعادة تعيين كلمة المرور" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "ساعات" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "كيف ينبغي أن يتم تنسيق هذه العملة؟ إذا لم يتم تعيين و، استخدم افتراضيات النظام" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12290,7 +12395,7 @@ msgstr "يجب أن يكون حقل الصورة من النوع إرفاق صو msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12338,7 +12443,7 @@ msgstr "ضمني" msgid "Import" msgstr "استيراد" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "استيراد" @@ -12566,11 +12671,15 @@ msgstr "تضمين سمة من التطبيقات" msgid "Include Web View Link in Email" msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "تشمل المسافة البادئة" @@ -12637,11 +12746,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور" msgid "Incorrect Verification code" msgstr "رمز التحقق غير صحيح" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12728,7 +12837,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "إدراج بعد" @@ -12793,11 +12902,11 @@ msgstr "تعليمات" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "عدم كفاية الإذن {0}" @@ -12919,7 +13028,7 @@ msgstr "غير صالحة" msgid "Invalid \"depends_on\" expression" msgstr "تعبير "under_on" غير صالح" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "تم تعيين تعبير "يعتمد على" غير صالح في عامل التصفية {0}" @@ -12947,7 +13056,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "بيانات الاعتماد غير صالحة" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "تاريخ غير صالح" @@ -12955,7 +13064,7 @@ msgstr "تاريخ غير صالح" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12967,6 +13076,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12979,7 +13093,7 @@ msgstr "قيمة تصفية غير صالحة" msgid "Invalid Home Page" msgstr "الصفحة الرئيسية غير صالحة" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "رابط غير صالح" @@ -13013,7 +13127,7 @@ msgstr "خيار غير صالح" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "تنسيق الإخراج غير صالح" @@ -13025,13 +13139,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "رمز مرور خاطئ" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13075,11 +13189,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "عمود غير صالح" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13091,10 +13233,30 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية msgid "Invalid expression set in filter {0} ({1})" msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "اسم الحقل غير صالح {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" @@ -13103,11 +13265,26 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" msgid "Invalid file path: {0}" msgstr "مسار الملف غير صالح: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "مرشح غير صالح: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13129,10 +13306,22 @@ msgstr "محتوى غير صالح أو تالف للاستيراد" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "ملف نموذج غير صالح للاستيراد" @@ -13540,8 +13729,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "القفز الى الميدان" @@ -13574,11 +13763,11 @@ msgstr "عمود لوح كانبان" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "اسم لوح كانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13866,7 +14055,7 @@ msgstr "التسمية إلزامية" msgid "Landing Page" msgstr "الصفحة المقصودة" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "المناظر الطبيعيه" @@ -14162,7 +14351,7 @@ msgstr "رسالة" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14290,6 +14479,10 @@ msgstr "اعجابات" msgid "Limit" msgstr "حد" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14472,7 +14665,7 @@ msgstr "الروابط" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "قائمة" @@ -14502,7 +14695,7 @@ msgstr "تصفية القائمة" msgid "List Settings" msgstr "إعدادات القائمة" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "إعدادات القائمة" @@ -14553,6 +14746,7 @@ msgid "Load Balancing" msgstr "تحميل موازنة" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14573,7 +14767,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "تحميل" @@ -14785,6 +14979,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14971,7 +15170,7 @@ msgstr "إلزامي يعتمد على" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "معلومات إلزامية مفقود:" @@ -15071,11 +15270,9 @@ msgstr "علامة كدعاية" msgid "Mark as Unread" msgstr "حدده كغير مقروء" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15196,7 +15393,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15264,7 +15461,6 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15277,11 +15473,10 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15292,16 +15487,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "رسالة" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "الرسالة (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "الرسالة (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15328,7 +15513,7 @@ msgstr "تم ارسال الرسالة" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "رسالة قص" @@ -15406,6 +15591,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "عنوان Meta لـ SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15425,7 +15616,7 @@ msgstr "عنوان Meta لـ SEO" msgid "Method" msgstr "طريقة" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15475,6 +15666,11 @@ msgstr "الحد الأدنى من كلمة المرور" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "الدقائق" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15514,7 +15710,7 @@ msgstr "" msgid "Missing Fields" msgstr "حقول مفقودة" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15522,7 +15718,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15588,7 +15784,7 @@ msgstr "عدل من قبل" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15870,7 +16066,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "يجب أن يكون من نوع "إرفاق صورة"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير." @@ -15888,7 +16084,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16030,12 +16226,12 @@ msgstr "قالب نافبار" msgid "Navbar Template Values" msgstr "قيم قالب نافبار" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "انتقل القائمة لأسفل" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "انتقل القائمة لأعلى" @@ -16054,10 +16250,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "قيمة سالبة" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير البرنامج." @@ -16140,7 +16340,7 @@ msgstr "حدث جديد" msgid "New Folder" msgstr "ملف جديد" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "مجلس كانبان جديدة" @@ -16163,10 +16363,6 @@ msgstr "رسالة جديدة من موقع الاتصال الصفحة" msgid "New Name" msgstr "اسم جديد" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "النشرة الإخبارية جديدة" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "إخطار جديد" @@ -16179,7 +16375,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "كلمة مرور جديدة" @@ -16224,7 +16420,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16248,7 +16463,7 @@ msgstr "القيمة الجديدة التي سيتم تحديدها" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16256,19 +16471,19 @@ msgstr "القيمة الجديدة التي سيتم تحديدها" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "{0} جديد" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "جديد {0} تم إنشاؤه" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "تمت إضافة {0} {1} جديد إلى لوحة التحكم {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "تم إنشاء {0} {1} جديد" @@ -16280,52 +16495,17 @@ msgstr "جديد {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالية" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "النشرة الإخبارية" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "البريد الإلكتروني المجموعة البريدية" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "مدير النشرة الإخبارية" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "الرسالة الإخبارية قد تم إرسالها من قبل" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "يجب أن تحتوي الرسالة الإخبارية على متلقي واحد على الأقل" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "النشرات الإخبارية" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16442,7 +16622,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "لا" @@ -16471,7 +16651,7 @@ msgid "No Copy" msgstr "اي نسخة" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16583,11 +16763,11 @@ msgstr "لا يوجد نتائج" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16615,10 +16795,6 @@ msgstr "لا تنبيهات لهذا اليوم" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "لا توجد تغييرات في المستند" @@ -16655,7 +16831,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "لا جهات اتصال مرتبطة بالمستند" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "لا توجد بيانات للتصدير" @@ -16675,7 +16851,7 @@ msgstr "لا يوجد حساب بريد إلكتروني مرتبط بالمست msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16734,7 +16910,7 @@ msgstr "عدد الصفوف (بحد أقصى 500)" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}" @@ -16827,6 +17003,12 @@ msgstr "غير سلبي" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "لا شيء" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "لا شيء: نهاية سير العمل" @@ -16841,7 +17023,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "غير مسموح" @@ -16862,7 +17044,7 @@ msgstr "ليس من أحفاد" msgid "Not Equals" msgstr "لا تساوي" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "لم يتم العثور على" @@ -16888,16 +17070,16 @@ msgstr "غير مرتبط بأي سجل" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "لا يسمح" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16907,8 +17089,8 @@ msgstr "" msgid "Not Published" msgstr "لم تنشر" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16925,7 +17107,6 @@ msgstr "لا أرى" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "لا ترسل" @@ -16942,7 +17123,7 @@ msgstr "غير محدد" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "ليس صالحا القيمة المفصولة بفواصل ( CSV ملف)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "ليست صورة مستخدم صالحة." @@ -16958,7 +17139,7 @@ msgstr "" msgid "Not active" msgstr "غير نشطة" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "غير مسموح لـ {0}: {1}" @@ -16999,7 +17180,7 @@ msgstr "ليس في وضع المطور! يقع في site_config.json أو جع #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غير مسموح به" @@ -17177,7 +17358,7 @@ msgstr "يخطر إذا لا تحوي على ردود ل (في دقيقة)" msgid "Notify users with a popup when they log in" msgstr "إعلام المستخدمين مع منبثقة عندما يقومون بتسجيل الدخول" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "الآن" @@ -17320,6 +17501,11 @@ msgstr "إعدادات موفرOAuth" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17392,6 +17578,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "كلمة المرور القديمة" @@ -17463,7 +17653,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17539,7 +17729,7 @@ msgstr "مدير النظام فقط يمكنه التحرير" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "مسؤول فقط يمكن حفظ تقرير القياسية. الرجاء إعادة تسمية وحفظ." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "يسمح فقط للمسؤول باستخدام Recorder" @@ -17565,7 +17755,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17596,7 +17786,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17604,7 +17794,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17692,7 +17882,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "فتح عنصر القائمة" @@ -17737,7 +17927,7 @@ msgstr "افتتح" msgid "Operation" msgstr "عملية" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "يجب أن يكون المشغل واحدا من {0}" @@ -17747,7 +17937,7 @@ msgstr "يجب أن يكون المشغل واحدا من {0}" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17836,6 +18026,10 @@ msgstr "" msgid "Order" msgstr "طلب" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17848,7 +18042,7 @@ msgstr "تاريخ المنظمة" msgid "Org History Heading" msgstr "عنوان تاريخ المنظمة" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "توجيه" @@ -17930,9 +18124,11 @@ msgstr "مالك" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18227,11 +18423,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "الأصل هو اسم المستند الذي ستتم إضافة البيانات إليه." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18291,11 +18487,11 @@ msgstr "غير فعال" msgid "Password" msgstr "كلمة السر" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "إعادة تعيين كلمة المرور" @@ -18329,11 +18525,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18341,11 +18537,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18353,10 +18549,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "كلمة المرور غير مطابقة!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "لصق" @@ -18502,7 +18694,7 @@ msgstr "إرسال دائم {0} ؟" msgid "Permanently delete {0}?" msgstr "حذف بشكل دائم {0} ؟" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "خطأ في الإذن" @@ -18654,11 +18846,11 @@ msgstr "هاتف" msgid "Phone No." msgstr "رقم الهاتف" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18716,7 +18908,7 @@ msgstr "يرجى تكرار هذا الموقع موضوع لتخصيص." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "الرجاء تثبيت مكتبة ldap3 عبر النقطة لاستخدام وظيفة ldap." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "يرجى وضع الرسم البياني" @@ -18732,7 +18924,7 @@ msgstr "الرجاء إضافة موضوع إلى بريدك الإلكترون msgid "Please add a valid comment." msgstr "الرجاء إضافة تعليق صالح." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك" @@ -18764,7 +18956,7 @@ msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "يرجى التحقق من قيمة مجموعة "الجلب من" للحقل {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "يرجى التحقق من بريدك الالكتروني للتحقق" @@ -18829,7 +19021,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "يرجى تمكين النوافذ المنبثقة" @@ -18846,23 +19038,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "يرجى التأكد من أن التعريف الخاص بك لديه عنوان البريد الإلكتروني" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "الرجاء إدخال عنوان ورل لرمز الدخول المميز" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "الرجاء إدخال عنوان ورل للمصادقة" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "الرجاء إدخال عنوان ورل الأساسي" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "الرجاء إدخال معرف العميل قبل تمكين تسجيل الدخول الاجتماعي" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "الرجاء إدخال العميل السري قبل تمكين تسجيل الدخول الاجتماعي" @@ -18870,7 +19062,7 @@ msgstr "الرجاء إدخال العميل السري قبل تمكين تسج msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "الرجاء إدخال عنوان ورل لإعادة التوجيه" @@ -18882,7 +19074,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "الرجاء إدخال كلمة المرور" @@ -18895,11 +19087,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "الرجاء إدخال أرقام جوال صالحة" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18915,7 +19107,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "يرجى تحديث للحصول على أحدث وثيقة." @@ -18927,10 +19119,6 @@ msgstr "" msgid "Please save before attaching." msgstr "الرجاء حفظ قبل إرفاق." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "يرجى حفظ النشرة الإخبارية قبل إرسالها" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "الرجاء حفظ المستند قبل التعيين" @@ -18959,11 +19147,11 @@ msgstr "يرجى اختيار نوع الكيان أولا" msgid "Please select Minimum Password Score" msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18979,7 +19167,7 @@ msgstr "يرجى تحديد ملف أو URL" msgid "Please select a valid csv file with data" msgstr "يرجى تحديد ملف CSV ساري المفعول مع البيانات" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "الرجاء تحديد مرشح تاريخ صالح" @@ -18987,7 +19175,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح" msgid "Please select applicable Doctypes" msgstr "يرجى اختيار الأساليب المناسبة" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة" @@ -19017,11 +19205,11 @@ msgstr "يرجى وضع عنوان البريد الإلكتروني" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "يرجى تعيين تعيين طابعة لتنسيق الطباعة هذا في "إعدادات الطابعة"" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "يرجى تعيين المرشحات" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "الرجاء تعيين قيمة عوامل التصفية في جدول تصفية التقرير." @@ -19045,7 +19233,7 @@ msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصاد msgid "Please setup a message first" msgstr "يرجى إعداد رسالة أولاً" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19057,7 +19245,7 @@ msgstr "" msgid "Please specify" msgstr "رجاء حدد" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19094,14 +19282,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19147,7 +19340,7 @@ msgstr "بوابة عنصر القائمة" msgid "Portal Settings" msgstr "إعدادات البوابة" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "صورة" @@ -19191,6 +19384,10 @@ msgstr "مشاركات {0}" msgid "Posts filed under {0}" msgstr "الوظائف المقدمة في إطار {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19250,15 +19447,15 @@ msgstr "" msgid "Prepared Report User" msgstr "إعداد تقرير المستخدم" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "إعداد التقرير" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19279,8 +19476,6 @@ msgstr "اضغط على إنتر للحفظ" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19325,7 +19520,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19396,16 +19591,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "طباعة" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "طباعة" @@ -19460,6 +19655,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19470,6 +19670,10 @@ msgstr "تنسيق الطباعة مساعدة" msgid "Print Format Type" msgstr "نوع تنسيق الطباعة" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "تم تعطيل تنسيق الطباعة {0}" @@ -19501,11 +19705,11 @@ msgstr "اخفاء الطباعة" msgid "Print Hide If No Value" msgstr "طباعة إخفاء إذا لا قيمة" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "لغة الطباعة" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "طباعة المرسلة إلى الطابعة!" @@ -19523,7 +19727,7 @@ msgstr "ملقم الطباعة" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "إعدادات الطباعة" @@ -19633,6 +19837,10 @@ msgstr "خاص" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19643,7 +19851,7 @@ msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "المتابعة على أية حال" @@ -19668,7 +19876,7 @@ msgstr "" msgid "Progress" msgstr "تقدم" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "مشروع" @@ -19755,6 +19963,10 @@ msgstr "جمهور" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19763,14 +19975,7 @@ msgstr "" msgid "Publish" msgstr "نشر" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19778,7 +19983,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19902,7 +20106,7 @@ msgstr "رمز الاستجابة السريعة" msgid "QR Code for Login Verification" msgstr "رمز الاستجابة السريعة لتسجيل الدخول" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "فشل علبة QZ:" @@ -19999,7 +20203,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "قائمة الانتظار" @@ -20022,19 +20225,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20124,7 +20319,7 @@ msgstr "تقييم" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "أوامر الخام" @@ -20159,7 +20354,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "رد: {0}" @@ -20235,7 +20430,7 @@ msgstr "قراءة من قبل المتلقي" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20255,7 +20450,7 @@ msgstr "" msgid "Reason" msgstr "سبب" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "إعادة بناء" @@ -20401,12 +20596,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20620,11 +20815,11 @@ msgid "Referrer" msgstr "المرجع" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20663,7 +20858,7 @@ msgstr "" msgid "Refreshing..." msgstr "يحديث ..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "سجل لكن المعوقين" @@ -20712,7 +20907,7 @@ msgstr "إعادة ربط" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "تحديث" @@ -20743,7 +20938,7 @@ msgstr "تذكر آخر مختارة القيمة" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20825,7 +21020,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20853,7 +21048,7 @@ msgstr "" msgid "Reopen" msgstr "إعادة فتح" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "كرر" @@ -20953,6 +21148,8 @@ msgstr "الرد على الجميع" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20968,8 +21165,11 @@ msgstr "الرد على الجميع" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "تقرير" @@ -21038,7 +21238,7 @@ msgstr "مدير التقارير" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "تقرير الاسم" @@ -21090,11 +21290,11 @@ msgstr "لا يحتوي التقرير على بيانات ، يرجى تعدي msgid "Report has no numeric fields, please change the Report Name" msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21102,7 +21302,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "تم تحديث التقرير بنجاح" @@ -21110,7 +21310,7 @@ msgstr "تم تحديث التقرير بنجاح" msgid "Report was not saved (there were errors)" msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي." @@ -21123,7 +21323,7 @@ msgstr "تقرير {0}" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "تقرير غير مفعلة {0}" @@ -21146,7 +21346,7 @@ msgstr "تقارير" msgid "Reports & Masters" msgstr "التقارير والماجستير" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "التقارير موجودة بالفعل في قائمة الانتظار" @@ -21331,6 +21531,31 @@ msgstr "إعادة تعيين إلى الإعدادات الافتراضية" msgid "Reset your password" msgstr "اعد ضبط كلمه السر" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21456,10 +21681,8 @@ msgstr "سحب" msgid "Revoked" msgstr "إلغاء" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21562,7 +21785,7 @@ msgstr "اذونات الصلاحيات" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" @@ -21596,7 +21819,7 @@ msgstr "" msgid "Role and Level" msgstr "مستوى الصلاحية" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21670,7 +21893,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21684,7 +21906,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21711,7 +21932,7 @@ msgstr "إعادة توجيه الطريق" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "صف" @@ -21802,7 +22023,7 @@ msgstr "قاعدة" msgid "Rule Conditions" msgstr "شروط القاعدة" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21991,12 +22212,12 @@ msgstr "السبت" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22023,7 +22244,7 @@ msgstr "حفظ باسم" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "احفظ التقرير" @@ -22042,7 +22263,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22087,32 +22308,17 @@ msgstr "مسح رمز الاستجابة السريعة وأدخل رمز الن #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "من المقرر" @@ -22146,17 +22352,6 @@ msgstr "نوع الوظيفة المجدولة" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "من المقرر أن ترسل" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "تم تحديث التنفيذ المجدول للنص {0}" @@ -22225,6 +22420,11 @@ msgstr "" msgid "Scopes" msgstr "نطاقات" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22368,6 +22568,11 @@ msgstr "بحث..." msgid "Searching ..." msgstr "جاري البحث ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22415,7 +22620,7 @@ msgstr "إعدادات الأمان" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "عرض جميع التقارير السابقة" @@ -22483,8 +22688,8 @@ msgstr "حدد" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22500,7 +22705,7 @@ msgid "Select Column" msgstr "حدد العمود" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "تحديد الأعمدة" @@ -22550,7 +22755,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "اختر المجال" @@ -22621,7 +22826,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "حدد تنسيق طباعة" @@ -22713,13 +22918,13 @@ msgstr "اختر أتلست سجل 1 للطباعة" msgid "Select atleast 2 actions" msgstr "حدد على الأقل 2 الإجراءات" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "حدد عنصر القائمة" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "حدد عناصر قائمة متعددة" @@ -22757,9 +22962,7 @@ msgstr "حدد {0}" msgid "Self approval is not allowed" msgstr "الموافقة الذاتية غير مسموح بها" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "إرسال" @@ -22790,11 +22993,6 @@ msgstr "إرسال تنبيه في" msgid "Send Email Alert" msgstr "إرسال تنبيه عبر البريد الإلكتروني" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22842,7 +23040,7 @@ msgstr "أرسل الآن" msgid "Send Print as PDF" msgstr "إرسال الطباعة بصيغة PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "إرسال مقروءة إيصال" @@ -22852,38 +23050,16 @@ msgstr "إرسال مقروءة إيصال" msgid "Send System Notification" msgstr "إرسال إشعار النظام" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "أرسل إلى جميع المعينين" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "إرسال رابط إلغاء الإشتراك" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "إرسال رسالة ترحيبية" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22927,14 +23103,10 @@ msgstr "إرسال الاستفسارات إلى عنوان البريد الإ msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "أرسل لي نسخة" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22950,19 +23122,15 @@ msgstr "إرسال رسالة إلغاء الاشتراك في البريد ال #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "مرسل" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "البريد الإلكتروني المرسل" @@ -22979,9 +23147,7 @@ msgid "Sender Field should have Email in options" msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -23001,18 +23167,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "إرسال" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23020,8 +23177,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "أرسلت" @@ -23091,7 +23246,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}" msgid "Server Action" msgstr "عمل الخادم" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطأ في الخادم" @@ -23110,7 +23265,7 @@ msgstr "خادم IP" msgid "Server Script" msgstr "خادم النصي" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23149,15 +23304,15 @@ msgstr "إعدادات الجلسة الافتراضية" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "الجلسة الافتراضية" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "تم حفظ الإعدادات الافتراضية للجلسة" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "انتهت الجلسة" @@ -23189,7 +23344,7 @@ msgstr "مجموعة" msgid "Set Banner from Image" msgstr "تعيين ترويسة من الصورة" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "مجموعة الرسم البياني" @@ -23215,7 +23370,7 @@ msgstr "ضبط المرشحات" msgid "Set Filters for {0}" msgstr "تعيين عوامل التصفية لـ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23387,7 +23542,7 @@ msgstr "إعداد النظام الخاص بك" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23433,7 +23588,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "الإعداد التلقائي البريد الإلكتروني" @@ -23522,6 +23677,8 @@ msgstr "اختصارات" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "تبين" @@ -23548,6 +23705,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "إظهار التقويم" @@ -23628,7 +23791,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "فواصل عرض الخط بعد الأقسام" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23665,6 +23828,12 @@ msgstr "إظهار معاينة المنبثقة" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23691,8 +23860,14 @@ msgstr "عرض عناوين القسم" msgid "Show Sidebar" msgstr "مشاهدة الشريط الجانبي" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "أضهر العلامات" @@ -23721,6 +23896,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "إظهار التحذيرات" @@ -23774,6 +23955,12 @@ msgstr "إظهار شكل كامل بدلاً من إدخال سريع مشرو msgid "Show in Module Section" msgstr "تظهر في القسم وحدة" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23854,12 +24041,12 @@ msgstr "الشريط الجانبي وتعليقات" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "تم تعطيل الاشتراك" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "سجل" @@ -23945,8 +24132,10 @@ msgstr "تخطى" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "تجاهل حق الوصول" @@ -24110,6 +24299,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "لينة المرتجعة" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24177,7 +24376,7 @@ msgstr "يجب أن يكون حقل نوع {0} لFIELDNAME صحيح" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24267,7 +24466,7 @@ msgstr "" msgid "Standard" msgstr "اساسي" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24283,7 +24482,7 @@ msgstr "المعيار غير محدد" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "لا يمكن تحديث تنسيق الطباعة القياسية" @@ -24407,7 +24606,7 @@ msgstr "يبدأ يوم" #: frappe/workflow/doctype/workflow_state/workflow_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "حالة" +msgstr "" #: frappe/public/js/workflow_builder/components/Properties.vue:24 msgid "State Properties" @@ -24470,7 +24669,6 @@ msgstr "الفاصل الزمني للإحصائيات" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24495,7 +24693,6 @@ msgstr "الفاصل الزمني للإحصائيات" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24506,7 +24703,7 @@ msgstr "الفاصل الزمني للإحصائيات" msgid "Status" msgstr "الحالة" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "تم تحديث الحالة" @@ -24636,8 +24833,6 @@ msgstr "مجال فرعي" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24646,10 +24841,9 @@ msgstr "مجال فرعي" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "موضوع" @@ -24688,7 +24882,7 @@ msgstr "" msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "تسجيل" @@ -24746,7 +24940,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة." msgid "Submit this document to confirm" msgstr "إرسال هذه الوثيقة إلى تأكيد" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "إرسال {0} وثائق؟" @@ -24840,7 +25034,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "نجاح! أنت جيد للذهاب 👍" @@ -24895,7 +25089,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "اسم المستخدم اقترح: {0}" @@ -24908,7 +25102,7 @@ msgstr "اسم المستخدم اقترح: {0}" msgid "Sum" msgstr "مجموع" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "مجموع {0}" @@ -25017,7 +25211,7 @@ msgstr "المزامنة" msgid "Syncing {0} of {1}" msgstr "مزامنة {0} من {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25195,6 +25389,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25254,6 +25449,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25324,7 +25524,7 @@ msgstr "" msgid "Table updated" msgstr "الجدول محدث" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "جدول {0} لا يمكن أن يكون فارغا" @@ -25432,7 +25632,7 @@ msgstr "تحذيرات القالب" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "موقوف مؤقتا" @@ -25451,10 +25651,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "تم إرسال بريد إلكتروني تجريبي إلى {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "إختبار_المجلد" @@ -25520,10 +25716,6 @@ msgstr "شكرا لك على بريدك الالكتروني" msgid "Thank you for your feedback!" msgstr "شكرا لك على ملاحظاتك!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "شكرا لك على اهتمامك في الاشتراك في تحديثاتنا" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25588,7 +25780,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "المصدر الذي تبحث عنه غير متاح\\n
\\nThe resource you are looking for is not available" @@ -25724,7 +25916,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25785,7 +25977,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25814,7 +26006,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "هناك بعض المشاكل مع رابط الملف: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25838,7 +26030,7 @@ msgstr "كانت هناك أخطاء" msgid "There were errors while creating the document. Please try again." msgstr "كانت هناك أخطاء أثناء إنشاء المستند. حاول مرة اخرى." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى." @@ -25852,6 +26044,12 @@ msgstr "كانت هناك بعض الأخطاء التي تحدد الاسم، msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25877,7 +26075,7 @@ msgstr "إثبات أصالة الطرف الثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "وهذا المجلس كانبان يكون القطاع الخاص" @@ -25901,7 +26099,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "هذا الإجراء مسموح به فقط لـ {}" @@ -25928,7 +26126,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25944,7 +26142,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "تم تعديل هذا المستند بالفعل ، ولا يمكنك تعديله مرة أخرى" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -26005,7 +26203,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "هذا يذهب فوق عرض الشرائح." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة." @@ -26061,15 +26259,7 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة" msgid "This month" msgstr "هذا الشهر" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26077,7 +26267,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "تم إنشاء هذا التقرير في {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "تم إنشاء هذا التقرير {0}." @@ -26143,7 +26333,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "مخنوق" @@ -26181,7 +26371,6 @@ msgstr "الخميس" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "زمن" @@ -26407,10 +26596,8 @@ msgid "Title of the page" msgstr "عنوان الصفحة" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "إلى" @@ -26458,7 +26645,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "
" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26494,7 +26681,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "للحصول على التقرير المحدّث ، انقر على {0}." @@ -26569,7 +26756,7 @@ msgstr "تبديل عرض الشبكة" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" @@ -26590,6 +26777,12 @@ msgstr "رمز" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26617,7 +26810,7 @@ msgstr "" msgid "Too Many Requests" msgstr "طلبات كثيرة جدا" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26625,7 +26818,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة" @@ -26687,9 +26880,9 @@ msgstr "" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "الاجمالي غير شامل الضريبة" @@ -26715,16 +26908,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "إجمالي عدد المشتركين" @@ -26733,11 +26918,6 @@ msgstr "إجمالي عدد المشتركين" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26823,7 +27003,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26870,7 +27050,7 @@ msgstr "التحولات" msgid "Translatable" msgstr "للترجمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26903,6 +27083,11 @@ msgstr "ترجمة" msgid "Translations" msgstr "ترجمة" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27124,33 +27309,65 @@ msgstr "عنوان URL للتوثيق أو المساعدة" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "عنوان URL للصفحة" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "عنوان URL للانتقال إليه عند النقر فوق صورة عرض الشرائح" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27183,7 +27400,7 @@ msgstr "تعذر فتح الملف المرفق. هل تم تصديره ك CSV؟ msgid "Unable to read file format for {0}" msgstr "تعذر قراءة تنسيق الملف {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27200,7 +27417,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}" msgid "Unassign Condition" msgstr "إلغاء تعيين الشرط" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27208,16 +27425,20 @@ msgstr "" msgid "Unchanged" msgstr "دون تغيير" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "الغاء المتابعة" @@ -27240,6 +27461,13 @@ msgstr "" msgid "Unique" msgstr "فريد من نوعه" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "غير معروف" @@ -27248,7 +27476,7 @@ msgstr "غير معروف" msgid "Unknown Column: {0}" msgstr "عمود غير معروف: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27295,7 +27523,7 @@ msgstr "" msgid "Unshared" msgstr "غير مشارك" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "إلغاء الاشتراك" @@ -27315,10 +27543,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "إلغاء اشتراكك" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "عمود بلا عنوان" @@ -27441,7 +27674,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉" msgid "Updated successfully" msgstr "تم التحديث بنجاح" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "يتم التحديث" @@ -27719,7 +27952,7 @@ msgstr "المستخدم لا يستطيع أن ينشئ" msgid "User Cannot Search" msgstr "المستخدم لا يستطيع أن يبحث" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27825,12 +28058,12 @@ msgstr "إذن المستخدم" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "ضوابط المستخدم" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "ضوابط المستخدم" @@ -27931,15 +28164,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "المستخدم {0} لا يمكن حذف" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "المستخدم {0} لا يمكن تعطيل" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "المستخدم {0} لا يمكن إعادة تسمية" @@ -27960,7 +28193,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "طلب المستخدم {0} حذف البيانات" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27989,7 +28222,7 @@ msgstr "" msgid "Username" msgstr "اسم االمستخدم" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "اسم المستخدم {0} موجود بالفعل" @@ -28129,15 +28362,15 @@ msgstr "تم تغير القيمة" msgid "Value To Be Set" msgstr "قيمة ليتم تعيينها" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "لا يمكن تغير القيمة ل {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "لا يمكن أن تكون القيمة سالبة لـ" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}" @@ -28163,6 +28396,12 @@ msgstr "سيتم تعيين القيمة من هذا الحقل كتاريخ ا msgid "Value must be one of {0}" msgstr "يجب أن تكون القيمة واحدة من {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28176,7 +28415,7 @@ msgstr "قيمة كبيرة جدا" msgid "Value {0} missing for {1}" msgstr "القيمة {0} مفقودة لـ {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "يجب أن تكون القيمة {0} بتنسيق المدة الصالح: dhms" @@ -28256,7 +28495,7 @@ msgstr "" msgid "View All" msgstr "عرض الكل" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28500,7 +28739,7 @@ msgstr "صفحة على الإنترنت" msgid "Web Page Block" msgstr "كتلة صفحة الويب" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28543,6 +28782,7 @@ msgstr "عرض ويب" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28601,7 +28841,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28609,9 +28848,7 @@ msgid "Website" msgstr "الموقع" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "تحليلات الموقع" @@ -28811,11 +29048,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "رسالة الترحيب تم أرسالها" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "أهلا وسهلا بك إلى {0}" @@ -28901,7 +29138,7 @@ msgstr "سيتم عرض فقط إذا تم تمكين عناوين المقطع" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "مع رئيس رسالة" @@ -29042,12 +29279,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29169,7 +29406,7 @@ msgstr "حقول محور Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y الميدان" @@ -29230,7 +29467,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "نعم" @@ -29270,11 +29507,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29297,7 +29534,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "غير مسموح لك بتصدير النمط {}" @@ -29305,11 +29542,11 @@ msgstr "غير مسموح لك بتصدير النمط {}" msgid "You are not allowed to print this report" msgstr "لا يسمح لك بطباعة هذا التقرير" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه" @@ -29325,7 +29562,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "لا يسمح لك بالوصول إلى هذه الصفحة." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29333,7 +29570,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "أنت الآن تتبع هذا المستند. سوف تتلقى التحديثات اليومية عبر البريد الإلكتروني. يمكنك تغيير هذا في إعدادات المستخدم." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29378,7 +29615,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29420,7 +29657,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك." @@ -29497,11 +29734,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29509,19 +29750,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "ليس لديك أذونات لإلغاء كافة المستندات المرتبطة." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "ليس لديك حق الوصول إلى التقرير: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "ليس لديك إذن للحصول على تقرير عن: {0}" @@ -29586,15 +29827,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29614,7 +29855,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "عليك أن تكون في وضع المطور لتعديل نموذج ويب قياسي" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية." @@ -29697,7 +29938,7 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29738,11 +29979,11 @@ msgstr "تم قفل حسابك وسيتم استئنافه بعد {0} ثانية msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "تمت إزالة واجبك في {0} {1} بواسطة {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29762,11 +30003,11 @@ msgstr "" msgid "Your login id is" msgstr "معرف تسجيل الدخول الخاص بك هو" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29780,7 +30021,7 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة." @@ -29792,7 +30033,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "صفر" @@ -29816,7 +30057,7 @@ msgstr "" msgid "_report" msgstr "_تقرير" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29839,7 +30080,7 @@ msgstr "أدخل_بعد" msgid "amend" msgstr "تعديل" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "و" @@ -29896,8 +30137,8 @@ msgstr "إنشاء" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "د" @@ -30011,7 +30252,7 @@ msgstr "البريد الإلكتروني" msgid "email inbox" msgstr "البريد الوارد" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "فارغة" @@ -30063,8 +30304,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "ح" @@ -30097,7 +30338,7 @@ msgstr "" msgid "just now" msgstr "الآن فقط" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30137,8 +30378,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "م" @@ -30327,8 +30568,8 @@ msgstr "استجابة" msgid "restored {0} as {1}" msgstr "استعادة {0} ك {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "س" @@ -30621,7 +30862,7 @@ msgstr "" msgid "{0} Report" msgstr "{0} تقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30662,7 +30903,7 @@ msgstr "{0} غير مشترك أصلاً" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} تم إلغاء الاشتراك في {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} و {1}" @@ -30670,7 +30911,7 @@ msgstr "{0} و {1}" msgid "{0} are currently {1}" msgstr "{0} حاليًا {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} مطلوبة" @@ -30700,7 +30941,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30768,7 +31009,11 @@ msgstr "{0} غير موجود في الصف {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خاصة مثل {1}" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30788,11 +31033,7 @@ msgstr "{0} ح" msgid "{0} has already assigned default value for {1}." msgstr "{0} قام بالفعل بتعيين القيمة الافتراضية لـ {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} تركت محادثة في {1} {2}" @@ -30862,6 +31103,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} إلزامي" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30883,7 +31128,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address" @@ -30891,11 +31136,11 @@ msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Emai msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} ليس اسمًا صالحًا" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} ليس رقم هاتف صالحًا" @@ -30903,15 +31148,15 @@ msgstr "{0} ليس رقم هاتف صالحًا" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تنسيق التقرير مما يلي {1}" @@ -30935,7 +31180,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1}" @@ -30945,7 +31190,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} مطلوب" @@ -30958,11 +31204,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} العناصر المحددة" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30995,23 +31241,23 @@ msgstr "قبل {0} دقائق" msgid "{0} months ago" msgstr "قبل {0} أشهر" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} يجب أن يكون بعد {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} يجب أن يكون واحدا من {1}" @@ -31023,7 +31269,7 @@ msgstr "يجب تعيين {0} أولا" msgid "{0} must be unique" msgstr "{0} يجب أن تكون فريدة من نوعها" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31052,16 +31298,12 @@ msgstr "{0} من {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} أو {1}" @@ -31098,11 +31340,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "تم حفظ {0} بنجاح" @@ -31144,7 +31386,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "{0} مشتركين تم اضافتهم" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} لإيقاف تلقي رسائل البريد الإلكتروني من هذا النوع" @@ -31214,11 +31456,11 @@ msgstr "{0} {1} غير موجود ، حدد هدفا جديدا لدمج" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} غير موجود" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً." @@ -31331,7 +31573,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: تم تعيين {1} على الحالة {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ضد {2}" @@ -31367,11 +31609,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na msgid "{} Complete" msgstr "{} اكتمال" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31393,7 +31635,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} ليست سلسلة تاريخ صالحة." diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po index 252770ba90..3fb8e5e99c 100644 --- a/frappe/locale/bs.po +++ b/frappe/locale/bs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}" msgid "'Recipients' not specified" msgstr "'Primaoci' nisu navedeni" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" @@ -141,7 +141,7 @@ msgstr "1 Dan" msgid "1 Google Calendar Event synced." msgstr "Sinhroniziran je 1 događaj iz Google Kalendara." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Izvještaj" @@ -149,7 +149,7 @@ msgstr "1 Izvještaj" msgid "1 comment" msgstr "1 komentar" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "prije 1 dan" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -180,37 +180,37 @@ msgstr "1 od 2" msgid "1 record will be exported" msgstr "1 zapis će biti eksportiran" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "prije 1 sedmicu" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "prije 2 sedmice" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -226,7 +226,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "prije 5 dana" @@ -708,11 +708,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Zdravo," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Izvještaji & Pristup" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Upozorenje: Ovo polje generiše sistem i može biti prebrisano budućim ažuriranjem. Umjesto toga promijenite ga pomoću {0}." @@ -739,6 +734,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slova, brojeva, razmaka, donjih crta i crtica" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "Instanca Sistema može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri." + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Istaknuta objava mora imati naslovnu sliku" @@ -773,6 +773,15 @@ msgstr "Simbol za ovu valutu. Za npr. $" msgid "A template already exists for field {0} of {1}" msgstr "Šablon već postoji za polje {0} od {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "Niz identifikatora verzije za klijentski softver.\n" +"
\n" +"Vrijednost treba promijeniti pri svakom ažuriranju klijentskog softvera s istim ID softvera." + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Riječ samu po sebi lako je pogoditi." @@ -1017,7 +1026,6 @@ msgstr "Tačan broj nije moguće preuzeti, klikni ovdje da biste vidjeli sve dok #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1034,7 +1042,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1083,10 +1091,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Radnje" @@ -1148,8 +1156,8 @@ msgstr "Zapisnik Aktivnosti" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Dodaj" @@ -1166,7 +1174,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj Novo Pravilo" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj Prilog" @@ -1190,7 +1198,7 @@ msgstr "Dodaj Ivicu na Vrh" msgid "Add Card to Dashboard" msgstr "Dodaj Karticu na Nadzornu Tablu" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Dodaj Grafikon na Nadzornu Tablu" @@ -1199,8 +1207,8 @@ msgid "Add Child" msgstr "Dodaj Podređeni" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1236,7 +1244,7 @@ msgid "Add Gray Background" msgstr "Dodaj Sivu Pozadinu" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Dodaj Grupu" @@ -1261,7 +1269,7 @@ msgstr "Dodaj Učesnike" msgid "Add Query Parameters" msgstr "Dodaj Parametre Upita" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Dodaj Uloge" @@ -1271,7 +1279,7 @@ msgstr "Dodaj Red" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Dodaj Potpis" @@ -1294,12 +1302,12 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Dodaj Šablon" @@ -1406,7 +1414,7 @@ msgid "Add tab" msgstr "Dodaj karticu" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Dodaj na Nadzornu Tablu" @@ -1424,7 +1432,7 @@ msgstr "Dodajte ovoj aktivnosti slanjem e-pošte na adresu {0}" #: frappe/public/js/frappe/views/kanban/kanban_column.html:20 msgid "Add {0}" -msgstr "{0}" +msgstr "Dodaj {0}" #: frappe/public/js/frappe/list/list_view.js:286 msgctxt "Primary action in list view" @@ -1561,11 +1569,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1673,6 +1681,14 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i Obavještenja" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias ne može biti SQL ključna riječ: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Alias mora biti niz" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1713,7 +1729,6 @@ msgstr "Poravnaj Vrijednost" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -2044,6 +2059,12 @@ msgstr "Dozvoljeno u Spominjanju" msgid "Allowed Modules" msgstr "Dozvoljeni Moduli" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Dozvoljeni Javni Izvori Klijenta" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2060,7 +2081,43 @@ msgstr "Dozvoljeno ugrađivanje domena" msgid "Allowing DocType, DocType. Be careful!" msgstr "Dopuštanje DocType, DocType. Budite pažljivi!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-authorization-server. Referenca: RFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-protected-resource. Referenca: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Omogućava klijentima da se registruju bez ručne intervencije. Registracija kreira OAuth Client unos. Referenca: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Omogućava klijentima da ovo vide kao autorizacijski server prilikom upita krajnjoj tački /.well-known/oauth-protected-resource." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na društvene mreže kao servera za autorizaciju." + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "Omogućava preskakanje autorizacije ako korisnik ima aktivne tokene." + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Već Registrovan" @@ -2151,7 +2208,7 @@ msgstr "Izmjena" msgid "Amendment Naming Override" msgstr "Zaobiđi izmjenu Imenovanja" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Izmjena nije Dozvoljena" @@ -2159,7 +2216,7 @@ msgstr "Izmjena nije Dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila Izmjene Imenovanje ažurirana" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije" @@ -2240,16 +2297,6 @@ msgstr "Osim Upravitelja Sistema, uloge s pravom Postavi korisničke dozvole mog msgid "App" msgstr "Aplikacija" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "ID Aplikacije Klijenta" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Tajna Aplikacije Klijenta" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2263,21 +2310,24 @@ msgstr "Logotip aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Naziv Aplikacije" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Naziv Aplikacije (Ime Klijenta)" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "Aplikacija nije pronađena za modul: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "Aplikacija {0} nije instalirana" @@ -2342,7 +2392,7 @@ msgstr "Primijenjeno na" msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2423,7 +2473,7 @@ msgstr "Arhivirano" msgid "Archived Columns" msgstr "Arhivirane Kolone" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2455,7 +2505,7 @@ msgstr "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s po msgid "Are you sure you want to discard the changes?" msgstr "Jeste li sigurni da želite odbaciti promjene?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Jeste li sigurni da želite generisati novi izvještaj?" @@ -2491,10 +2541,6 @@ msgstr "Jeste li sigurni da želite poništiti sve prilagodbe?" msgid "Are you sure you want to save this document?" msgstr "Jeste li sigurni da želite spremiti ovaj dokument?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Jeste li sigurni da sada želite poslati ovaj bilten?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2527,16 +2573,16 @@ msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom msgid "Assign Condition" msgstr "Dodijeli Uslov" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Dodijeli Korisničkoj Grupi" @@ -2688,7 +2734,7 @@ msgstr "Barem jedno polje vrste nadređenog dokumenta je obavezno" msgid "Attach" msgstr "Priloži" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Priloži Ispis Dokumenta" @@ -2748,9 +2794,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Priloženo Imenu mora biti niz ili cijeli broj" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Prilog" @@ -2777,20 +2821,17 @@ msgid "Attachment Removed" msgstr "Prilog Uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Pokušaj povezivanja na QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Pokušaj pokretanja QZ Tray..." @@ -2798,11 +2839,6 @@ msgstr "Pokušaj pokretanja QZ Tray..." msgid "Attribution" msgstr "Pripisivanje" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Publika" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2847,6 +2883,11 @@ msgstr "Autentifikacija nije uspjela prilikom primanja e-pošte sa naloga e-poš msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Autorizacija" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3081,7 +3122,7 @@ msgstr "Avatar" msgid "Average" msgstr "Prosjek" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Prosjek {0}" @@ -3186,7 +3227,7 @@ msgstr "B9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3229,7 +3270,7 @@ msgstr "Pozadinska Slika" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Poslovi u Pozadini" @@ -3834,7 +3875,7 @@ msgstr "OTKAZANO" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3957,10 +3998,8 @@ msgstr "Naziv Povratnog Poziva" msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4027,7 +4066,7 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4045,11 +4084,7 @@ msgstr "Otkaži" msgid "Cancel All Documents" msgstr "Otkaži Sve Dokumente" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Otkaži Planiranje" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" @@ -4116,11 +4151,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" msgid "Cannot cancel {0}." msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" @@ -4148,7 +4183,7 @@ msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika" msgid "Cannot delete Home and Attachments folders" msgstr "Nije moguće izbrisati mape Početna i Prilozi" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}" @@ -4203,7 +4238,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Nije moguće uređivati otkazani dokument" @@ -4240,7 +4275,7 @@ msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tabelu sa više od 5000 redova." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4285,7 +4320,7 @@ msgstr "Nije moguće ažurirati {0}" msgid "Cannot use sub-query in order by" msgstr "Nije moguće koristiti podupit po redoslijedu" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4311,7 +4346,7 @@ msgstr "Numerička Kartica" msgid "Card Break" msgstr "Prijelom Kartice" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Oznaka Kartice" @@ -4342,10 +4377,6 @@ msgstr "Opis Kategorije" msgid "Category Name" msgstr "Naziv Kategorije" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Cent" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4454,7 +4485,7 @@ msgstr "Konfiguracija Grafikona" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Naziv Grafikona" @@ -4511,10 +4542,6 @@ msgstr "Provjeri" msgid "Check Request URL" msgstr "Provjeri URL zahtjeva" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Provjeri neispravne veze" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Označite kolone za odabir, povucite da postavite redoslijed." @@ -4538,10 +4565,6 @@ msgstr "Označite ovo ako želite prisiliti korisnika da odabere seriju prije sp msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "Označite za prikaz pune numeričke vrijednosti (npr. 1.234.567 umjesto 1,2 miliona)." -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Provjera neispravnih veza..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Provjerava se samo trenutak" @@ -4588,6 +4611,10 @@ msgstr "Podređena tabela {0} za polje {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka." + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Odaberi postojeću karticu ili kreiraj novu karticu" @@ -4627,15 +4654,19 @@ msgstr "Grad/Mjesto" msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Očisti & Dodaj Šablon" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Očisti & Dodaj Šablon" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Obriši Sve" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4661,7 +4692,7 @@ msgstr "Očisti Zapisnike Nakon (dana)" msgid "Clear User Permissions" msgstr "Obriši Korisničke Dozvole" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Obrišite poruku e-pošte i dodajte šablon" @@ -4677,10 +4708,6 @@ msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet" msgid "Click here" msgstr "Klikni ovdje" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Klikni ovdje za potvrdu" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Klikni na datoteku da biste je odabrali." @@ -4760,8 +4787,10 @@ msgid "Client Credentials" msgstr "Akreditivi Klijenta" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "ID Klijenta" @@ -4777,6 +4806,12 @@ msgstr "Id. Klijenta" msgid "Client Information" msgstr "Informacije o Klijentu" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Metapodaci Klijenta" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4789,13 +4824,32 @@ msgstr "Klijent Skripta" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Tajna Klijenta" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Osnovna Tajna Klijenta" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Upis Tajne Klijenta" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "URI Klijenta" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4880,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -4935,7 +4989,7 @@ msgstr "Sklopivo Zavisi Od (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5022,11 +5076,11 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Kolone zasnovane na" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombinacija tipa odobrenja ({0}) i tipa odgovora ({1}) nije dozvoljena" @@ -5185,7 +5239,7 @@ msgstr "Završeno" msgid "Complete By" msgstr "Završeno Do" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Završi Registraciju" @@ -5275,6 +5329,12 @@ msgstr "Opis Stanja" msgid "Conditions" msgstr "Uslovi" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Konfiguracija" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5313,7 +5373,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5322,7 +5382,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Potvrdi" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Potvrdi Pristup" @@ -5335,7 +5395,7 @@ msgstr "Potvrdi Brisanje Računa" msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Potvrdi Lozinku" @@ -5344,17 +5404,12 @@ msgstr "Potvrdi Lozinku" msgid "Confirm Request" msgstr "Potvrdi Zahtjev" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Potvrdi vašu e-poštu" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Šablon e-pošte Potvrde" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Potvrđeno" @@ -5381,8 +5436,8 @@ msgstr "Povezana Aplikacija" msgid "Connected User" msgstr "Povezani Korisnik" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Povezano na QZ Tray!" @@ -5474,6 +5529,11 @@ msgstr "Postavke Kontaktirajte nas" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Opcije za Kontakt, kao što su \"Upit za Prodaju, Upit za Podršku\" itd., svaka u novom redu ili odvojena zarezima." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakti" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Sadrži {0} sigurnosnu ispravku" @@ -5485,8 +5545,6 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5494,8 +5552,7 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5519,10 +5576,8 @@ msgstr "Sadržaj (Markdown)" msgid "Content Hash" msgstr "Hash Sadržaja" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5579,7 +5634,7 @@ msgstr "Status Doprinosa" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Kontrolira mogu li se novi korisnici prijaviti pomoću ovog ključa prijave putem društvenih mreža. Ako se ne postavljaju, poštuju se Postavke Web Stranice." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Kopirano u Međuspremnik." @@ -5595,7 +5650,7 @@ msgstr "Kopiraj ugrađen kod" msgid "Copy error to clipboard" msgstr "Greška pri kopiranju u međuspremnik" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" @@ -5620,7 +5675,7 @@ msgstr "Ispravna verzija:" msgid "Could not connect to outgoing email server" msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Nije moguće pronaći {0}" @@ -5628,6 +5683,10 @@ msgstr "Nije moguće pronaći {0}" msgid "Could not map column {0} to field {1}" msgstr "Nije moguće mapirati kolonu {0} na polje {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "Nije moguće parsirati polje: {0}" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Nije moguće pokrenuti: " @@ -5644,7 +5703,7 @@ msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Broj" @@ -5683,7 +5742,7 @@ msgstr "Brojač" msgid "Country" msgstr "Zemlja" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Kod Zemlje Obavezan" @@ -5715,7 +5774,7 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5729,13 +5788,13 @@ msgstr "Kreiraj & Nastavi" msgid "Create Address" msgstr "Kreiraj Adresu" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Kreiraj Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Kreiraj Grafikon" @@ -5814,11 +5873,6 @@ msgstr "+ {0}" msgid "Create a {0} Account" msgstr "+ {0} Račun" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Kreiraj i šalji e-poštu određenoj grupi pretplatnika periodično." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Kreiraj ili Uredi Format Ispisa" @@ -6167,6 +6221,10 @@ msgstr "Prilagođeni Prijevod" msgid "Custom field renamed to {0} successfully." msgstr "Prilagođeno polje uspješno je preimenovano u {0}." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili None, dobijeno {1}" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6200,12 +6258,12 @@ msgstr "Prilagođavanja za {0} eksportirana u:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6224,7 +6282,7 @@ msgstr "Prilagodi nadzornu ploču" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Prilagodi Formu" @@ -6350,7 +6408,7 @@ msgstr "Tamna Tema" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Nadzorna Tabla" @@ -6517,7 +6575,6 @@ msgstr "Verzija Baze Podataka" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6581,6 +6638,11 @@ msgstr "Dan" msgid "Day of Week" msgstr "Dan u Sedmici" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dana" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6845,15 +6907,16 @@ msgstr "Odgođeno" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Izbriši" @@ -6889,7 +6952,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Izbriši i Generiši Novi" @@ -6931,12 +6994,12 @@ msgstr "Izbriši karticu" msgid "Delete this record to allow sending to this email address" msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7160,6 +7223,7 @@ msgstr "Tema Radne Površine" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7343,8 +7407,8 @@ msgstr "Onemogući Prijave" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Onemogućeno" @@ -7353,7 +7417,7 @@ msgstr "Onemogućeno" msgid "Disabled Auto Reply" msgstr "Automatski Odgovor Onemogućen" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7514,6 +7578,7 @@ msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}
You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...

Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.

Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju." @@ -9291,6 +9360,14 @@ msgstr "Greška u Obavještenju" msgid "Error in print format on line {0}: {1}" msgstr "Greška u formatu za ispisivanje na liniji {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Greška u {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Greška pri parsiranju ugniježđenih filtera: {0}" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Greška prilikom povezivanja na račun e-pošte {0}" @@ -9456,7 +9533,7 @@ msgstr "Izvršava se Kod" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9482,11 +9559,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Eksperimentalno" @@ -9539,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9903,8 +9984,8 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9975,7 +10056,7 @@ msgstr "Polje za Praćenje" msgid "Field type cannot be changed for {0}" msgstr "Tip polja se ne može promijeniti za {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "Polje {0} ne postoji na {1}" @@ -10018,7 +10099,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Ime polja je ograničeno na 64 znaka ({0})" @@ -10034,7 +10115,7 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze." msgid "Fieldname {0} appears multiple times" msgstr "Ime polja {0} pojavljuje se više puta" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" @@ -10086,6 +10167,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10251,6 +10336,14 @@ msgstr "Filter Naziv" msgid "Filter Values" msgstr "Filter Vrijednosti" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Nedostaje uslov filtera nakon operatora: {0}" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filtriraj..." @@ -10462,7 +10555,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Prati" @@ -10470,7 +10563,7 @@ msgstr "Prati" msgid "Followed by" msgstr "Praćen od" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:" @@ -10494,10 +10587,6 @@ msgstr "Sljedeća polja nemaju vrijednosti" msgid "Following fields have missing values:" msgstr "Sljedeća polja nemaju vrijednosti:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Sljedeće veze su prekinute u sadržaju e-pošte: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10659,7 +10748,7 @@ msgstr "Za Korisnika" msgid "For Value" msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." @@ -10915,15 +11004,13 @@ msgid "Friday" msgstr "Petak" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Od" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Od" @@ -10939,7 +11026,7 @@ msgstr "Od Datuma" msgid "From Date Field" msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Od Dokumenta" @@ -10990,7 +11077,7 @@ msgstr "Puna Širina" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Funkcija" @@ -10999,10 +11086,14 @@ msgstr "Funkcija" msgid "Function Based On" msgstr "Funkcija zasnovana na" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na bijeloj listi." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'" @@ -11064,7 +11155,7 @@ msgstr "Općenito" msgid "Generate Keys" msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Generiši Novi Izvještaj" @@ -11072,8 +11163,8 @@ msgstr "Generiši Novi Izvještaj" msgid "Generate Random Password" msgstr "Generiši Nasumičnu Lozinku" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Generiši URL Praćenja" @@ -11188,7 +11279,7 @@ msgstr "Globalne Prečice" msgid "Global Unsubscribe" msgstr "Globalno Otkazivanje Pretplate" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Idi" @@ -11352,8 +11443,6 @@ msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0 msgid "Google Contacts Id" msgstr "Id Google Kontakata" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Disk" @@ -11390,6 +11479,7 @@ msgstr "Google Servisi" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11484,6 +11574,10 @@ msgstr "Grupiši Po Tipu" msgid "Group By field is required to create a dashboard chart" msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "Grupiraj Po mora biti niz" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Grupa" @@ -11498,7 +11592,7 @@ msgstr "Objekt Klase Grupe" msgid "Group your custom doctypes under modules" msgstr "Grupiraj vaše prilagođene tipove dokumenata pod modulima" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Grupirano po {0}" @@ -11532,7 +11626,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11546,11 +11639,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11779,7 +11871,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Ovdje je vaš URL-a za praćenje" @@ -11815,12 +11907,17 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena Polja" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "Skrivene kolone uključuju: {0}" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Sakrij" @@ -11927,7 +12024,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare" msgid "Hide Standard Menu" msgstr "Sakrij Standardni Meni" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -11982,7 +12079,7 @@ msgstr "Prvo će se primijeniti pravilo višeg prioriteta" msgid "Highlight" msgstr "Istaknuto" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Savjet: Uključi simbole, brojeve i velika slova u lozinku" @@ -12055,20 +12152,30 @@ msgstr "Satno Održavanje" msgid "Hourly rate limit for generating password reset links" msgstr "Broj veza koji se mogu kreirati po satu za poništavanje lozinke" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Sati" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Kako treba formatirati ovu valutu? Ako nije postavljeno, koristit će se standard postavke sistema" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Naziv namijenjen je za prikaz krajnjem korisniku." + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga možete kreirati samo za sebe. Kliknite na dugme Kreiraj Radni Prostor da biste ga kreirali.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12473,7 +12580,7 @@ msgstr "Polje za sliku mora biti tipa Priloži Sliku" msgid "Image link '{0}' is not valid" msgstr "Veza slike '{0}' nije važeća" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Slika optimizovana" @@ -12521,7 +12628,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12749,11 +12856,15 @@ msgstr "Uključite Teme iz Aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi Web Pregled vezu u e-poštu" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "Uključi skrivene kolone" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Uključi Uvlačenje" @@ -12820,11 +12931,11 @@ msgstr "Netačan korisnik ili lozinka" msgid "Incorrect Verification code" msgstr "Netačan Verifikacioni Kod" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Netačna vrijednost u redu {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Netačna vrijednost:" @@ -12911,7 +13022,7 @@ msgstr "Umetni Iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Umetni Poslije" @@ -12976,11 +13087,11 @@ msgstr "Instrukcije" msgid "Instructions Emailed" msgstr "Instrukcije Poslane e-poštom" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Nedovoljne Dozvole za {0}" @@ -13102,7 +13213,7 @@ msgstr "Nevažeći" msgid "Invalid \"depends_on\" expression" msgstr "Nevažeći izraz \"depends_on\"" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}" @@ -13130,7 +13241,7 @@ msgstr "Nevažeći Uslov: {}" msgid "Invalid Credentials" msgstr "Nevažeći Podaci" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Nevažeći Datum" @@ -13138,7 +13249,7 @@ msgstr "Nevažeći Datum" msgid "Invalid DocType" msgstr "Nevažeći DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Nevažeći DocType: {0}" @@ -13150,6 +13261,11 @@ msgstr "Nevažeći Naziv Polja" msgid "Invalid File URL" msgstr "Nevažeći URL Datoteke" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "Nevažeći Filter" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Nevažeći Format Filtera za polje {0} tipa {1}. Pokušajte koristiti ikonu filtera na polju da ga ispravno postavite" @@ -13162,7 +13278,7 @@ msgstr "Nevažeća Vrijednost Filtera" msgid "Invalid Home Page" msgstr "Nevažeća Početna Stranica" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Nevažeća Veza" @@ -13196,7 +13312,7 @@ msgstr "Nevažeća Opcija" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Nevažeći Server Odlazne Pošte ili port: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Nevažeći Izlazni Format" @@ -13208,13 +13324,13 @@ msgstr "Nevažeće Nadjačavanje" msgid "Invalid Parameters." msgstr "Nevažeći Parametri." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Nevažeća Lozinka" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Nevažeći Broj Telefona" @@ -13258,11 +13374,39 @@ msgstr "Nevažeća Tajna Webhooka" msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja." + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Nevažeći tip argumenta: {0}. Dozvoljeni su samo nizovi, brojevi i None." + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojevi i podvlake." + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "Nevažeći znakovi u nazivu tabele: {0}" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'." + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Nevažeći status dokumenta" @@ -13274,10 +13418,30 @@ msgstr "Nevažeći izraz postavljen u filteru {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Nevažeći izraz postavljen u filteru {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, sa povratnim ukrštanjem, kvalifikovani tabelom, aliasirani ili sa '*'." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'." + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja." + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "Nevažeći naziv polja: {0}" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "Nevažeći tip polja: {0}" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" @@ -13286,11 +13450,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" msgid "Invalid file path: {0}" msgstr "Nevažeći put datoteke: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka." + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'." + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None." + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "Nevažeći format rječnika funkcija" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13312,10 +13491,22 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Nevažeći format jednostavnog filtera: {0}" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka." + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "Nevažeći format niza literala: {0}" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Nevažeća datoteka šablona za uvoz" @@ -13723,8 +13914,8 @@ msgstr "Posao se ne izvodi." msgid "Join video conference with {0}" msgstr "Pridruži se video konferenciji sa {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Skoči na polje" @@ -13757,11 +13948,11 @@ msgstr "Kolona Oglasne Table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" @@ -14049,7 +14240,7 @@ msgstr "Oznaka je obavezna" msgid "Landing Page" msgstr "Početna Stranica" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Pejzaž" @@ -14345,7 +14536,7 @@ msgstr "Pismo" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14473,6 +14664,10 @@ msgstr "Lajkova" msgid "Limit" msgstr "Ograniči" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Granica mora biti cijeli broj koji nije negativan" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14655,7 +14850,7 @@ msgstr "Veze" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14685,7 +14880,7 @@ msgstr "Filter Liste" msgid "List Settings" msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14736,6 +14931,7 @@ msgid "Load Balancing" msgstr "Load Balancing" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14756,7 +14952,7 @@ msgstr "Učitaj više" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Učitava se" @@ -14968,6 +15164,11 @@ msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." msgid "Login with {0}" msgstr "Prijavi se sa {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "URI Logotipa" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15154,7 +15355,7 @@ msgstr "Obavezno Zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15254,11 +15455,9 @@ msgstr "Označi kao Neželjenu Poštu" msgid "Mark as Unread" msgstr "Označi kao Nepročitano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15379,7 +15578,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15447,7 +15646,6 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15460,11 +15658,10 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15475,16 +15672,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Poruka" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Poruka (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Poruka (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15511,7 +15698,7 @@ msgstr "Poruka Poslata" msgid "Message Type" msgstr "Tip Poruke" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Poruka je isječena" @@ -15589,6 +15776,12 @@ msgstr "Meta Naziv" msgid "Meta title for SEO" msgstr "Meta naslov za SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Metapodaci" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15608,7 +15801,7 @@ msgstr "Meta naslov za SEO" msgid "Method" msgstr "Metoda" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Metoda nije Dozvoljena" @@ -15658,6 +15851,11 @@ msgstr "Minimalna Vrijdnost Lozinke" msgid "Minor" msgstr "Manja" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minuta" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15697,7 +15895,7 @@ msgstr "Nedostaje Polje" msgid "Missing Fields" msgstr "Nedostajuća Polja" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Obavezni Nedostajući Filteri" @@ -15705,7 +15903,7 @@ msgstr "Obavezni Nedostajući Filteri" msgid "Missing Permission" msgstr "Nedostaje Dozvola" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Nedostaje Vrijednost" @@ -15771,7 +15969,7 @@ msgstr "Izmijenjeno Od" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16053,7 +16251,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k msgid "Must be of type \"Attach Image\"" msgstr "Mora biti tipa \"Priloži Sliku\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Mora imati dozvolu za pristup ovom izvještaju." @@ -16071,7 +16269,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16215,12 +16413,12 @@ msgstr "Šablon Navigacijske Trake" msgid "Navbar Template Values" msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Kreći se po listi prema dolje" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16239,10 +16437,14 @@ msgstr "Postavke Navigacije" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Negativna Vrijednost" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka." + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." @@ -16325,7 +16527,7 @@ msgstr "Novi Događaj" msgid "New Folder" msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Nova Oglasna Tabla" @@ -16348,10 +16550,6 @@ msgstr "Nova Pruka sa Kontaktne Web Stranice" msgid "New Name" msgstr "Novo Ime" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Novi Bilten" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Novo Obavještenje" @@ -16364,7 +16562,7 @@ msgstr "Nova Numerička Kartica" msgid "New Onboarding" msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova Lozinka" @@ -16409,7 +16607,28 @@ msgstr "Novi Naziv Radnog Toka" msgid "New Workspace" msgstr "Novi Radni Prostor" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "Lista dozvoljenih URL-ova javnih klijenata odvojenih novim redovima (npr. https://frappe.io), ili * za prihvatanje svih.\n" +"
\n" +"Javni klijenti su standardno ograničeni." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Lista vrijednosti opsega odvojena novim redom." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Lista stringova odvojenih novim redovima predstavlja načine kontaktiranja osoba odgovornih za ovog klijenta, obično adrese e-pošte." + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Nova lozinka ne može biti ista kao stara lozinka" @@ -16433,7 +16652,7 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16441,19 +16660,19 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Novi {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Novi {0} Kreiran" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Novi {0} {1} kreiran" @@ -16465,52 +16684,17 @@ msgstr "Novi {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "Novokreirani korisnik {0} nema omogućene uloge." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Bilten" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Prilog Biltena" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Grupa e-pošte Biltena" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Upravitelj Biltena" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Bilten je već poslan" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Bilten mora biti objavljen da biste poslali vezu za web pregled u e-mailu" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Bilten treba da ima najmanje jednog primaoca" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Bilteni" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16627,7 +16811,7 @@ msgstr "Sljedeća na Klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16656,7 +16840,7 @@ msgid "No Copy" msgstr "Ne Kopiraj" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16768,11 +16952,11 @@ msgstr "Nema Rezultata" msgid "No Results found" msgstr "Nema Rezultata" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Nije Pronađeno Odabirno Polje" @@ -16800,10 +16984,6 @@ msgstr "Nema upozorenja za danas" msgid "No automatic optimization suggestions available." msgstr "Nema dostupnih prijedloga za automatsku optimizaciju." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "U sadržaju e-pošte nisu pronađene neispravne veze" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Nema promjena u dokumentu" @@ -16840,7 +17020,7 @@ msgstr "Još nema dodanih kontakata." msgid "No contacts linked to document" msgstr "Nema kontakata povezanih s dokumentom" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Nema podataka za izvoz" @@ -16860,7 +17040,7 @@ msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Ko msgid "No failed logs" msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"." @@ -16919,7 +17099,7 @@ msgstr "Broj Redova (Max. 500)" msgid "No of Sent SMS" msgstr "Broj Poslanih SMS-ova" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Nema dozvole za {0}" @@ -17012,6 +17192,12 @@ msgstr "Nije Negativno" msgid "Non-Conforming" msgstr "Neusklađen" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Nijedan" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Ništa: Kraj Radnog Toka" @@ -17026,7 +17212,7 @@ msgstr "Normalizovane Kopije" msgid "Normalized Query" msgstr "Normalizovani Upit" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nije Dozvoljeno" @@ -17047,7 +17233,7 @@ msgstr "Nisu Podređeni Od" msgid "Not Equals" msgstr "Nije Jednako" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije Pronađeno" @@ -17073,16 +17259,16 @@ msgstr "Nije povezano ni sa jednim zapisom" msgid "Not Nullable" msgstr "Nemože se Nulirati" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nije Dozvoljeno" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "Nije Dozvoljeno čitati {0}" @@ -17092,8 +17278,8 @@ msgstr "Nije Dozvoljeno čitati {0}" msgid "Not Published" msgstr "Nije Objavljeno" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17110,7 +17296,6 @@ msgstr "Nije Viđeno" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Nije Poslano" @@ -17127,7 +17312,7 @@ msgstr "Nije Postavljeno" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Nije važeća Korisnička slika." @@ -17143,7 +17328,7 @@ msgstr "Nije važeći korisnik" msgid "Not active" msgstr "Nije aktivno" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" @@ -17184,7 +17369,7 @@ msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili naprav #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" @@ -17362,7 +17547,7 @@ msgstr "Obavijesti ako nema odgovora za (u minutama)" msgid "Notify users with a popup when they log in" msgstr "Obavijestite korisnike skočnim prozorom kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sad" @@ -17505,6 +17690,11 @@ msgstr "OAuth Postavke Dobavljača" msgid "OAuth Scope" msgstr "OAuth Opseg" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "OAuth Postavke" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth je omogućen, ali nije ovlašten. Koristi dugme \"Odobri API Pristup\" da učinite isto." @@ -17577,6 +17767,10 @@ msgstr "Pomak X" msgid "Offset Y" msgstr "Pomak Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Pomak mora biti cijeli broj koji nije negativan" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Stara Lozinka" @@ -17648,7 +17842,7 @@ msgstr "Na ili Poslije" msgid "On or Before" msgstr "Na ili Prije" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "{0}, {1} je napisao:" @@ -17724,7 +17918,7 @@ msgstr "Samo Administrator može uređivati" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Samo Administrator može spremiti standardni izvještaj. Preimenuj i spremi." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Samo Administrator može koristiti Snimač" @@ -17750,7 +17944,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore" msgid "Only allowed to export customizations in developer mode" msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Mogu se odbaciti samo nacrti dokumenata" @@ -17781,7 +17975,7 @@ msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Samo Administrator može izbrisati standardni DocType." @@ -17789,7 +17983,7 @@ msgstr "Samo Administrator može izbrisati standardni DocType." msgid "Only the assignee can complete this to-do." msgstr "Samo dodjeljeni može izvršiti ovu obavezu." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku." @@ -17877,7 +18071,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -17922,7 +18116,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -17932,7 +18126,7 @@ msgstr "Operator mora biti jedan od {0}" msgid "Optimize" msgstr "Optimiziraj" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Optimiziranje slike u toku..." @@ -18021,6 +18215,10 @@ msgstr "Narandžasta" msgid "Order" msgstr "Red" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "Sortiraj Po mora biti niz" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18033,7 +18231,7 @@ msgstr "Istorija" msgid "Org History Heading" msgstr "Naslov Istorije Organizacije" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orijentacija" @@ -18115,9 +18313,11 @@ msgstr "Vlasnik" msgid "PATCH" msgstr "ZAKRPA" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18412,11 +18612,11 @@ msgstr "Tip nadređenog dokumenta je obavezan za kreiranje grafikona nadzorne ta msgid "Parent is the name of the document to which the data will get added to." msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "Grupiranje roditelj-dijete ili dijete-roditelj nije dozvoljeno." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Nadređeni-Podređeni ili Podređeni-Drugi Podrđeni nije dozvoljeno." -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Nadređeno polje nije navedeno u {0}: {1}" @@ -18476,11 +18676,11 @@ msgstr "Pasivno" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "E-pošta s lozinkom poslana" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Poništavanje Lozinke" @@ -18514,11 +18714,11 @@ msgstr "Nedostaje Lozinka za Račun e-pošte" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Lozinka postavljena" @@ -18526,11 +18726,11 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" @@ -18538,10 +18738,6 @@ msgstr "Lozinke se ne podudaraju" msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Prošli datumi nisu dozvoljeni za zakazivanje." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Zalijepi" @@ -18687,7 +18883,7 @@ msgstr "Trajno Podnesi {0}?" msgid "Permanently delete {0}?" msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Greška Dozvole" @@ -18839,11 +19035,11 @@ msgstr "Telefon" msgid "Phone No." msgstr "Broj Telefona." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18901,7 +19097,7 @@ msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Postavi Grafikon" @@ -18917,7 +19113,7 @@ msgstr "Dodaj predmet e-pošti" msgid "Please add a valid comment." msgstr "Dodaj relevantan komentar." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Zamoli administratora da potvrdi vašu registraciju" @@ -18949,7 +19145,7 @@ msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Provjeri e-poštu za potvrdu" @@ -19014,7 +19210,7 @@ msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Omogući iskačuće prozore" @@ -19031,23 +19227,23 @@ msgstr "Omogući {} prije nego nastavite." msgid "Please ensure that your profile has an email address" msgstr "Potvrdi da vaš profil ima adresu e-pošte" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Unesi URL Pristupnog Tokena" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Unesi URL Autorizacije" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Unesi Osnovni URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mreže" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama" @@ -19055,7 +19251,7 @@ msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim msgid "Please enter OpenID Configuration URL" msgstr "Unesi URL Konfiguracije OpenID-a" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Unesi URL Preusmjeravanja" @@ -19067,7 +19263,7 @@ msgstr "Unesite ispravnu adresu e-pošte." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Unesi vašu e-poštu i poruku kako bismo vam mogli odgovoriti. Hvala!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Unesi Lozinku" @@ -19080,11 +19276,11 @@ msgstr "Unesi Lozinku za: {0}" msgid "Please enter valid mobile nos" msgstr "Unesi važeće brojeve mobitela" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Unesi novu lozinku." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Unesi staru lozinku." @@ -19100,7 +19296,7 @@ msgstr "Prijavi se da biste objavili komentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Osvježi da dobijete najnoviji dokument." @@ -19112,10 +19308,6 @@ msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo." msgid "Please save before attaching." msgstr "Spremi prije prilaganja." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Spremi bilten prije slanja" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Spremi dokument prije dodjele" @@ -19144,11 +19336,11 @@ msgstr "Odaberi Tip Entiteta" msgid "Please select Minimum Password Score" msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Odaberi X i Y polja" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Odaberi pozivni broj zemlje za polje {1}." @@ -19164,7 +19356,7 @@ msgstr "Odaberi datoteku ili url" msgid "Please select a valid csv file with data" msgstr "Odaberi važeću csv datoteku sa podacima" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Odaberi važeći filter datuma" @@ -19172,7 +19364,7 @@ msgstr "Odaberi važeći filter datuma" msgid "Please select applicable Doctypes" msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19202,11 +19394,11 @@ msgstr "Postavi adresu e-pošte" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Postavi filtere" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja." @@ -19230,7 +19422,7 @@ msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičn msgid "Please setup a message first" msgstr "Postavi Poruku" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte" @@ -19242,7 +19434,7 @@ msgstr "Podesi standard odlazni račun e-pošte iz Alati > Račun e-pošte" msgid "Please specify" msgstr "Navedi" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Navedi važeći nadređeni DocType za {0}" @@ -19279,14 +19471,19 @@ msgstr "Ažuriraj {} prije nego nastavite." msgid "Please use a valid LDAP search filter" msgstr "Koristi važeći LDAP filter za pretraživanje" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Potvrdi vašu adresu e-pošte" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Koristi sljedeće linkove za preuzimanje sigurnosne kopije datoteka." #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "URI Pravila" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19332,7 +19529,7 @@ msgstr "Stavka Menija Portala" msgid "Portal Settings" msgstr "Postavke Portala" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Portret" @@ -19376,6 +19573,10 @@ msgstr "Objave od {0}" msgid "Posts filed under {0}" msgstr "Objave zavedene pod {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Potencijalno opasan sadržaj u niz literalu: {0}" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19435,15 +19636,15 @@ msgstr "Analitika Pripremljenog Izvještaja" msgid "Prepared Report User" msgstr "Korisnik Pripremljenog Izvještaja" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Priprema Izvještaja" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Priloži šablon poruci e-pošte" @@ -19464,8 +19665,6 @@ msgstr "Pritisni Enter da spremite" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19510,7 +19709,7 @@ msgstr "Pregled {0}" msgid "Preview type" msgstr "Pregled Tip" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Pregled:" @@ -19581,16 +19780,16 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19645,6 +19844,11 @@ msgstr "Greška u Ispis Formatu" msgid "Print Format Field Template" msgstr "Šablon Polja Ispis Formata" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Format Ispisa za" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19655,6 +19859,10 @@ msgstr "Pomoć Ispis Formata" msgid "Print Format Type" msgstr "Tip Ispis Formata" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "Format Ispisa nije pronađen" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Ispis Format {0} je onemogućen" @@ -19686,11 +19894,11 @@ msgstr "Sakrij" msgid "Print Hide If No Value" msgstr "Sakrij ispis ako nema vrijednost" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Jezik Ispisa" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Ispis Poslan na pisač!" @@ -19708,7 +19916,7 @@ msgstr "Ispisni Server" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Postavke Ispisa" @@ -19818,6 +20026,10 @@ msgstr "Privatno" msgid "Private Files (MB)" msgstr "Privatne datoteke (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Sigurnosna Kopija Privatnih Datoteka:" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19828,7 +20040,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Svejedno Nastavi" @@ -19853,7 +20065,7 @@ msgstr "Profil" msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projekat" @@ -19940,6 +20152,10 @@ msgstr "Javno" msgid "Public Files (MB)" msgstr "Javne Datoteke (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Sigurnosna Kopija Javnih Datoteka:" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19948,14 +20164,7 @@ msgstr "Javne Datoteke (MB)" msgid "Publish" msgstr "Objavi" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Objavi kao web stranicu" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19963,7 +20172,6 @@ msgstr "Objavi kao web stranicu" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20087,7 +20295,7 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "QR Kod za Provjeru Prijave" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ Tray neuspješan: " @@ -20184,7 +20392,6 @@ msgstr "Red(ovi)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "U Redu" @@ -20207,19 +20414,11 @@ msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}." msgid "Queued for backup. You will receive an email with the download link" msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "Broj poruka e-pošte u redu čekanja {0}" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Redovi" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "E-pošta u redu čekanja..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "U redu za Podnošenje {0}" @@ -20309,7 +20508,7 @@ msgstr "Ocjena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Direktne Naredbe" @@ -20344,7 +20543,7 @@ msgstr "Od:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Od: {0}" @@ -20420,7 +20619,7 @@ msgstr "Čitanje Primatelja Omogućeno" msgid "Read mode" msgstr "Način Čitanja" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Pročitaj dokumentaciju da biste saznali više" @@ -20440,7 +20639,7 @@ msgstr "Realno Vrijeme (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Obnovi" @@ -20586,12 +20785,12 @@ msgstr "Preusmjeravanja" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis server ne radi. Kontaktiraj Administratora/Tehničku podršku" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Ponovi" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Ponovi posljednju radnju" @@ -20805,11 +21004,11 @@ msgid "Referrer" msgstr "Preporučitelj" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20848,7 +21047,7 @@ msgstr "Osvježava se" msgid "Refreshing..." msgstr "Osvježavanje u toku..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Registrovan, ali onemogućen" @@ -20897,7 +21096,7 @@ msgstr "Ponovno povezano" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Ponovo Učitaj" @@ -20928,7 +21127,7 @@ msgstr "Zapamti Posljednju Odabranu Vrijednost" msgid "Remind At" msgstr "Podsjeti" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Podsjeti Me" @@ -21010,7 +21209,7 @@ msgstr "Uklonjeno" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21038,7 +21237,7 @@ msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku" msgid "Reopen" msgstr "Ponovo otvori" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Ponovi" @@ -21138,6 +21337,8 @@ msgstr "Odgovori Svima" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21153,8 +21354,11 @@ msgstr "Odgovori Svima" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Izvještaj" @@ -21223,7 +21427,7 @@ msgstr "Upravitelj izvještaja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Naziv Izvještaja" @@ -21275,11 +21479,11 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj msgid "Report has no numeric fields, please change the Report Name" msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Izvještaj je pokrenut, klikni da vidite status" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Granica Izvještaja Dostignuta" @@ -21287,7 +21491,7 @@ msgstr "Granica Izvještaja Dostignuta" msgid "Report timed out." msgstr "Izvještaj je istekao." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Izvještaj je uspješno ažuriran" @@ -21295,7 +21499,7 @@ msgstr "Izvještaj je uspješno ažuriran" msgid "Report was not saved (there were errors)" msgstr "Izvještaj nije spremljen (bilo je grešaka)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada." @@ -21308,7 +21512,7 @@ msgstr "Izvještaj {0}" msgid "Report {0} deleted" msgstr "Izvještaj {0} izbrisan" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Izvještaj {0} je onemogućen" @@ -21331,7 +21535,7 @@ msgstr "Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Izvještaji su već u redu čekanja" @@ -21516,6 +21720,31 @@ msgstr "Vrati na Standard Postavke" msgid "Reset your password" msgstr "Poništi Lozinku" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Resurs" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Dokumentacija Resursa" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Naziv Resursa" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "URI Pravila Resursa" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "URI Uvjeta Pružanja Usluge Resursa" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21641,10 +21870,8 @@ msgstr "Opozovi" msgid "Revoked" msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21747,7 +21974,7 @@ msgstr "Dozvole Uloge" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -21781,7 +22008,7 @@ msgstr "Replikacija Uloge" msgid "Role and Level" msgstr "Uloga i Nivo" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Uloga je postavljena prema tipu korisnika {0}" @@ -21855,7 +22082,6 @@ msgstr "Metoda Zaokruživanja" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21869,7 +22095,6 @@ msgstr "Metoda Zaokruživanja" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21896,7 +22121,7 @@ msgstr "Preusmjeravanja Rute" msgid "Route: Example \"/app\"" msgstr "Ruta: Primjer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Red" @@ -21987,7 +22212,7 @@ msgstr "Pravilo" msgid "Rule Conditions" msgstr "Uslovi Pravila" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji." @@ -22176,12 +22401,12 @@ msgstr "Subota" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22208,7 +22433,7 @@ msgstr "Spremi Kao" msgid "Save Customizations" msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Spremi Izvještaj" @@ -22227,7 +22452,7 @@ msgstr "Spremi dokument." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22272,32 +22497,17 @@ msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Raspored" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Zakaži Bilten" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Raspored Slanja" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Zakaži Slanje" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Zakažite slanje za kasnije" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Zakazano" @@ -22331,17 +22541,6 @@ msgstr "Tip Zakazanog Posla" msgid "Scheduled Jobs Logs" msgstr "Zapisnik Zakazanih Poslova" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Zakazano Slanje" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Zakazano Slanje" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Zakazano izvršenje za skriptu {0} je ažurirano" @@ -22410,6 +22609,11 @@ msgstr "Obim" msgid "Scopes" msgstr "Opsezi" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Podržani Opsezi" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22553,6 +22757,11 @@ msgstr "Traži..." msgid "Searching ..." msgstr "Pretraživanje u toku..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekundi" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22600,7 +22809,7 @@ msgstr "Sigurnosne Postavke" msgid "See all Activity" msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Pogledaj sve prethodne izvještaje." @@ -22668,8 +22877,8 @@ msgstr "Odaberi" msgid "Select All" msgstr "Odaberi sve" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22685,7 +22894,7 @@ msgid "Select Column" msgstr "Odaberi Kolonu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Odaberi Kolone" @@ -22735,7 +22944,7 @@ msgstr "Odaberi Tipove Dokumenata da postavite koje se korisničke dozvole koris #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Odaberi Polje" @@ -22806,7 +23015,7 @@ msgid "Select Page" msgstr "Odaberi Stranicu" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Odaberi Ispis Format" @@ -22898,13 +23107,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis" msgid "Select atleast 2 actions" msgstr "Odaberi najmanje dvije radnje" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -22942,9 +23151,7 @@ msgstr "Odaberi {0}" msgid "Self approval is not allowed" msgstr "Samoodobrenje nije dozvoljeno" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Pošalji" @@ -22975,11 +23182,6 @@ msgstr "Pošalji Upozorenje" msgid "Send Email Alert" msgstr "Pošalji Upozorenje e-poštom" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "Pošalji e-poštu" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23027,7 +23229,7 @@ msgstr "Pošalji Sad" msgid "Send Print as PDF" msgstr "Pošalji Ispis kao PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Pošalji Potvrdu o Čitanju" @@ -23037,38 +23239,16 @@ msgstr "Pošalji Potvrdu o Čitanju" msgid "Send System Notification" msgstr "Pošalji Sistemsko Obaveštenje" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Pošalji Probnu e-poštu" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Pošalji svim Dodjeljnim" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Pošalji Vezu Odjave" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Pošalji vezu za Web Pregled" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Pošalji e-poštu Dobrodošlice" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Pošalji Probnu e-poštu" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Pošalji ponovo" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23112,14 +23292,10 @@ msgstr "Pošalji upite na ovu adresu e-pošte" msgid "Send login link" msgstr "Pošalji Vezu Prijave" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Pošalji Mi Kopiju" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Pošalji sada" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23135,19 +23311,15 @@ msgstr "Pošaljite poruku za odjavu putem e-pošte" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Pošiljatelj" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "E-pošta Pošiljatelja" @@ -23164,9 +23336,7 @@ msgid "Sender Field should have Email in options" msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Ime Pošiljatelja" @@ -23186,18 +23356,9 @@ msgstr "Sendgrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Šalje se" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Šalje se e-pošta" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Slanje u toku..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23205,8 +23366,6 @@ msgstr "Slanje u toku..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Poslano" @@ -23276,7 +23435,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}" msgid "Server Action" msgstr "Radnja Servera" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Greška Servera" @@ -23295,7 +23454,7 @@ msgstr "IP Servera" msgid "Server Script" msgstr "Server Skripta" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije." @@ -23334,15 +23493,15 @@ msgstr "Standard Postavke Sesije" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Standard Sesije" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sesija Istekla" @@ -23374,7 +23533,7 @@ msgstr "Postavi" msgid "Set Banner from Image" msgstr "Postavi Transparent sa Slike" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Potavi grafikon" @@ -23400,7 +23559,7 @@ msgstr "Postavi Filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Postavi Nivo" @@ -23596,7 +23755,7 @@ msgstr "Postavljanje vašeg sistema" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23642,7 +23801,7 @@ msgstr "Postavljanje> Korisnik" msgid "Setup > User Permissions" msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23731,6 +23890,8 @@ msgstr "Prečice" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Prikaži" @@ -23757,6 +23918,12 @@ msgstr "Prikaži Apsolutne Vrijednosti" msgid "Show All" msgstr "Prikaži Sve" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Prikaži metapodatke autentifikacijskog servera" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Prikaži Kalendar" @@ -23837,7 +24004,7 @@ msgstr "Prikaži Birač Jezika" msgid "Show Line Breaks after Sections" msgstr "Prikaži Prijelome Reda nakon Sekcije" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Prikaži Veze" @@ -23874,6 +24041,12 @@ msgstr "Prikaži skočni prozor za pregled" msgid "Show Processlist" msgstr "Prikaži Procesnu Listu" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Prikaži metapodatke zaštićenih resursa" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Prikaži Povezane Greške" @@ -23900,8 +24073,14 @@ msgstr "Prikaži Naslove Sekcije" msgid "Show Sidebar" msgstr "Prikaži Bočnu Traku" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Prikaži ključ za prijavu na socijalnu mrežu kao server za autorizaciju" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -23930,6 +24109,12 @@ msgstr "Prikaži Introdukciju" msgid "Show Traceback" msgstr "Prikaži Povratno Praćenje" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Prikaži vrijednosti preko Grafikona" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Prikaži Upozorenja" @@ -23983,6 +24168,12 @@ msgstr "Prikaži punu formu umjesto modalnog za brzi unos" msgid "Show in Module Section" msgstr "Prikaži u Sekciji Modula" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Prikaži u Metapodacima Resursa" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24063,12 +24254,12 @@ msgstr "Bočna Traka i Komentari" msgid "Sign Up and Confirmation" msgstr "Prijava i Potvrda" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Prijava je onemogućena" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Prijavi se" @@ -24154,8 +24345,10 @@ msgstr "Preskoči" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Preskoči Autorizaciju" @@ -24319,6 +24512,16 @@ msgstr "SocketIO Transport Način" msgid "Soft-Bounced" msgstr "Mekano Odbijeno" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "ID Softvera" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Verzija Softvera" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10." @@ -24386,7 +24589,7 @@ msgstr "Polje sortiranja {0} mora biti važeći naziv polja" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24476,7 +24679,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType se ne može izbrisati." @@ -24492,7 +24695,7 @@ msgstr "Standard nije Postavljeno" msgid "Standard Permissions" msgstr "Standard Dozvole" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Standard Ispis Format ne može se ažurirati" @@ -24679,7 +24882,6 @@ msgstr "Vremenski Interval Statistike" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24704,7 +24906,6 @@ msgstr "Vremenski Interval Statistike" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24715,7 +24916,7 @@ msgstr "Vremenski Interval Statistike" msgid "Status" msgstr "Status" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status Ažuriran" @@ -24845,8 +25046,6 @@ msgstr "Poddomena" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24855,10 +25054,9 @@ msgstr "Poddomena" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Predmet" @@ -24897,7 +25095,7 @@ msgstr "Red Podnošenja" msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -24955,7 +25153,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak." msgid "Submit this document to confirm" msgstr "Pošalji ovaj dokument da potvrdite" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25049,7 +25247,7 @@ msgstr "Poruka Uspjeha" msgid "Success title" msgstr "Naziv Uspjeha" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Uspjeh! Spremni ste 👍" @@ -25104,7 +25302,7 @@ msgstr "Predloži Optimizacije" msgid "Suggested Indexes" msgstr "Predloženi Indeksi" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Predloženo Korisničko Ime: {0}" @@ -25117,7 +25315,7 @@ msgstr "Predloženo Korisničko Ime: {0}" msgid "Sum" msgstr "Suma" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Suma od {0}" @@ -25226,7 +25424,7 @@ msgstr "Sinhronizacija u toku" msgid "Syncing {0} of {1}" msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25404,6 +25602,7 @@ msgstr "Sistemski Zapisnici" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25463,6 +25662,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "URI Uvjeta Pružanja Usluge" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25533,7 +25737,7 @@ msgstr "Tabela Optimizirana" msgid "Table updated" msgstr "Tabela Ažurirana" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabela {0} ne može biti prazna" @@ -25641,7 +25845,7 @@ msgstr "Šablon Upozorenja" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Privremeno Onemogućeno" @@ -25660,10 +25864,6 @@ msgstr "ID Test Posla" msgid "Test Spanish" msgstr "Test Španski" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Probna e-pošta poslana na {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test Mapa" @@ -25731,10 +25931,6 @@ msgstr "Hvala vam na poruci e-pošte" msgid "Thank you for your feedback!" msgstr "Hvala vam na povratnim informacijama!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Hvala vam na interesovanju da se pretplatite na naša ažuriranja" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Hvala vam na poruci" @@ -25803,7 +25999,7 @@ msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod " -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Promjene su vraćene." @@ -25861,11 +26057,11 @@ msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}" @@ -25904,7 +26100,7 @@ msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao." msgid "The number of seconds until the request expires" msgstr "Broj sekundi do isteka zahtjeva" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Lozinka vašeg računa je istekla." @@ -25921,15 +26117,15 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod " -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Veza za poništavanje lozinke je istekla" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -25941,7 +26137,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga." msgid "The selected document {0} is not a {1}." msgstr "Odabrani dokument {0} nije {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka." @@ -26002,7 +26198,7 @@ msgstr "Nema predstojećih događaja za vas." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "U redu čekanja već postoji {0} s istim filterima:" @@ -26031,7 +26227,7 @@ msgstr "Trenutno nema ništa novo za pokazati." msgid "There is some problem with the file url: {0}" msgstr "Postoji neki problem sa urlom datoteke: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Postoji {0} s istim filterima već u redu čekanja:" @@ -26055,7 +26251,7 @@ msgstr "Bilo je grešaka" msgid "There were errors while creating the document. Please try again." msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo." @@ -26069,6 +26265,12 @@ msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Ova polja se koriste za pružanje metapodataka servera resursa klijentima koji upituju krajnju tačku \"dobro poznatog zaštićenog resursa\"." + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26094,7 +26296,7 @@ msgstr "Autentifikacija Trećeih Strane" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Ova Oglasna Tabla će biti privatna" @@ -26118,7 +26320,7 @@ msgstr "Ove Godine" msgid "This action is irreversible. Do you wish to continue?" msgstr "Ova radnja je nepovratna. Da li želite da nastavite?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Ova radnja je dozvoljena samo za {}" @@ -26145,7 +26347,7 @@ msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena." @@ -26161,7 +26363,7 @@ msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u msgid "This document is already amended, you cannot ammend it again" msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena." @@ -26226,7 +26428,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan." msgid "This goes above the slideshow." msgstr "Ovo ide iznad projekcije slajdova." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi." @@ -26282,15 +26484,7 @@ msgstr "Ovo se može ispisati na više stranica" msgid "This month" msgstr "Ovog mjeseca" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Ovaj bilten je planiran za slanje {0}" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Slanje ovog biltena bilo je planirano za neki kasniji datum. Jeste li sigurni da ga želite sada poslati?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj." @@ -26298,7 +26492,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa msgid "This report was generated on {0}" msgstr "Ovaj izvještaj je generisan {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Ovaj izvještaj je generisan {0}." @@ -26364,7 +26558,7 @@ msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jes msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Prigušeno" @@ -26402,7 +26596,6 @@ msgstr "Četvrtak" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Vrijeme" @@ -26628,10 +26821,8 @@ msgid "Title of the page" msgstr "Naziv stranice" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Za" @@ -26685,7 +26876,7 @@ msgstr "Za dodavanje dinamičkih vrijednosti iz dokumenta upotrijebite jinja ozn "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Da biste omogućili više izvještaja, ažurirajte ograničenje u postavkama sistema." @@ -26721,7 +26912,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok msgid "To generate password click {0}" msgstr "Za generiranje lozinke kliknite na {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." @@ -26796,7 +26987,7 @@ msgstr "Uključi Prikaz Mreže" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -26817,6 +27008,12 @@ msgstr "Token" msgid "Token Cache" msgstr "Token Cache" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Metoda autentifikacije krajnje tačke tokena" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26844,7 +27041,7 @@ msgstr "Previše Dokumenata" msgid "Too Many Requests" msgstr "Previše Zahtjeva" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Previše promjena u bazi podataka u jednoj akciji." @@ -26852,7 +27049,7 @@ msgstr "Previše promjena u bazi podataka u jednoj akciji." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše pozadinskih poslova na čekanju ({0}). Pokušaj ponovo nakon nekog vremena." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena" @@ -26914,9 +27111,9 @@ msgstr "Vrh Desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Ukupno" @@ -26942,16 +27139,8 @@ msgstr "Ukupno Slika" msgid "Total Outgoing Emails" msgstr "Ukupno Odlazne e-pošte" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Ukupno Primatelja" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Ukupno Pretplatnika" @@ -26960,11 +27149,6 @@ msgstr "Ukupno Pretplatnika" msgid "Total Users" msgstr "Ukupno Korisnika" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Ukupno Pregleda" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27052,7 +27236,7 @@ msgstr "Prati prekretnice za bilo koji dokument" msgid "Tracking" msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "URL praćenja generisan i kopiran u međuspremnik" @@ -27099,7 +27283,7 @@ msgstr "Prelazi" msgid "Translatable" msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27132,6 +27316,11 @@ msgstr "Prevod" msgid "Translations" msgstr "Prevodi" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Prevodioc" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27354,33 +27543,65 @@ msgstr "URL za dokumentaciju ili pomoć" msgid "URL must start with http:// or https://" msgstr "URL mora početi s http:// ili https://" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL stranice s informacijama koje bi programerima mogle biti potrebne." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL web stranice koja pruža informacije o klijentu." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL stranice s informacijama o uvjetima korištenja zaštićenog resursa." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL stranice s informacijama o zahtjevima o tome kako klijent može koristiti podatke." + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL stranice" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL adresa koja upućuje na dokument o pravilima za klijenta. Treba ga prikazati krajnjem korisniku prije autorizacije." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL adresa koja upućuje na dokument o uslovima korištenja usluge za klijenta. Treba ga prikazati krajnjem korisniku prije autorizacije." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL adresa koja upućuje na logotip klijenta." + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL na koji ćete otići nakon klika na sliku slajdova" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM Kampanja" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM Medij" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM Izvor" @@ -27413,7 +27634,7 @@ msgstr "Nije moguće otvoriti priloženu datoteku. Jeste li je izvezli kao CSV?" msgid "Unable to read file format for {0}" msgstr "Nije moguće pročitati format datoteke za {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zadani račun e-pošte iz Postavke > Račun e-pošte" @@ -27430,7 +27651,7 @@ msgstr "Nije moguće napisati format datoteke za {0}" msgid "Unassign Condition" msgstr "Poništi Dodjelu Uslova" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Neuhvaćena Iznimka" @@ -27438,16 +27659,20 @@ msgstr "Neuhvaćena Iznimka" msgid "Unchanged" msgstr "Nepromijenjeno" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Poništi" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Poništi posljednju radnju" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Neizbjegnuti navodnici u niz literalu: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Prestani Pratiti" @@ -27470,6 +27695,15 @@ msgstr "Neobrađena e-pošta" msgid "Unique" msgstr "Jedinstveno" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "Jedinstveni ID koji dodjeljuje klijentski programer i koristi se za identifikaciju klijentskog softvera koji se dinamički registruje.\n" +"
\n" +"Treba da ostane isti u više verzija ili ažuriranja softvera." + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Nepoznato" @@ -27478,7 +27712,7 @@ msgstr "Nepoznato" msgid "Unknown Column: {0}" msgstr "Nepoznata Kolona: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Nepoznata Metoda Zaokruživanja: {}" @@ -27525,7 +27759,7 @@ msgstr "Poništi Odabir Svih" msgid "Unshared" msgstr "Nedijeljeno" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Otkaži Pretplatu" @@ -27545,10 +27779,15 @@ msgstr "Parametri Otkazivanja" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Otkazano" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Kolona bez Naziva" @@ -27671,7 +27910,7 @@ msgstr "Ažurirano na Novu Verziju 🎉" msgid "Updated successfully" msgstr "Uspješno Ažurirano" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Ažuriranje" @@ -27949,7 +28188,7 @@ msgstr "Korisnik Nemože Kreirati" msgid "User Cannot Search" msgstr "Korisnik Nemože Pretraživati" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Korisnik Promijenjen" @@ -28055,12 +28294,12 @@ msgstr "Korisnička Dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28161,15 +28400,15 @@ msgstr "Korisnik sa adresom e-pošte {0} ne postoji" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Korisnik {0} se ne može izbrisati" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Korisnik {0} se ne može onemogućiti" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Korisnik {0} se ne može preimenovati" @@ -28190,7 +28429,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora." msgid "User {0} has requested for data deletion" msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} predstavljen kao {1}" @@ -28219,7 +28458,7 @@ msgstr "URI informacija Korisnika" msgid "Username" msgstr "Korisničko Ime" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Korisničko Ime {0} već postoji" @@ -28359,15 +28598,15 @@ msgstr "Vrijednost Promijenjena" msgid "Value To Be Set" msgstr "Vrijednost Koju Treba Postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Vrijednost se ne može promijeniti za {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Vrijednost ne može biti negativna za" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Vrijednost ne može biti negativna za {0}: {1}" @@ -28393,6 +28632,12 @@ msgstr "Vrijednost iz ovog polja će biti postavljena kao krajnji datum za Uradi msgid "Value must be one of {0}" msgstr "Vrijednost mora biti jedna od {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, tajna klijenta se ne daje klijentu i razmjena tokena koristi PKCE." + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28406,7 +28651,7 @@ msgstr "Vrijednost je Prevelika" msgid "Value {0} missing for {1}" msgstr "Nedostaje vrijednost {0} za {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s" @@ -28486,7 +28731,7 @@ msgstr "Prikaz" msgid "View All" msgstr "Prikaži Sve" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Prikaži Trag" @@ -28730,7 +28975,7 @@ msgstr "Web Stranica" msgid "Web Page Block" msgstr "Blok Web Stranice" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL Web Stranice" @@ -28773,6 +29018,7 @@ msgstr "Web Prikaz" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28831,7 +29077,6 @@ msgstr "Webhook URL" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28839,9 +29084,7 @@ msgid "Website" msgstr "Web Stranica" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Analiza Web Stranice" @@ -29041,11 +29284,11 @@ msgstr "URL Dobrodošlice" msgid "Welcome Workspace" msgstr "Početni Radni Prostor" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "E-pošta Dobrodošlice poslana" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Dobrodošli u {0}" @@ -29131,7 +29374,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Pokrenut će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Sa Zaglavljem" @@ -29272,12 +29515,12 @@ msgstr "Radni Tok je uspješno ažuriran" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Radni Prostor {0} ne postoji" @@ -29399,7 +29642,7 @@ msgstr "Polja Ose Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y Polje" @@ -29460,7 +29703,7 @@ msgstr "Žuta" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29500,11 +29743,11 @@ msgstr "Predstavljate se kao neki drugi korisnik." msgid "You are not allowed to access this resource" msgstr "Nije vam dozvoljen pristup ovom resursu" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}" @@ -29527,7 +29770,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Nije vam dozvoljeno da izvezete {} doctype" @@ -29535,11 +29778,11 @@ msgstr "Nije vam dozvoljeno da izvezete {} doctype" msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29555,7 +29798,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave." msgid "You are not permitted to access this page." msgstr "Nije vam dozvoljen pristup ovoj stranici." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup" @@ -29563,7 +29806,7 @@ msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije." @@ -29608,7 +29851,7 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." @@ -29650,7 +29893,7 @@ msgstr "Možete odabrati jedan od sljedećih," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Možete pokušati promijeniti filtere vašeg izvještaja." @@ -29727,11 +29970,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "Nemate dozvolu za pristup polju: {0}" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29739,19 +29986,19 @@ msgstr "Nemate dozvolu za pristup {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Nemate pristup Izvještaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Nemate dozvolu za pristup ovoj datoteci" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}" @@ -29816,15 +30063,15 @@ msgstr "Zadnji put ste uređivali ovo" msgid "You must add atleast one link." msgstr "Morate dodati barem jednu vezu." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju." @@ -29844,7 +30091,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama." @@ -29927,7 +30174,7 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem." @@ -29968,11 +30215,11 @@ msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Vašu dodjelu {0} {1} je uklonio {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Vaš pretraživač ne podržava audio element." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Vaš pretraživač ne podržava video element." @@ -29992,11 +30239,11 @@ msgstr "Vaša forma je uspješno ažurirana" msgid "Your login id is" msgstr "Vaš Id za prijavu je" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Vaša nova lozinka je uspješno postavljena." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Vaša stara lozinka nije tačna." @@ -30010,7 +30257,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." @@ -30022,7 +30269,7 @@ msgstr "Vaša je stranica u toku održavanja ili ažuriranja." msgid "Your verification code is {0}" msgstr "Vaš verifikacioni kod je {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Nula" @@ -30046,7 +30293,7 @@ msgstr "_doctype" msgid "_report" msgstr "_izvještaj" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" @@ -30069,7 +30316,7 @@ msgstr "nakon_umetanja" msgid "amend" msgstr "izmijeni" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "i" @@ -30126,8 +30373,8 @@ msgstr "kreiraj" msgid "cyan" msgstr "cijan" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "d" @@ -30241,7 +30488,7 @@ msgstr "e-pošta" msgid "email inbox" msgstr "prijemno sanduče e-pošte" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "prazno" @@ -30293,8 +30540,8 @@ msgstr "siva" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" @@ -30327,7 +30574,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "oznaka" @@ -30367,8 +30614,8 @@ msgstr "prijava_potrebna" msgid "long" msgstr "dugo" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30557,8 +30804,8 @@ msgstr "odgovor" msgid "restored {0} as {1}" msgstr "vraćeno {0} kao {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30851,7 +31098,7 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" msgid "{0} Report" msgstr "{0} Izvještaj" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} Izvještaja" @@ -30892,7 +31139,7 @@ msgstr "{0} je već odjavljen" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} je već otkazan za {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} i {1}" @@ -30900,7 +31147,7 @@ msgstr "{0} i {1}" msgid "{0} are currently {1}" msgstr "{0} su trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} su obavezni" @@ -30930,7 +31177,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} je otkazao ovaj dokument {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene." @@ -30998,7 +31245,11 @@ msgstr "{0} ne postoji u redu {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}." @@ -31018,11 +31269,7 @@ msgstr "{0} h" msgid "{0} has already assigned default value for {1}." msgstr "{0} je već dodijelio(la) standard vrijednost za {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} je uspješno dodan u grupu e-pošte." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} je napustio(la) konverzaciju u {1} {2}" @@ -31092,6 +31339,10 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezan" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "{0} nije podređena tabela od {1}" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} nije polje tipa dokumenta {1}" @@ -31113,7 +31364,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeća DocType za dinamičku vezu" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća adresa e-pošte" @@ -31121,11 +31372,11 @@ msgstr "{0} nije važeća adresa e-pošte" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} nije ispravan broj telefona" @@ -31133,15 +31384,15 @@ msgstr "{0} nije ispravan broj telefona" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} nije važeći nadređeni DocType za {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} nije važeće nadređeno polje za {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}" @@ -31165,7 +31416,7 @@ msgstr "{0} nije jedno od {1}" msgid "{0} is not set" msgstr "{0} nije postavljeno" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" @@ -31175,7 +31426,8 @@ msgstr "{0} je jedan od {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je obavezan" @@ -31188,11 +31440,11 @@ msgstr "{0} je postavljeno" msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" @@ -31225,23 +31477,23 @@ msgstr "prije {0} minuta" msgid "{0} months ago" msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} mora biti iza {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} mora početi sa '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} ne smije biti ni jedna od {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} mora biti jedan od {1}" @@ -31253,7 +31505,7 @@ msgstr "{0} se mora prvo postaviti" msgid "{0} must be unique" msgstr "{0} mora biti jedinstven" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} mora biti {1} {2}" @@ -31282,16 +31534,12 @@ msgstr "{0} od {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} od {1} poslano" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "Samo {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} ili {1}" @@ -31328,11 +31576,11 @@ msgstr "{0} je uklonio(la) svoju dodjelu." msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} red #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} uspješno spremljen" @@ -31374,7 +31622,7 @@ msgstr "{0} je podnio ovaj dokument {1}" msgid "{0} subscribers added" msgstr "{0} pretplatnika je dodano" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} da prestanete primati e-poštu ovog tipa" @@ -31444,11 +31692,11 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}." @@ -31561,7 +31809,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} je postavljeno na stanje {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} naspram {2}" @@ -31597,11 +31845,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam msgid "{} Complete" msgstr "{} Završeno" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" @@ -31623,7 +31871,7 @@ msgstr "Polje {} ne može biti prazno." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} nije ispravan datumski niz." diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po index 5085672df2..1249a2a0ba 100644 --- a/frappe/locale/cs.po +++ b/frappe/locale/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakty" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/de.po b/frappe/locale/de.po index b52c8d6edc..46a78c3b74 100644 --- a/frappe/locale/de.po +++ b/frappe/locale/de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:45\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}" msgid "'Recipients' not specified" msgstr "Keine \"Empfänger\" angegeben" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0} ist keine gültige URL" @@ -141,7 +141,7 @@ msgstr "1 Tag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender-Ereignis synchronisiert" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Bericht" @@ -149,7 +149,7 @@ msgstr "1 Bericht" msgid "1 comment" msgstr "1 Kommentar" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "vor 1 Tag" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "vor einer Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "vor einer Minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "vor 1 Monat" @@ -180,37 +180,37 @@ msgstr "1 von 2" msgid "1 record will be exported" msgstr "1 Datensatz wird exportiert" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "vor 1 Sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "vor einer Woche" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "vor einem Jahr" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "vor 2 Stunden" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "vor 2 Monaten" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "vor 2 Wochen" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "vor 2 Jahren" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "vor 3 Minuten" @@ -226,7 +226,7 @@ msgstr "4 Stunden" msgid "5 Records" msgstr "5 Datensätze" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "vor 5 Tagen" @@ -709,11 +709,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Hallo," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Berichte & Stammdaten" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Warnung: Dieses Feld wird vom System generiert und kann durch ein zukünftiges Update überschrieben werden. Ändern Sie es stattdessen mit {0}." @@ -740,6 +735,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nur aus Buchstaben, Zahlen, Leerzeichen, Unterstrichen und Bindestrichen bestehen" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Ein vorgestellter Beitrag muss ein Titelbild haben" @@ -774,6 +774,13 @@ msgstr "Ein Symbol für diese Währung, z. B. €" msgid "A template already exists for field {0} of {1}" msgstr "Es existiert bereits eine Vorlage für das Feld {0} von {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Ein Wort allein ist leicht zu erraten." @@ -1018,7 +1025,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1035,7 +1041,7 @@ msgstr "Aktion / Route" msgid "Action Complete" msgstr "Aktion abgeschlossen" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Aktion fehlgeschlagen" @@ -1084,10 +1090,10 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen." #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Aktionen" @@ -1149,8 +1155,8 @@ msgstr "Aktivitätsprotokoll" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Hinzufügen" @@ -1167,7 +1173,7 @@ msgstr "Hinzufügen / Aktualisieren" msgid "Add A New Rule" msgstr "Neue Regel hinzufügen" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Anhang hinzufügen" @@ -1191,7 +1197,7 @@ msgstr "Rand oben hinzufügen" msgid "Add Card to Dashboard" msgstr "Karte zum Dashboard hinzufügen" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Diagramm zum Dashboard hinzufügen" @@ -1200,8 +1206,8 @@ msgid "Add Child" msgstr "Unterpunkt hinzufügen" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1237,7 +1243,7 @@ msgid "Add Gray Background" msgstr "Grauen Hintergrund hinzufügen" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Gruppe hinzufügen" @@ -1262,7 +1268,7 @@ msgstr "Teilnehmer hinzufügen" msgid "Add Query Parameters" msgstr "Abfrageparameter hinzufügen" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Rollen hinzufügen" @@ -1272,7 +1278,7 @@ msgstr "Zeile hinzufügen" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Signatur hinzufügen" @@ -1295,12 +1301,12 @@ msgstr "Abonnenten hinzufügen" msgid "Add Tags" msgstr "Schlagworte hinzufügen" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Schlagworte hinzufügen" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Vorlage hinzufügen" @@ -1407,7 +1413,7 @@ msgid "Add tab" msgstr "Tab hinzufügen" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Zum Dashboard hinzufügen" @@ -1562,11 +1568,11 @@ msgstr "Verwaltung" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrator hat sich angemeldet" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}." @@ -1674,6 +1680,14 @@ msgstr "Hinweis" msgid "Alerts and Notifications" msgstr "Warnungen und Benachrichtigungen" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias darf kein SQL-Schlüsselwort sein: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Alias muss ein String sein" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1714,7 +1728,6 @@ msgstr "Wert anordnen" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -2045,6 +2058,12 @@ msgstr "In Erwähnungen erlaubt" msgid "Allowed Modules" msgstr "Erlaubte Module" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2061,7 +2080,43 @@ msgstr "Erlaubte Einbettungsdomänen" msgid "Allowing DocType, DocType. Be careful!" msgstr "DocType, DocType zulassen. Achtung!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Bereits registriert" @@ -2152,7 +2207,7 @@ msgstr "Änderung" msgid "Amendment Naming Override" msgstr "Überschreibung der Berichtigungsbenennung" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Berichtigung nicht erlaubt" @@ -2160,7 +2215,7 @@ msgstr "Berichtigung nicht erlaubt" msgid "Amendment naming rules updated." msgstr "Benennungsregeln für Berichtigungen aktualisiert." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten" @@ -2241,16 +2296,6 @@ msgstr "Abgesehen vom Systemmanager können Rollen mit der Berechtigung „Benut msgid "App" msgstr "Anwendung" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "App Client-ID" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "App Client Geheimnis" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2264,21 +2309,24 @@ msgstr "Anwendungslogo" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "App-Name" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "App nicht gefunden für Modul: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} ist nicht installiert" @@ -2343,7 +2391,7 @@ msgstr "Angewandt auf" msgid "Apply" msgstr "Anwenden" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Zuweisungsregel anwenden" @@ -2424,7 +2472,7 @@ msgstr "Archiviert" msgid "Archived Columns" msgstr "Archivierte Spalten" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" @@ -2456,7 +2504,7 @@ msgstr "Sind Sie sicher, dass Sie die Registerkarte löschen möchten? Alle Absc msgid "Are you sure you want to discard the changes?" msgstr "Sind Sie sicher, dass Sie die Änderungen verwerfen möchten?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?" @@ -2492,10 +2540,6 @@ msgstr "Möchten Sie wirklich alle Anpassungen zurücksetzen?" msgid "Are you sure you want to save this document?" msgstr "Sind Sie sicher, dass Sie dieses Dokument speichern möchten?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Sind Sie sicher, dass Sie diesen Newsletter jetzt senden möchten?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2528,16 +2572,16 @@ msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und die Daten auf {0}, die mi msgid "Assign Condition" msgstr "Zuweisungsbedingung" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Zuweisen an" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Zuweisen an" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "An Benutzergruppe zuweisen" @@ -2689,7 +2733,7 @@ msgstr "Mindestens ein Feld des übergeordneten Dokumenttyps ist obligatorisch" msgid "Attach" msgstr "Anhängen" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Dokumentendruck anhängen" @@ -2749,9 +2793,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Angehängt an Name muss eine Zeichenfolge oder eine Ganzzahl sein" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Anhang" @@ -2778,20 +2820,17 @@ msgid "Attachment Removed" msgstr "Anlage entfernt" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Anhänge" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Es wird versucht, QZ Tray zu starten ..." @@ -2799,11 +2838,6 @@ msgstr "Es wird versucht, QZ Tray zu starten ..." msgid "Attribution" msgstr "Namensnennung" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Zielgruppe" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2848,6 +2882,11 @@ msgstr "Die Authentifizierung ist beim Empfang von E-Mails vom E-Mail-Konto fehl msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3082,7 +3121,7 @@ msgstr "Avatar" msgid "Average" msgstr "Durchschnittlich" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Durchschnitt von {0}" @@ -3187,7 +3226,7 @@ msgstr "B9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3230,7 +3269,7 @@ msgstr "Hintergrundbild" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Hintergrundprozesse" @@ -3836,7 +3875,7 @@ msgstr "Abgebrochen" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3959,10 +3998,8 @@ msgstr "Rückruftitel" msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4029,7 +4066,7 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." msgid "Cancel" msgstr "Abbrechen" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Stornieren" @@ -4047,11 +4084,7 @@ msgstr "Alle stornieren" msgid "Cancel All Documents" msgstr "Alle Dokumente abbrechen" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Planung abbrechen" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Abbrechen von {0} Dokumenten?" @@ -4118,11 +4151,11 @@ msgstr "Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten" msgid "Cannot cancel {0}." msgstr "{0} kann nicht storniert werden." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Status kann nicht von 0 (Entwurf) zu 2 (Abgebrochen) geändert werden" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert werden" @@ -4150,7 +4183,7 @@ msgstr "Privater Arbeitsbereich für andere Benutzer kann nicht erstellt werden" msgid "Cannot delete Home and Attachments folders" msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist" @@ -4205,7 +4238,7 @@ msgstr "Standarddiagramme können nicht bearbeitet werden" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden" @@ -4242,7 +4275,7 @@ msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden." msgid "Cannot import table with more than 5000 rows." msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Aufgehobenes Dokument kann nicht verknüpft werden: {0}" @@ -4287,7 +4320,7 @@ msgstr "Kann {0} nicht aktualisieren" msgid "Cannot use sub-query in order by" msgstr "Kann in \"sortieren nach\" keine Unterabfrage verwenden." -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden" @@ -4313,7 +4346,7 @@ msgstr "Karte" msgid "Card Break" msgstr "Neue Karte" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Kartenetikett" @@ -4344,10 +4377,6 @@ msgstr "Kategoriebeschreibung" msgid "Category Name" msgstr "Kategoriename" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Cent" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4456,7 +4485,7 @@ msgstr "Diagrammkonfiguration" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Diagrammname" @@ -4513,10 +4542,6 @@ msgstr "Kontrollkästchen" msgid "Check Request URL" msgstr "Anfrage-URL prüfen" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Überprüfe kaputte Links" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Markieren Sie Spalten, um sie auszuwählen, ziehen Sie sie, um die Reihenfolge festzulegen." @@ -4540,10 +4565,6 @@ msgstr "Aktivieren, falls der Benutzer gezwungen sein soll, vor dem Speichern ei msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "Aktivieren Sie diese Option, um den vollständigen numerischen Wert anzuzeigen (z.B. 1.234.567 statt 1,2M)." -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Überprüfe kaputte Links..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Einen Moment bitte, Überprüfung läuft." @@ -4590,6 +4611,10 @@ msgstr "Untertabelle {0} für Feld {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte" @@ -4629,15 +4654,19 @@ msgstr "Ort/Stadt" msgid "Clear" msgstr "Löschen" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Leeren und Vorlage einfügen" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Leeren und Vorlage einfügen" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Alles leeren" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Zuweisung löschen" @@ -4663,7 +4692,7 @@ msgstr "Protokolle löschen nach (in Tagen)" msgid "Clear User Permissions" msgstr "Benutzerrechte löschen" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Email-Feld leeren und Vorlage einfügen" @@ -4679,10 +4708,6 @@ msgstr "Klicken Sie auf „Anpassen“, um Ihr erstes Widget hinzuzufügen" msgid "Click here" msgstr "Klicken Sie hier" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Hier klicken um die Richtigkeit zu bestätigen" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Klicken Sie auf eine Datei, um sie auszuwählen." @@ -4762,8 +4787,10 @@ msgid "Client Credentials" msgstr "Mandant-Zugangsdaten" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "Client-ID" @@ -4779,6 +4806,12 @@ msgstr "Client-ID" msgid "Client Information" msgstr "Mandanteninformationen" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4791,13 +4824,32 @@ msgstr "Clientskript" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Mandanten-Geheimnis" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4882,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Zuklappen" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Alle zuklappen" @@ -4937,7 +4989,7 @@ msgstr "Zusammenklappbar hängt ab von (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5024,11 +5076,11 @@ msgstr "Spalten" msgid "Columns / Fields" msgstr "Spalten / Felder" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Spalten basierend auf" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombination von Grant-Typ ( {0} ) und Antworttyp ( {1} ) nicht zulässig" @@ -5187,7 +5239,7 @@ msgstr "Vollständig" msgid "Complete By" msgstr "Fertigstellen bis" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Anmeldung abschliessen" @@ -5277,6 +5329,12 @@ msgstr "Bedingungsbeschreibung" msgid "Conditions" msgstr "Bedingungen" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5315,7 +5373,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Konfigurieren Sie verschiedene Aspekte der Funktionsweise der Dokumentbenennung, z. B. die Nummernkreise und den aktuellen Zähler." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bestätigen" @@ -5324,7 +5382,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Bestätigen" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Zugang bestätigen" @@ -5337,7 +5395,7 @@ msgstr "Löschen des Kontos bestätigen" msgid "Confirm New Password" msgstr "Bestätige neues Passwort" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Kennwort bestätigen" @@ -5346,17 +5404,12 @@ msgstr "Kennwort bestätigen" msgid "Confirm Request" msgstr "Anfrage bestätigen" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Email-Adresse bestätigen" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Bestätigungs-E-Mail-Vorlage" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Bestätigt" @@ -5383,8 +5436,8 @@ msgstr "Verbundene Anwendung" msgid "Connected User" msgstr "Verbundener Benutzer" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Verbunden mit QZ Tray!" @@ -5476,6 +5529,11 @@ msgstr "Einstellungen zu „Kontaktieren Sie uns“" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Kontaktalternativen wie „Vertriebsanfrage\", \"Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakte" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Enthält {0} Sicherheitsfix" @@ -5487,8 +5545,6 @@ msgstr "Enthält {0} Sicherheitsfixes" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5496,8 +5552,7 @@ msgstr "Enthält {0} Sicherheitsfixes" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5521,10 +5576,8 @@ msgstr "Inhalt (Markdown)" msgid "Content Hash" msgstr "Inhalts-Hash" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5581,7 +5634,7 @@ msgstr "Beitragsstatus" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Steuert, ob sich neue Benutzer mit diesem Social Login Key anmelden können. Wenn nicht eingestellt, werden die Website-Einstellungen berücksichtigt." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "In die Zwischenablage kopiert." @@ -5597,7 +5650,7 @@ msgstr "Einbettungscode kopieren" msgid "Copy error to clipboard" msgstr "Fehler in die Zwischenablage kopieren" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "In die Zwischenablage kopieren" @@ -5622,7 +5675,7 @@ msgstr "Korrekte Version :" msgid "Could not connect to outgoing email server" msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "{0} konnte nicht gefunden werden" @@ -5630,6 +5683,10 @@ msgstr "{0} konnte nicht gefunden werden" msgid "Could not map column {0} to field {1}" msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden." +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Konnte nicht gestartet werden: " @@ -5646,7 +5703,7 @@ msgstr "Konnte nicht speichern, überprüfen Sie bitte die eingegebenen Daten" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Anzahl" @@ -5685,7 +5742,7 @@ msgstr "Zähler" msgid "Country" msgstr "Land" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Landesvorwahl erforderlich" @@ -5717,7 +5774,7 @@ msgstr "H" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5731,13 +5788,13 @@ msgstr "Erstellen & Fortfahren" msgid "Create Address" msgstr "Adresse erstellen" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Karte erstellen" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Diagramm erstellen" @@ -5816,11 +5873,6 @@ msgstr "Neu erstellen: {0}" msgid "Create a {0} Account" msgstr "Ein {0} Konto erstellen" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Erstellen und versenden Sie in regelmäßigen Abständen E-Mails an eine bestimmte Gruppe von Abonnenten." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Druckformat erstellen oder bearbeiten" @@ -6169,6 +6221,10 @@ msgstr "Benutzerdefinierte Übersetzung" msgid "Custom field renamed to {0} successfully." msgstr "Benutzerdefiniertes Feld erfolgreich in {0} umbenannt." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6202,12 +6258,12 @@ msgstr "Anpassungen für {0} exportiert nach:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Anpassen" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassen" @@ -6226,7 +6282,7 @@ msgstr "Dashboard anpassen" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Formular anpassen" @@ -6352,7 +6408,7 @@ msgstr "Dunkles Design" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Dashboard" @@ -6519,7 +6575,6 @@ msgstr "Datenbankversion" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6583,6 +6638,11 @@ msgstr "Tag" msgid "Day of Week" msgstr "Wochentag" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Tage" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6847,15 +6907,16 @@ msgstr "Verzögert" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Löschen" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Löschen" @@ -6891,7 +6952,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Registerkarte löschen" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Löschen und neu generieren" @@ -6933,12 +6994,12 @@ msgstr "Registerkarte löschen" msgid "Delete this record to allow sending to this email address" msgstr "Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Element {0} endgültig löschen?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} Elemente dauerhaft löschen?" @@ -7162,6 +7223,7 @@ msgstr "Schreibtisch-Design" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7345,8 +7407,8 @@ msgstr "Registrierung neuer Benutzer deaktivieren" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Deaktiviert" @@ -7355,7 +7417,7 @@ msgstr "Deaktiviert" msgid "Disabled Auto Reply" msgstr "Automatische Antwort deaktiviert" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7515,6 +7577,7 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0} #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7760,7 +7823,7 @@ msgstr "Bedingung für die Benennungsregel für Dokumente" msgid "Document Naming Settings" msgstr "Dokumentenbenennungseinstellungen" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "anstehendes Dokument" @@ -7917,7 +7980,7 @@ msgid "Document Types and Permissions" msgstr "Dokumenttypen und Berechtigungen" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "Dokument entsperrt" @@ -8054,7 +8117,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "HTML-Tags wie <script> oder Zeichen wie < oder > nicht kodieren, da diese absichtlich in diesem Feld verwendet werden könnten" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "Sie haben noch kein Benutzerkonto?" @@ -8108,7 +8171,7 @@ msgstr "Download-Link" msgid "Download PDF" msgstr "PDF Herunterladen" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Bericht herunterladen" @@ -8192,7 +8255,7 @@ msgid "Due Date Based On" msgstr "Fälligkeitsdatum basiert auf" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Duplizieren" @@ -8307,9 +8370,9 @@ msgstr "ESC" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8321,7 +8384,7 @@ msgstr "ESC" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Bearbeiten" @@ -8356,11 +8419,11 @@ msgstr "Benutzerdefinierten Block bearbeiten" msgid "Edit Custom HTML" msgstr "Benutzerdefiniertes HTML bearbeiten" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "DocType bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType bearbeiten" @@ -8535,10 +8598,9 @@ msgstr "Element Selektor" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8573,7 +8635,7 @@ msgstr "E-Mail-Konto deaktiviert." msgid "Email Account Name" msgstr "E-Mail-Konten-Name" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "E-Mail-Konto wurde mehrmals hinzugefügt" @@ -8629,11 +8691,9 @@ msgstr "Signatur in der E-Mail-Fußzeile" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "E-Mail-Gruppe" @@ -8682,7 +8742,7 @@ msgstr "E-Mail-Queue" msgid "Email Queue Recipient" msgstr "E-Mail-Queue Empfänger" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "Das Leeren der E-Mail-Warteschlange wurde aufgrund zu vieler Fehler abgebrochen." @@ -8706,18 +8766,11 @@ msgstr "E-Mail-Wiederholungslimit" msgid "Email Rule" msgstr "E-Mail-Regel" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "E-Mail gesendet" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "E-Mail gesendet am" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8753,7 +8806,7 @@ msgstr "E-Mail-Synchronisierungsoption" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "E-Mail-Vorlage" @@ -8785,7 +8838,7 @@ msgstr "E-Mail wurde in den Papierkorb geworfen" msgid "Email is mandatory to create User Email" msgstr "E-Mail ist obligatorisch, um Benutzer-E-Mails zu erstellen" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)" @@ -8811,7 +8864,7 @@ msgstr "E-Mails abgerufen" msgid "Emails are already being pulled from this account." msgstr "Es werden bereits E-Mails von diesem Konto abgerufen." -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "E-Mails sind stumm geschaltet" @@ -8824,10 +8877,18 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet" msgid "Embed code copied" msgstr "Einbettungscode kopiert" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "Leerer Alias ist nicht erlaubt" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "Leere Spalte" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8863,6 +8924,12 @@ msgstr "Automatisches Verknüpfen in Dokumenten aktivieren" msgid "Enable Comments" msgstr "Kommentare aktivieren" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -9023,8 +9090,8 @@ msgstr "In-App-Website-Tracking aktivieren" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Aktiviert" @@ -9151,7 +9218,7 @@ msgstr "Geben Sie in den Google-Einstellungen die Client ID und das Client Secre msgid "Enter Code displayed in OTP App." msgstr "Geben Sie den in der OTP-App angezeigten Code ein." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Geben Sie den/die E-Mail-Empfänger an" @@ -9254,7 +9321,7 @@ msgstr "Fehlerprotokolle" msgid "Error Message" msgstr "Fehlermeldung" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

Sie müssen die QZ Tray-Anwendung installiert haben und ausführen, um die Raw Print-Funktion verwenden zu können.

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über den Rohdruck zu erfahren ." @@ -9292,6 +9359,14 @@ msgstr "Fehler in der Benachrichtigung" msgid "Error in print format on line {0}: {1}" msgstr "Fehler im Druckformat in Zeile {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}" @@ -9457,7 +9532,7 @@ msgstr "Code wird ausgeführt" msgid "Executing..." msgstr "Wird ausgeführt..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Ausführungszeit: {0} Sek" @@ -9483,11 +9558,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Erweitern" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Alle ausklappen" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Experimentell" @@ -9540,13 +9619,13 @@ msgstr "Ablaufzeit der QR-Code-Bildseite" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportieren" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportieren" @@ -9904,8 +9983,8 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9976,7 +10055,7 @@ msgstr "Zu verfolgendes Feld" msgid "Field type cannot be changed for {0}" msgstr "Feldtyp kann nicht für {0} geändert werden" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "Das Feld {0} existiert nicht auf {1}" @@ -10019,7 +10098,7 @@ msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Feldname ist auf 64 Zeichen ({0})" @@ -10035,7 +10114,7 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird." msgid "Fieldname {0} appears multiple times" msgstr "Feldname {0} erscheint mehrfach" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten" @@ -10087,6 +10166,10 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10252,6 +10335,14 @@ msgstr "Name des Filters" msgid "Filter Values" msgstr "Werte filtern" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filter..." @@ -10463,7 +10554,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Folgen" @@ -10471,7 +10562,7 @@ msgstr "Folgen" msgid "Followed by" msgstr "Gefolgt von" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Die folgenden Berichtsfilter haben fehlende Werte:" @@ -10495,10 +10586,6 @@ msgstr "Den folgende Feldern fehlen Werte" msgid "Following fields have missing values:" msgstr "Den folgende Feldern fehlen Werte:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Die folgenden Links in der E-Mail sind defekt: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10660,7 +10747,7 @@ msgstr "Für Benutzer" msgid "For Value" msgstr "Für Wert" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." @@ -10916,15 +11003,13 @@ msgid "Friday" msgstr "Freitag" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Von" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Von" @@ -10940,7 +11025,7 @@ msgstr "Von-Datum" msgid "From Date Field" msgstr "Von-Datum-Feld" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Vom Dokumenttyp" @@ -10991,7 +11076,7 @@ msgstr "Volle Breite" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Funktion" @@ -11000,10 +11085,14 @@ msgstr "Funktion" msgid "Function Based On" msgstr "Funktion basiert auf" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "Funktion {0} ist nicht freigegeben." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden" @@ -11065,7 +11154,7 @@ msgstr "Allgemein" msgid "Generate Keys" msgstr "Schlüssel generieren" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Neuen Bericht erstellen" @@ -11073,8 +11162,8 @@ msgstr "Neuen Bericht erstellen" msgid "Generate Random Password" msgstr "Zufälliges Passwort generieren" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Tracking-URL generieren" @@ -11189,7 +11278,7 @@ msgstr "Globale Verknüpfungen" msgid "Global Unsubscribe" msgstr "Global abbestellen" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Gehen" @@ -11353,8 +11442,6 @@ msgstr "Google-Kontakte - Kontakt in Google-Kontakten {0} konnte nicht aktualisi msgid "Google Contacts Id" msgstr "Google-Kontakt-ID" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11391,6 +11478,7 @@ msgstr "Google-Dienste" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11485,6 +11573,10 @@ msgstr "Nach Typ gruppieren" msgid "Group By field is required to create a dashboard chart" msgstr "Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Gruppen-Knoten" @@ -11499,7 +11591,7 @@ msgstr "Gruppenobjektklasse" msgid "Group your custom doctypes under modules" msgstr "Gruppieren Sie Ihre benutzerdefinierten Doctypes unter Modulen" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Gruppiert nach {0}" @@ -11533,7 +11625,6 @@ msgstr "HH: mm: ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11547,11 +11638,10 @@ msgstr "HH: mm: ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11780,7 +11870,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Hier ist Ihre Tracking-URL" @@ -11816,12 +11906,17 @@ msgstr "Versteckt" msgid "Hidden Fields" msgstr "Versteckte Felder" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Ausblenden" @@ -11847,7 +11942,7 @@ msgstr "Buttons ausblenden" #. Label of the hide_cta (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Hide CTA" -msgstr "CTA ausblenden" +msgstr "Aufruf zum Handeln ausblenden" #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' @@ -11859,7 +11954,7 @@ msgstr "Kopie ausblenden" #. Label of the hide_custom (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "Benutzerdefinierte Dokumenttypen und Berichte ausblenden" +msgstr "Benutzerdefinierte DocTypes und Berichte ausblenden" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11868,7 +11963,7 @@ msgstr "Benutzerdefinierte Dokumenttypen und Berichte ausblenden" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Days" -msgstr "Tage verstecken" +msgstr "Tage ausblenden" #. Label of the hide_descendants (Check) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json @@ -11888,7 +11983,7 @@ msgstr "Fehler ausblenden" #: frappe/printing/page/print_format_builder/print_format_builder.js:488 msgid "Hide Label" -msgstr "" +msgstr "Bezeichnung ausblenden" #. Label of the hide_login (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -11898,7 +11993,7 @@ msgstr "Login ausblenden" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "Vorschau verbergen" +msgstr "Vorschau ausblenden" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -11928,7 +12023,7 @@ msgstr "Seitenleiste, Menü und Kommentare ausblenden" msgid "Hide Standard Menu" msgstr "Standardmenü ausblenden" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Schlagworte ausblenden" @@ -11949,7 +12044,7 @@ msgstr "Details ausblenden" #. Label of the hide_footer (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide footer" -msgstr "Fußzeile verstecken" +msgstr "Fußzeile ausblenden" #. Label of the hide_footer_in_auto_email_reports (Check) field in DocType #. 'System Settings' @@ -11965,7 +12060,7 @@ msgstr "Registrierung in der Fußzeile ausblenden" #. Label of the hide_navbar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide navbar" -msgstr "Navigationsleiste verstecken" +msgstr "Navigationsleiste ausblenden" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json @@ -11983,7 +12078,7 @@ msgstr "Die Regel mit der höheren Priorität wird zuerst angewendet" msgid "Highlight" msgstr "Hervorheben" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" @@ -12001,7 +12096,7 @@ msgstr "Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort e #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 #: frappe/www/message.html:29 msgid "Home" -msgstr "Startseite" +msgstr "Start" #. Label of the home_page (Data) field in DocType 'Role' #. Label of the home_page (Data) field in DocType 'Website Settings' @@ -12054,22 +12149,32 @@ msgstr "Stündliche Wartung" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hourly rate limit for generating password reset links" -msgstr "Stundensatzlimit zum Generieren von Links zum Zurücksetzen von Passwörtern" +msgstr "Stündliches Limit zum Generieren von Links zum Zurücksetzen von Passwörtern" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Stunden" #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Wie soll diese Währung formatiert werden? Wenn nichts festgelegt ist, werden die Standardeinstellungen verwendet" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Vermutlich haben Sie noch keinen Zugang zu einem Arbeitsbereich, aber Sie können einen für sich selbst erstellen. Klicken Sie dafür auf die Schaltfläche Arbeitsbereich erstellen.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12094,7 +12199,7 @@ msgstr "ID (Name)" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss" +msgstr "ID (Name) der Entität, deren Eigenschaft festgelegt werden muss" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -12474,7 +12579,7 @@ msgstr "Bildfeld muss Typ anhängen Bild" msgid "Image link '{0}' is not valid" msgstr "Bild-Link '{0}' ist ungültig" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Bild optimiert" @@ -12522,7 +12627,7 @@ msgstr "Implizit" msgid "Import" msgstr "Importieren" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Importieren" @@ -12750,11 +12855,15 @@ msgstr "Thema aus Apps einschließen" msgid "Include Web View Link in Email" msgstr "Dokument Web View Link per E-Mail senden" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Filter einbeziehen" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Einrückung einschließen" @@ -12821,11 +12930,11 @@ msgstr "Falscher Benutzer oder Passwort" msgid "Incorrect Verification code" msgstr "Falscher Bestätigungscode" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Falscher Wert in Zeile {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Falscher Wert:" @@ -12912,7 +13021,7 @@ msgstr "Darüber einfügen" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Einfügen nach" @@ -12977,11 +13086,11 @@ msgstr "Anweisungen" msgid "Instructions Emailed" msgstr "Anweisungen per E-Mail gesendet" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Unzureichende Berechtigungsstufe für {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Unzureichende Berechtigung für {0}" @@ -13103,7 +13212,7 @@ msgstr "Ungültig" msgid "Invalid \"depends_on\" expression" msgstr "Ungültiger \"depends_on\" Ausdruck" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ungültiger "abhängiger_on" -Ausdruck im Filter {0}" @@ -13131,7 +13240,7 @@ msgstr "Ungültige Bedingung: {}" msgid "Invalid Credentials" msgstr "Ungültige Anmeldeinformationen" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Ungültiges Datum" @@ -13139,7 +13248,7 @@ msgstr "Ungültiges Datum" msgid "Invalid DocType" msgstr "Ungültiger DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Ungültiger DocType: {0}" @@ -13151,6 +13260,11 @@ msgstr "Ungültiger Feldname" msgid "Invalid File URL" msgstr "Ungültige Datei-URL" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Ungültiges Filterformat für Feld {0} des Typs {1}. Versuchen Sie, das Filtersymbol im Feld zu verwenden, um es korrekt zu setzen" @@ -13163,7 +13277,7 @@ msgstr "Ungültiger Filterwert" msgid "Invalid Home Page" msgstr "Ungültige Startseite" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Ungültige Verknüpfung" @@ -13197,7 +13311,7 @@ msgstr "Ungültige Option" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Ungültiger Postausgang Server oder Port: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Ungültige Ausgabeformat" @@ -13209,13 +13323,13 @@ msgstr "Ungültige Überschreibung" msgid "Invalid Parameters." msgstr "Ungültige Parameter." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Ungültiges Passwort" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Ungültige Telefonnummer" @@ -13259,11 +13373,39 @@ msgstr "Ungültiges Webhook Geheimnis" msgid "Invalid aggregate function" msgstr "Ungültige Aggregatfunktion" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Ungültige Spalte" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Ungültiger Status" @@ -13275,10 +13417,30 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Ungültiges Feldformat für SELECT: {0}. Feldnamen müssen einfach, mit ` (backtick), tabellenqualifiziert, mit Alias oder '*' sein." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Ungültiger Feldname {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ungültige Feldname '{0}' in auton" @@ -13287,11 +13449,26 @@ msgstr "Ungültige Feldname '{0}' in auton" msgid "Invalid file path: {0}" msgstr "Ungültiger Dateipfad: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Ungültiger Filter: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13313,10 +13490,22 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import" msgid "Invalid redirect regex in row #{}: {}" msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Ungültige Anfrageargumente" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Ungültige Vorlagendatei für den Import" @@ -13467,12 +13656,12 @@ msgstr "Ist Hauptkontakt" #. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "Ist primär mobil" +msgstr "Ist primäre Handynummer" #. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "Ist das Haupttelefon" +msgstr "Ist Haupttelefon" #. Label of the is_private (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -13493,7 +13682,7 @@ msgstr "Ist Veröffentlicht Feld" #: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" -msgstr "Ist Veröffentlicht Feld muss eine gültige Feldname sein" +msgstr "Ist Veröffentlicht Feld muss ein gültiger Feldname sein" #. Label of the is_query_report (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json @@ -13724,8 +13913,8 @@ msgstr "Job läuft nicht." msgid "Join video conference with {0}" msgstr "Videokonferenz mit {0} beitreten" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Zum Feld springen" @@ -13758,11 +13947,11 @@ msgstr "Kanban-Tafel Spalte" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Kanban-Tafel Name" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban-Einstellungen" @@ -14050,7 +14239,7 @@ msgstr "Bezeichnung ist zwingend erforderlich" msgid "Landing Page" msgstr "Landing Page" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Querformat" @@ -14346,7 +14535,7 @@ msgstr "Letter" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14474,6 +14663,10 @@ msgstr "Likes" msgid "Limit" msgstr "Limit" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14656,7 +14849,7 @@ msgstr "Verknüpfungen" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Liste" @@ -14686,7 +14879,7 @@ msgstr "Listenfilter" msgid "List Settings" msgstr "Listeneinstellungen" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Listeneinstellungen" @@ -14737,6 +14930,7 @@ msgid "Load Balancing" msgstr "Lastverteilung" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14757,7 +14951,7 @@ msgstr "Mehr laden" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Laden" @@ -14969,6 +15163,11 @@ msgstr "Login mit Benutzername und Passwort ist nicht erlaubt." msgid "Login with {0}" msgstr "Anmelden mit {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15155,7 +15354,7 @@ msgstr "Bedingung für Pflichtfeld" msgid "Mandatory Depends On (JS)" msgstr "Bedingung für Pflichtfeld (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Pflichtangaben fehlen:" @@ -15255,11 +15454,9 @@ msgstr "Als Spam markieren" msgid "Mark as Unread" msgstr "Als ungelesen markieren" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15380,7 +15577,7 @@ msgstr "Bedeutung von Buchen, Stornieren, Berichtigen" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15593,7 @@ msgstr "Treffen" #: frappe/email/doctype/notification/notification.js:196 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" -msgstr "Bedingungen erfüllen?" +msgstr "Bedingung erfüllt?" #. Group in Email Group's connections #: frappe/email/doctype/email_group/email_group.json @@ -15416,7 +15613,7 @@ msgstr "Speichernutzung in MB" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Mention" -msgstr "Erwähnen" +msgstr "Erwähnung" #. Label of the enable_email_mention (Check) field in DocType 'Notification #. Settings' @@ -15448,7 +15645,6 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15461,11 +15657,10 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15476,20 +15671,10 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Nachricht" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Nachricht (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Nachricht (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" -msgstr "Mitteilungsbeispiele" +msgstr "Nachrichtenbeispiele" #. Label of the message_id (Small Text) field in DocType 'Communication' #. Label of the message_id (Small Text) field in DocType 'Email Queue' @@ -15501,18 +15686,18 @@ msgstr "Nachrichten-ID" #. Label of the message_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "Mitteilungsparameter" +msgstr "Nachrichtenparameter" #: frappe/templates/includes/contact.js:36 msgid "Message Sent" -msgstr "Mitteilung gesendet" +msgstr "Nachricht gesendet" #. Label of the message_type (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Type" msgstr "Nachrichtentyp" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Nachricht abgeschnitten" @@ -15527,7 +15712,7 @@ msgstr "Nachricht nicht eingerichtet" #. Description of the 'Success message' (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Message to be displayed on successful completion" -msgstr "Nachricht, die nach erfolgreichem Abschluss angezeigt werden soll" +msgstr "Nachricht, die nach erfolgreicher Fertigstellung angezeigt werden soll" #. Label of the message_id (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json @@ -15574,22 +15759,28 @@ msgstr "Meta-Titel" #. Label of the meta_description (Small Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta description" -msgstr "" +msgstr "Meta-Beschreibung" #. Label of the meta_image (Attach Image) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta image" -msgstr "" +msgstr "Meta-Bild" #. Label of the meta_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta title" -msgstr "" +msgstr "Meta-Titel" #: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" msgstr "Metatitel für SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15609,7 +15800,7 @@ msgstr "Metatitel für SEO" msgid "Method" msgstr "Methode" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Methode nicht erlaubt" @@ -15659,20 +15850,25 @@ msgstr "Mindest-Passwort-Score" msgid "Minor" msgstr "Minor" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minuten" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" -msgstr "" +msgstr "Minuten danach" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Before" -msgstr "" +msgstr "Minuten vorher" #. Label of the minutes_offset (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Offset" -msgstr "" +msgstr "Minuten Versatz" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 @@ -15698,7 +15894,7 @@ msgstr "Fehlendes Feld" msgid "Missing Fields" msgstr "Nicht ausgefüllte Felder" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Fehlende Filter erforderlich" @@ -15706,7 +15902,7 @@ msgstr "Fehlende Filter erforderlich" msgid "Missing Permission" msgstr "Fehlende Berechtigung" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Fehlender Wert" @@ -15715,11 +15911,11 @@ msgstr "Fehlender Wert" #: frappe/public/js/workflow_builder/store.js:97 #: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" -msgstr "Angaben zu fehlenden Werten erforderlich" +msgstr "Fehlende Werte erforderlich" #: frappe/www/login.py:107 msgid "Mobile" -msgstr "Mobil" +msgstr "Mobiltelefon" #. Label of the mobile_no (Data) field in DocType 'Contact' #. Label of the mobile_no (Data) field in DocType 'User' @@ -15772,7 +15968,7 @@ msgstr "Geändert von" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15854,7 +16050,7 @@ msgstr "Module" #. Label of the modules_html (HTML) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "Modul-HTML" +msgstr "Modul HTML" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -15911,7 +16107,7 @@ msgstr "Monatlich" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Monthly Long" -msgstr "Monatlich lang" +msgstr "Monatlich Lang" #: frappe/public/js/frappe/form/link_selector.js:39 #: frappe/public/js/frappe/form/multi_select_dialog.js:45 @@ -15928,7 +16124,7 @@ msgstr "Weiter" #. Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "More Info" -msgstr "Weitere Informationen" +msgstr "Weitere Info" #. Label of the more_info (Section Break) field in DocType 'Contact' #. Label of the additional_info (Section Break) field in DocType 'Activity Log' @@ -16011,7 +16207,7 @@ msgstr "Gehe zu Zeilennummer" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Move to next step when clicked inside highlighted area." -msgstr "Zum nächsten Schritt bewegen, wenn innerhalb des markierten Bereichs geklickt wird." +msgstr "Zum nächsten Schritt gehen, wenn innerhalb des markierten Bereichs geklickt wird." #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' @@ -16054,7 +16250,7 @@ msgstr "Muss in '()' eingeschlossen sein und '{0}' enthalten, was ein Platzhalte msgid "Must be of type \"Attach Image\"" msgstr "Muss vom Typ „Bild anhängen“ sein" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen." @@ -16072,7 +16268,7 @@ msgid "Mx" msgstr "Divers" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16216,12 +16412,12 @@ msgstr "Vorlage für Navigationsleiste" msgid "Navbar Template Values" msgstr "Navigationsleiste-Vorlagenwerte" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Liste nach unten navigieren" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Liste nach oben navigieren" @@ -16240,10 +16436,14 @@ msgstr "Navigationseinstellungen" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Negativer Wert" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Schachtelfehler. Bitte den Administrator kontaktieren." @@ -16326,7 +16526,7 @@ msgstr "Neues Ereignis" msgid "New Folder" msgstr "Neuer Ordner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Neue Kanban-Tafel" @@ -16349,10 +16549,6 @@ msgstr "Neue Nachricht von der Webseite Kontaktseite" msgid "New Name" msgstr "Neuer Name" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Neuer Newsletter" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Neue Benachrichtigung" @@ -16365,7 +16561,7 @@ msgstr "Neue Zahlenkarte" msgid "New Onboarding" msgstr "Neues Onboarding" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Neues Passwort" @@ -16410,7 +16606,26 @@ msgstr "Neuer Workflow-Name" msgid "New Workspace" msgstr "Neuer Arbeitsbereich" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Das neue Passwort darf nicht mit dem alten Passwort identisch sein" @@ -16434,7 +16649,7 @@ msgstr "Neuer Wert muss gesetzt werden" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16442,19 +16657,19 @@ msgstr "Neuer Wert muss gesetzt werden" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Neu {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Neu {0} erstellt" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Neues {0} {1} zum Dashboard hinzugefügt {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Neue {0} {1} erstellt" @@ -16466,52 +16681,17 @@ msgstr "Neu {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Newsletter" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Newsletter-Anhang" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Rundbrief E-Mail-Gruppe" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Newsletter-Manager" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Newsletter wurde bereits gesendet" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Newsletter muss veröffentlicht werden, um Webview-Link in der E-Mail zu senden" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Der Newsletter sollte mindestens einen Empfänger haben" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Newsletter" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16537,7 +16717,7 @@ msgstr "Nächste 30 Tage" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" -msgstr "" +msgstr "Nächste 6 Monate" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" @@ -16566,11 +16746,11 @@ msgstr "Nächste Formular-Tour" #: frappe/public/js/frappe/ui/filters/filter.js:696 msgid "Next Month" -msgstr "" +msgstr "Nächster Monat" #: frappe/public/js/frappe/ui/filters/filter.js:700 msgid "Next Quarter" -msgstr "" +msgstr "Nächstes Quartal" #. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -16600,7 +16780,7 @@ msgstr "Nächstes Synchronisierungstoken" #: frappe/public/js/frappe/ui/filters/filter.js:692 msgid "Next Week" -msgstr "" +msgstr "Nächste Woche" #: frappe/public/js/frappe/ui/filters/filter.js:708 msgid "Next Year" @@ -16628,7 +16808,7 @@ msgstr "Weiter bei Klick" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nein" @@ -16657,7 +16837,7 @@ msgid "No Copy" msgstr "Keine Kopie" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16769,11 +16949,11 @@ msgstr "Keine Ergebnisse" msgid "No Results found" msgstr "Keine Ergebnisse gefunden" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Keine Rollen festgelegt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Kein Auswahlfeld gefunden" @@ -16801,10 +16981,6 @@ msgstr "Keine Warnungen für heute" msgid "No automatic optimization suggestions available." msgstr "Keine automatischen Optimierungsvorschläge verfügbar." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "Keine kaputten Links im E-Mail-Inhalt gefunden" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Keine Änderungen im Dokument" @@ -16841,7 +17017,7 @@ msgstr "Noch keine Kontakte hinzugefügt." msgid "No contacts linked to document" msgstr "Keine Kontakte mit dem Dokument verknüpft" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Keine zu exportierenden Daten" @@ -16861,7 +17037,7 @@ msgstr "Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Be msgid "No failed logs" msgstr "Keine fehlgeschlagenen Protokolle" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie „Formular anpassen“, um ein benutzerdefiniertes Feld vom Typ \"Auswählen\" hinzuzufügen." @@ -16920,7 +17096,7 @@ msgstr "Keine der Zeilen (Max 500)" msgid "No of Sent SMS" msgstr "Anzahl der gesendeten SMS" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Keine Berechtigung für {0}" @@ -17013,6 +17189,12 @@ msgstr "Nicht negativ" msgid "Non-Conforming" msgstr "Nicht konform" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Keine" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Kein: Ende des Workflows" @@ -17027,7 +17209,7 @@ msgstr "Normalisierte Kopien" msgid "Normalized Query" msgstr "Normalisierte Abfrage" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nicht Erlaubt" @@ -17048,7 +17230,7 @@ msgstr "Nicht Nachkommen von" msgid "Not Equals" msgstr "Ungleich" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Nicht gefunden" @@ -17074,16 +17256,16 @@ msgstr "Nicht mit jedem Datensatz verknüpft" msgid "Not Nullable" msgstr "Nicht nullbar" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nicht zulässig" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "Keine Berechtigung zum Lesen von {0}" @@ -17093,8 +17275,8 @@ msgstr "Keine Berechtigung zum Lesen von {0}" msgid "Not Published" msgstr "Nicht veröffentlicht" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17111,7 +17293,6 @@ msgstr "ungelesen" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Nicht versendet" @@ -17128,7 +17309,7 @@ msgstr "Nicht eingetragen" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Keine gültige .csv-Datei" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Kein gültiges Benutzerbild." @@ -17144,7 +17325,7 @@ msgstr "Kein gültiger Benutzer" msgid "Not active" msgstr "Nicht aktiv" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Nicht zulässig für {0}: {1}" @@ -17185,7 +17366,7 @@ msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutze #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nicht gestattet" @@ -17363,7 +17544,7 @@ msgstr "Benachrichtigen, wenn unbeantwortet für (in Minuten)" msgid "Notify users with a popup when they log in" msgstr "Benutzer mit einem Popup benachrichtigen, wenn sie sich anmelden" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Jetzt" @@ -17506,6 +17687,11 @@ msgstr "OAuth-Provider-Einstellungen" msgid "OAuth Scope" msgstr "OAuth Scope" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth wurde aktiviert, aber nicht autorisiert. Bitte verwenden Sie die Schaltfläche „API-Zugang autorisieren“, um dies zu tun." @@ -17578,6 +17764,10 @@ msgstr "Versatz X" msgid "Offset Y" msgstr "Versatz Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Altes Passwort" @@ -17649,7 +17839,7 @@ msgstr "Am oder nach" msgid "On or Before" msgstr "Am oder vor" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "Am {0}, schrieb {1}:" @@ -17725,7 +17915,7 @@ msgstr "Kann nur vom Administrator bearbeitet werden" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Nur der Administrator darf den Recorder verwenden" @@ -17751,7 +17941,7 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten" msgid "Only allowed to export customizations in developer mode" msgstr "Anpassungen können nur im Entwicklermodus exportiert werden" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden" @@ -17782,7 +17972,7 @@ msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werde msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Nur der Administrator kann einen Standard-DocType löschen." @@ -17790,7 +17980,7 @@ msgstr "Nur der Administrator kann einen Standard-DocType löschen." msgid "Only the assignee can complete this to-do." msgstr "Nur der zugewiesene Benutzer kann diese Aufgabe abschließen." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Pro Benutzer sind nur {0} per E-Mail versandte Berichte erlaubt." @@ -17878,7 +18068,7 @@ msgstr "Konsole öffnen" msgid "Open in a new tab" msgstr "In einer neuen Registerkarte öffnen" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Listenelement öffnen" @@ -17923,7 +18113,7 @@ msgstr "Geöffnet" msgid "Operation" msgstr "Arbeitsgang" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Betreiber muss einer von {0}" @@ -17933,7 +18123,7 @@ msgstr "Betreiber muss einer von {0}" msgid "Optimize" msgstr "Optimieren" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Bild optimieren..." @@ -18022,6 +18212,10 @@ msgstr "Orange" msgid "Order" msgstr "Auftrag" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18034,7 +18228,7 @@ msgstr "Unternehmensgeschichte" msgid "Org History Heading" msgstr "Überschrift zur Unternehmensgeschichte" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Ausrichtung" @@ -18116,9 +18310,11 @@ msgstr "Eigentümer" msgid "PATCH" msgstr "PATCH" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18413,11 +18609,11 @@ msgstr "Übergeordneter Dokumententyp wird benötigt, um ein Dashboard-Diagramm msgid "Parent is the name of the document to which the data will get added to." msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Das übergeordnete Feld wurde in {0}: {1} nicht angegeben" @@ -18477,11 +18673,11 @@ msgstr "Passiv" msgid "Password" msgstr "Passwort" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Passwort E-Mail gesendet" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -18515,11 +18711,11 @@ msgstr "Passwort fehlt im E-Mail-Konto" msgid "Password not found for {0} {1} {2}" msgstr "Passwort für {0} {1} {2} nicht gefunden" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Passwort gesetzt" @@ -18527,11 +18723,11 @@ msgstr "Passwort gesetzt" msgid "Password size exceeded the maximum allowed size" msgstr "Passwort überschreitet die maximal zulässige Länge" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Passwort überschreitet die maximal zulässige Länge." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Passwörter stimmen nicht überein" @@ -18539,10 +18735,6 @@ msgstr "Passwörter stimmen nicht überein" msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Termine in der Vergangenheit sind für die Planung nicht zulässig." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Einfügen" @@ -18688,7 +18880,7 @@ msgstr "{0} endgültig übertragen?" msgid "Permanently delete {0}?" msgstr "{0} endgültig löschen?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Berechtigungsfehler" @@ -18840,11 +19032,11 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefonnr." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefonnummer {0} im Feld {1} ist ungültig." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18902,7 +19094,7 @@ msgstr "Bitte dieses Webseiten-Thema duplizieren um es anzupassen." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Bitte installieren Sie die ldap3-Bibliothek via Pip, um die ldap-Funktionalität zu nutzen." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Bitte Diagramm einstellen" @@ -18918,7 +19110,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu" msgid "Please add a valid comment." msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen" @@ -18950,7 +19142,7 @@ msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filt msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt." @@ -19015,7 +19207,7 @@ msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Bitte Pop-ups aktivieren" @@ -19032,23 +19224,23 @@ msgstr "Bitte aktivieren Sie {} bevor Sie fortfahren." msgid "Please ensure that your profile has an email address" msgstr "Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Bitte geben Sie die Access Token URL ein" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Bitte geben Sie die URL Autorisieren ein" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Bitte geben Sie die Basis-URL ein" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Bitte geben Sie die Client ID ein, bevor der Social Login aktiviert wird" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Bitte geben Sie das Client Secret ein, bevor Social Login aktiviert wird" @@ -19056,7 +19248,7 @@ msgstr "Bitte geben Sie das Client Secret ein, bevor Social Login aktiviert wird msgid "Please enter OpenID Configuration URL" msgstr "Bitte geben Sie die OpenID Konfigurations-URL ein" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Bitte geben Sie die Weiterleitungs-URL ein" @@ -19068,7 +19260,7 @@ msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Bitte geben Sie sowohl Ihre E-Mail-Adresse als auch Ihre Nachricht an, damit wir uns bei Ihnen melden können. Vielen Dank!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Bitte Passwort eingeben" @@ -19081,11 +19273,11 @@ msgstr "Bitte geben Sie das Passwort ein für: {0}" msgid "Please enter valid mobile nos" msgstr "Bitte gültige Mobilnummern eingeben" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Bitte geben Sie Ihr neues Passwort ein." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Bitte geben Sie Ihr altes Passwort ein." @@ -19101,7 +19293,7 @@ msgstr "Bitte melden Sie sich an, um einen Kommentar zu schreiben." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Bitte aktualisieren, um das neueste Dokument zu erhalten." @@ -19113,10 +19305,6 @@ msgstr "Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und msgid "Please save before attaching." msgstr "Bitte vor dem Anhängen speichern" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Bitte den Newsletter vor dem Senden speichern" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Bitte das Dokument vor der Zuweisung abspeichern" @@ -19145,11 +19333,11 @@ msgstr "Bitte wählen Sie zunächst Entitätstyp" msgid "Please select Minimum Password Score" msgstr "Bitte wählen Sie Minimum Password Score" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Bitte wählen Sie X- und Y-Felder aus" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus." @@ -19165,7 +19353,7 @@ msgstr "Bitte eine Datei oder URL auswählen" msgid "Please select a valid csv file with data" msgstr "Bitte eine gültige CSV-Datei mit Daten auswählen" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Bitte wählen Sie einen gültigen Datumsfilter" @@ -19173,7 +19361,7 @@ msgstr "Bitte wählen Sie einen gültigen Datumsfilter" msgid "Please select applicable Doctypes" msgstr "Bitte zutreffende Doctypes auswählen" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe" @@ -19203,11 +19391,11 @@ msgstr "Bitte setzen Sie E-Mail-Adresse" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Bitte legen Sie in den Druckereinstellungen eine Druckerzuordnung für dieses Druckformat fest" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Bitte Filter einstellen" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Bitte setzen Sie Filter Wert in Berichtsfiltertabelle." @@ -19231,7 +19419,7 @@ msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode ü msgid "Please setup a message first" msgstr "Bitte richten Sie zuerst eine Nachricht ein" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Bitte legen Sie das Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto fest" @@ -19243,7 +19431,7 @@ msgstr "Bitte richten Sie das Standardkonto für ausgehende E-Mails unter Extras msgid "Please specify" msgstr "Bitte angeben" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an" @@ -19280,14 +19468,19 @@ msgstr "Bitte aktualisieren Sie {}, bevor Sie fortfahren." msgid "Please use a valid LDAP search filter" msgstr "Bitte verwenden Sie einen gültigen LDAP-Suchfilter" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Bitte besuchen Sie https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key für weitere Informationen." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19333,7 +19526,7 @@ msgstr "Portal Menüpunkt" msgid "Portal Settings" msgstr "Portaleinstellungen" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Hochformat" @@ -19377,6 +19570,10 @@ msgstr "Beiträge von {0}" msgid "Posts filed under {0}" msgstr "Beiträge abgelegt unter {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19429,22 +19626,22 @@ msgstr "Vorbereiteter Bericht" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json msgid "Prepared Report Analytics" -msgstr "" +msgstr "Vorbereitete Berichtsanalytik" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" msgstr "Vorbereiteter Berichtsbenutzer" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Bericht vorbereiten" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Vorlage oberhalb der Email-Nachricht einfügen" @@ -19465,8 +19662,6 @@ msgstr "Drücken Sie zum Speichern die Eingabetaste" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19511,7 +19706,7 @@ msgstr "Vorschau auf {0}" msgid "Preview type" msgstr "Vorschautyp" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Vorschau:" @@ -19582,16 +19777,16 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Drucken" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Drucken" @@ -19646,6 +19841,11 @@ msgstr "Druckformatfehler" msgid "Print Format Field Template" msgstr "Druckformat Feldvorlage" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19656,6 +19856,10 @@ msgstr "Hilfe zu Druckformaten" msgid "Print Format Type" msgstr "Druckformattyp" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Druckformat {0} ist deaktiviert" @@ -19675,7 +19879,7 @@ msgstr "Druck-Kopfzeile" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide" -msgstr "Beim Drucken verbergen" +msgstr "Drucken ausblenden" #. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' #. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' @@ -19685,13 +19889,13 @@ msgstr "Beim Drucken verbergen" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "Druck verbergen wenn ohne Wert" +msgstr "Drucken ausblenden wenn kein Wert" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Drucksprache" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Drucken An den Drucker gesendet!" @@ -19709,7 +19913,7 @@ msgstr "Druck Server" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Druckeinstellungen" @@ -19819,6 +20023,10 @@ msgstr "Privat" msgid "Private Files (MB)" msgstr "Private Dateien (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19829,7 +20037,7 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Fortfahren" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Fahre dennoch fort" @@ -19854,7 +20062,7 @@ msgstr "Profil" msgid "Progress" msgstr "Fortschritt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projekt" @@ -19941,6 +20149,10 @@ msgstr "Öffentlich" msgid "Public Files (MB)" msgstr "Öffentliche Dateien (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19949,14 +20161,7 @@ msgstr "Öffentliche Dateien (MB)" msgid "Publish" msgstr "Veröffentlichen" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Als Webseite veröffentlichen" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19964,7 +20169,6 @@ msgstr "Als Webseite veröffentlichen" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20088,7 +20292,7 @@ msgstr "QR-Code" msgid "QR Code for Login Verification" msgstr "QR-Code für Zwei-Faktor-Authentifizierung" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ-Fach fehlgeschlagen:" @@ -20185,7 +20389,6 @@ msgstr "Warteschlange(n)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "In der Warteschlange" @@ -20208,19 +20411,11 @@ msgstr "In der Warteschlange für die Buchung. Sie können den Fortschritt über msgid "Queued for backup. You will receive an email with the download link" msgstr "Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "{0} E-Mails in der Warteschlange" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Warteschlangen" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "E-Mails in die Warteschlange stellen..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "Einreihen von {0} zur Buchung" @@ -20310,7 +20505,7 @@ msgstr "Bewertung" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Raw-Befehle" @@ -20345,7 +20540,7 @@ msgstr "AW:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "AW: {0}" @@ -20421,7 +20616,7 @@ msgstr "Vom Empfänger gelesen am" msgid "Read mode" msgstr "Lesemodus" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Lesen Sie die Dokumentation, um mehr zu erfahren" @@ -20441,7 +20636,7 @@ msgstr "Echtzeit (SocketIO)" msgid "Reason" msgstr "Grund" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Wiederaufbau" @@ -20587,12 +20782,12 @@ msgstr "Weiterleitungen" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis Cache-Server läuft nicht. Bitte Administrator/Technischen Support kontaktieren" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Wiederholen" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Letzte Aktion wiederholen" @@ -20806,11 +21001,11 @@ msgid "Referrer" msgstr "Referrer" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20849,7 +21044,7 @@ msgstr "Aktualisiere" msgid "Refreshing..." msgstr "Aktualisiere..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Registrierte aber deaktiviert" @@ -20898,7 +21093,7 @@ msgstr "Neu verknüpft" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Neu laden" @@ -20929,7 +21124,7 @@ msgstr "Zuletzt gewählten Wert merken" msgid "Remind At" msgstr "Erinnern am" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Erinnere mich" @@ -21011,7 +21206,7 @@ msgstr "Entfernt" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21039,7 +21234,7 @@ msgstr "Beschriftungen nach links und Werte nach rechts in diesem Abschnitt anor msgid "Reopen" msgstr "Wieder öffnen" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Wiederholen" @@ -21139,6 +21334,8 @@ msgstr "Allen antworten" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21154,8 +21351,11 @@ msgstr "Allen antworten" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Bericht" @@ -21224,7 +21424,7 @@ msgstr "Berichts-Manager" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Berichtsname" @@ -21276,11 +21476,11 @@ msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berich msgid "Report has no numeric fields, please change the Report Name" msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Berichtsgrenze erreicht" @@ -21288,7 +21488,7 @@ msgstr "Berichtsgrenze erreicht" msgid "Report timed out." msgstr "Zeitüberschreitung des Berichts." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Bericht erfolgreich aktualisiert" @@ -21296,7 +21496,7 @@ msgstr "Bericht erfolgreich aktualisiert" msgid "Report was not saved (there were errors)" msgstr "Bericht wurde nicht gespeichert (es gab Fehler)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus." @@ -21309,7 +21509,7 @@ msgstr "Bericht {0}" msgid "Report {0} deleted" msgstr "Bericht {0} gelöscht" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Bericht {0} ist deaktiviert" @@ -21332,7 +21532,7 @@ msgstr "Berichte" msgid "Reports & Masters" msgstr "Berichte & Stammdaten" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Berichtet bereits in der Warteschlange" @@ -21517,6 +21717,31 @@ msgstr "Auf Standardeinstellungen zurücksetzen" msgid "Reset your password" msgstr "Setze dein Passwort zurück" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21642,10 +21867,8 @@ msgstr "Widerrufen" msgid "Revoked" msgstr "Widerrufen" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21748,7 +21971,7 @@ msgstr "Rollenberechtigungen" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" @@ -21782,7 +22005,7 @@ msgstr "Rollenreplikation" msgid "Role and Level" msgstr "Rolle und Ebene" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt" @@ -21856,7 +22079,6 @@ msgstr "Rundungsmethode" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21870,7 +22092,6 @@ msgstr "Rundungsmethode" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21897,7 +22118,7 @@ msgstr "Routenumleitungen" msgid "Route: Example \"/app\"" msgstr "Route: Beispiel \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Zeile" @@ -21988,7 +22209,7 @@ msgstr "Regel" msgid "Rule Conditions" msgstr "Regelbedingungen" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Die Regel für diese Kombination aus Doctype, Rolle, Permlevel und if-owner existiert bereits." @@ -22177,12 +22398,12 @@ msgstr "Samstag" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22209,7 +22430,7 @@ msgstr "Speichern als" msgid "Save Customizations" msgstr "Anpassungen speichern" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Bericht speichern" @@ -22228,7 +22449,7 @@ msgstr "Dokument speichern." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22273,32 +22494,17 @@ msgstr "Scannen Sie den QR-Code und geben Sie den dargestellten Code ein." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Planen" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Newsletter planen" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Senden planen am" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Senden planen" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Senden zu einem späteren Zeitpunkt planen" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Geplant" @@ -22332,17 +22538,6 @@ msgstr "Geplanter Auftragstyp" msgid "Scheduled Jobs Logs" msgstr "Protokolle geplanter Jobs" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Geplanter Versand" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "in Sendewarteschlange" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Die geplante Ausführung für Skript {0} wurde aktualisiert" @@ -22411,6 +22606,11 @@ msgstr "Geltungsbereich" msgid "Scopes" msgstr "Geltungsbereiche" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22554,6 +22754,11 @@ msgstr "Suche..." msgid "Searching ..." msgstr "Suchen ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekunden" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22601,7 +22806,7 @@ msgstr "Sicherheitseinstellungen" msgid "See all Activity" msgstr "Alle Aktivitäten anzeigen" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Alle früheren Berichte anzeigen." @@ -22669,8 +22874,8 @@ msgstr "Auswählen" msgid "Select All" msgstr "Alle auswählen" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22686,7 +22891,7 @@ msgid "Select Column" msgstr "Wählen Sie Spalte" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Spalten auswählen" @@ -22736,7 +22941,7 @@ msgstr "Wählen Sie Dokumenttypen, um festzulegen, welche Benutzerberechtigungen #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Feld auswählen" @@ -22807,7 +23012,7 @@ msgid "Select Page" msgstr "Seite auswählen" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Druckformat auswählen" @@ -22899,13 +23104,13 @@ msgstr "Wählen Sie mindestens einen Datensatz für den Druck" msgid "Select atleast 2 actions" msgstr "Wählen Sie mindestens 2 Aktionen aus" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Listenelement auswählen" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Wählen Sie mehrere Listenelemente aus" @@ -22943,9 +23148,7 @@ msgstr "{0} auswählen" msgid "Self approval is not allowed" msgstr "Selbstgenehmigung ist nicht erlaubt" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Absenden" @@ -22976,11 +23179,6 @@ msgstr "Benachrichtigung senden bei" msgid "Send Email Alert" msgstr "E-Mail-Benachrichtigung senden" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "E-Mail senden am" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23028,7 +23226,7 @@ msgstr "Jetzt senden" msgid "Send Print as PDF" msgstr "Ausdruck als PDF senden" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Lesebestätigung senden" @@ -23038,38 +23236,16 @@ msgstr "Lesebestätigung senden" msgid "Send System Notification" msgstr "Systembenachrichtigung senden" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Test-E-Mail senden" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "An alle Beauftragten senden" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Abmelde-Link senden" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Link zur Webansicht senden" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Willkommens-E-Mail senden" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Test-E-Mail senden" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Erneut senden" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23113,14 +23289,10 @@ msgstr "Anfragen an diese E-Mail-Adresse senden" msgid "Send login link" msgstr "Anmelde-Link senden" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Kopie an mich senden" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Jetzt senden" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23136,19 +23308,15 @@ msgstr "Abmelde-Link in E-Mails hinzufügen" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Absender" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Absender E-Mail" @@ -23165,9 +23333,7 @@ msgid "Sender Field should have Email in options" msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Absendername" @@ -23187,18 +23353,9 @@ msgstr "Sendgrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Versand" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Sende E-Mails" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Senden..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23206,8 +23363,6 @@ msgstr "Senden..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Gesendet" @@ -23277,7 +23432,7 @@ msgstr "Serie {0} bereits verwendet in {1}" msgid "Server Action" msgstr "Serveraktion" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverfehler" @@ -23296,7 +23451,7 @@ msgstr "Server-IP-Adresse" msgid "Server Script" msgstr "Serverskript" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in der Bankkonfiguration." @@ -23335,15 +23490,15 @@ msgstr "Sitzungsstandardeinstellungen" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Sitzungsstandards" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Sitzungsstandards gespeichert" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sitzung abgelaufen" @@ -23375,7 +23530,7 @@ msgstr "Eingetragen" msgid "Set Banner from Image" msgstr "Banner aus Bild einrichten" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Diagramm setzen" @@ -23401,7 +23556,7 @@ msgstr "Filter setzen" msgid "Set Filters for {0}" msgstr "Setze Filter für {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Ebenen einstellen" @@ -23597,7 +23752,7 @@ msgstr "Einrichten Ihres Systems" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23643,7 +23798,7 @@ msgstr "Einrichtung > Benutzer" msgid "Setup > User Permissions" msgstr "Einrichtung > Benutzerberechtigungen" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Einstellungen Auto E-Mail" @@ -23732,6 +23887,8 @@ msgstr "Tastenkombinationen" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Anzeigen" @@ -23758,6 +23915,12 @@ msgstr "Absolutwerte anzeigen" msgid "Show All" msgstr "Alle anzeigen" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Kalender anzeigen" @@ -23838,7 +24001,7 @@ msgstr "Sprachauswahl anzeigen" msgid "Show Line Breaks after Sections" msgstr "Zeilenumbrüche nach Abschnitten anzeigen" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Verknüpfungen anzeigen" @@ -23875,6 +24038,12 @@ msgstr "Vorschau-Popup anzeigen" msgid "Show Processlist" msgstr "Prozessliste anzeigen" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Zugehörige Fehler anzeigen" @@ -23901,8 +24070,14 @@ msgstr "Zeige Abschnittsüberschriften" msgid "Show Sidebar" msgstr "Seitenleiste anzeigen" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Schlagworte anzeigen" @@ -23931,6 +24106,12 @@ msgstr "Tour anzeigen" msgid "Show Traceback" msgstr "Traceback anzeigen" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Warnungen anzeigen" @@ -23984,6 +24165,12 @@ msgstr "Vollständiges Formular anstelle eines Schnelleingabe-Modals anzeigen" msgid "Show in Module Section" msgstr "Im Modulbereich anzeigen" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24064,12 +24251,12 @@ msgstr "Sidebar und Kommentare" msgid "Sign Up and Confirmation" msgstr "Registrierung und Bestätigung" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Die Registrierung ist deaktiviert" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Registrieren" @@ -24155,8 +24342,10 @@ msgstr "Überspringen" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Autorisierung überspringen" @@ -24320,6 +24509,16 @@ msgstr "SocketIO-Transportmodus" msgid "Soft-Bounced" msgstr "Temporär unzustellbar" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Beim Drucken als PDF werden möglicherweise einige Spalten abgeschnitten. Versuchen Sie, die Anzahl der Spalten unter 10 zu halten." @@ -24387,7 +24586,7 @@ msgstr "Sortierfeld {0} muss ein gültiger Feldname sein" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24477,7 +24676,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kann nicht gelöscht werden." @@ -24493,7 +24692,7 @@ msgstr "Standard nicht festgelegt" msgid "Standard Permissions" msgstr "Standardberechtigungen" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Standard-Druckformat kann nicht aktualisiert werden" @@ -24617,7 +24816,7 @@ msgstr "Beginnt am" #: frappe/workflow/doctype/workflow_state/workflow_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "Bundesland" +msgstr "" #: frappe/public/js/workflow_builder/components/Properties.vue:24 msgid "State Properties" @@ -24680,7 +24879,6 @@ msgstr "Statistik Zeitintervall" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24705,7 +24903,6 @@ msgstr "Statistik Zeitintervall" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24716,7 +24913,7 @@ msgstr "Statistik Zeitintervall" msgid "Status" msgstr "Status" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status aktualisiert" @@ -24846,8 +25043,6 @@ msgstr "Unterdomäne" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24856,10 +25051,9 @@ msgstr "Unterdomäne" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Betreff" @@ -24898,7 +25092,7 @@ msgstr "Buchungs-Warteschlange" msgid "Submit" msgstr "Buchen" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Buchen" @@ -24956,7 +25150,7 @@ msgstr "Senden Sie dieses Dokument, um diesen Schritt abzuschließen." msgid "Submit this document to confirm" msgstr "Buchen Sie dieses Dokument, um zu bestätigen" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} Dokumente einreichen?" @@ -25050,7 +25244,7 @@ msgstr "Erfolgsmeldung" msgid "Success title" msgstr "Erfolgstitel" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Erfolg! Du kannst nun durchstarten 👍" @@ -25105,7 +25299,7 @@ msgstr "Optimierungen vorschlagen" msgid "Suggested Indexes" msgstr "Vorgeschlagene Indizes" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Empfohlener Benutzername: {0}" @@ -25118,7 +25312,7 @@ msgstr "Empfohlener Benutzername: {0}" msgid "Sum" msgstr "Summe" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Summe von {0}" @@ -25227,7 +25421,7 @@ msgstr "Synchronisiert" msgid "Syncing {0} of {1}" msgstr "{0} von {1} synchronisieren" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Syntaxfehler" @@ -25405,6 +25599,7 @@ msgstr "Systemprotokolle" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25464,6 +25659,11 @@ msgctxt "Number system" msgid "T" msgstr "Bio" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25534,7 +25734,7 @@ msgstr "Tabelle gekürzt" msgid "Table updated" msgstr "Tabelle aktualisiert" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabelle {0} darf nicht leer sein" @@ -25642,7 +25842,7 @@ msgstr "Vorlagenwarnungen" msgid "Templates" msgstr "Vorlagen" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Zeitweise nicht verfügbar" @@ -25661,10 +25861,6 @@ msgstr "Test-Auftrags-ID" msgid "Test Spanish" msgstr "Test Spanisch" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Test-E-Mail an {0} gesendet" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test_Ordner" @@ -25732,10 +25928,6 @@ msgstr "Vielen Dank für Ihre E-Mail" msgid "Thank you for your feedback!" msgstr "Vielen Dank für dein Feedback!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Vielen Dank für Ihre Nachricht" @@ -25804,7 +25996,7 @@ msgstr "Der Browser-API-Schlüssel, den Sie von der Google Cloud Console unter < "\"APIs & Dienste\" > \"Zugangsdaten\"\n" "erhalten" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Die Änderungen wurden rückgängig gemacht." @@ -25862,11 +26054,11 @@ msgstr "Die folgenden Zuweisungs-Tage wurden wiederholt: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "Das folgende Header-Skript fügt das aktuelle Datum zu einem Element in 'Header HTML' mit der Klasse 'header-content' hinzu" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Die folgenden Werte sind ungültig: {0}. Die Werte müssen einer der folgenden sein: {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Die folgenden Werte existieren nicht für {0}: {1}" @@ -25905,7 +26097,7 @@ msgstr "Die nächste Tour beginnt dort, wo der Benutzer aufgehört hat." msgid "The number of seconds until the request expires" msgstr "Die Anzahl der Sekunden bis die Anfrage abläuft" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Das Passwort Ihres Kontos ist abgelaufen." @@ -25922,15 +26114,15 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter " -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar" @@ -25942,7 +26134,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein." msgid "The selected document {0} is not a {1}." msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Das System wird gerade aktualisiert. Bitte probieren Sie es nach einigen Augenblicken erneut." @@ -26003,7 +26195,7 @@ msgstr "Für Sie stehen keine Veranstaltungen an." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Es gibt keine {0} für diese {1}, warum starten Sie nicht eine!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:" @@ -26032,7 +26224,7 @@ msgstr "Es gibt im Moment nichts Neues zu sehen." msgid "There is some problem with the file url: {0}" msgstr "Es gibt irgend ein Problem mit der Datei-URL: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:" @@ -26056,7 +26248,7 @@ msgstr "Es gab Fehler" msgid "There were errors while creating the document. Please try again." msgstr "Beim Erstellen des Dokuments sind Fehler aufgetreten. Bitte versuche es erneut." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut." @@ -26070,6 +26262,12 @@ msgstr "Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bi msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Diese Ankündigungen werden in einem abweisbaren Hinweis unterhalb der Navigationsleiste angezeigt." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26095,7 +26293,7 @@ msgstr "Drittpartei-Authentifizierung" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Diese Währung ist deaktiviert. Aktivieren, um in Transaktionen zu verwenden" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Dieser Kanbantafel wird privat" @@ -26119,7 +26317,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Diese Aktion ist nur für {} zulässig" @@ -26146,7 +26344,7 @@ msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Dieser Doctype hat anstehende Migrationen. Führen Sie 'bench migrate' aus, bevor Sie den Doctype ändern, damit die Änderungen nicht verloren gehen." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Dieses Dokument kann im Moment nicht gelöscht werden, da es von einem anderen Benutzer geändert wird. Bitte versuchen Sie es nach einiger Zeit erneut." @@ -26162,7 +26360,7 @@ msgstr "Dieses Dokument enthält ungespeicherte Änderungen, die möglicherweise msgid "This document is already amended, you cannot ammend it again" msgstr "Dieses Dokument wurde bereits geändert. Sie können es nicht erneut ändern" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Dieses Dokument ist derzeit gesperrt und befindet sich in der Warteschlange für die Ausführung. Bitte versuchen Sie es nach einiger Zeit erneut." @@ -26227,7 +26425,7 @@ msgstr "Dieser Geolokalisierungsanbieter wird noch nicht unterstützt." msgid "This goes above the slideshow." msgstr "Dies erscheint oberhalb der Diaschau." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen." @@ -26283,15 +26481,7 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden" msgid "This month" msgstr "Diesen Monat" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Dieser Newsletter wird voraussichtlich am {0} verschickt" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Der Versand dieses Newsletters war zu einem späteren Zeitpunkt geplant. Sind Sie sicher, dass Sie es jetzt senden möchten?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen." @@ -26299,7 +26489,7 @@ msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angez msgid "This report was generated on {0}" msgstr "Dieser Bericht wurde am {0} erstellt." -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Dieser Bericht wurde {0} generiert." @@ -26365,7 +26555,7 @@ msgstr "Dadurch wird diese Tour zurückgesetzt und für alle Benutzer sichtbar. msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Gedrosselt" @@ -26403,7 +26593,6 @@ msgstr "Donnerstag" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Zeit" @@ -26629,10 +26818,8 @@ msgid "Title of the page" msgstr "Titel der Seite" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "An" @@ -26686,7 +26873,7 @@ msgstr "Um dynamische Werte aus dem Dokument hinzuzufügen, verwenden Sie Jinja- "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Um mehr Berichte zuzulassen, aktualisieren Sie das Limit in den Systemeinstellungen." @@ -26722,7 +26909,7 @@ msgstr "Um diesen Schritt als JSON zu exportieren, verknüpfen Sie ihn in einem msgid "To generate password click {0}" msgstr "Um ein Passwort zu generieren, klicken Sie auf {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen." @@ -26797,7 +26984,7 @@ msgstr "Rasteransicht wechseln" msgid "Toggle Sidebar" msgstr "Seitenleiste umschalten" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Seitenleiste ein-/ausblenden" @@ -26818,6 +27005,12 @@ msgstr "Token" msgid "Token Cache" msgstr "Token Cache" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26845,7 +27038,7 @@ msgstr "Zu viele Dokumente" msgid "Too Many Requests" msgstr "Zu viele Anfragen" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion." @@ -26853,7 +27046,7 @@ msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Zu viele Hintergrundjobs in der Warteschlange ({0}). Bitte versuchen Sie es später erneut." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" @@ -26915,9 +27108,9 @@ msgstr "Oben rechts" msgid "Topic" msgstr "Thema" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Summe" @@ -26943,16 +27136,8 @@ msgstr "Anzahl Bilder" msgid "Total Outgoing Emails" msgstr "Anzahl ausgehender E-Mails" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Empfänger insgesamt" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Abonnenten insgesamt" @@ -26961,11 +27146,6 @@ msgstr "Abonnenten insgesamt" msgid "Total Users" msgstr "Anzahl der Benutzer" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Ansichten insgesamt" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27053,7 +27233,7 @@ msgstr "Verfolgen Sie Meilensteine für jedes Dokument" msgid "Tracking" msgstr "Nachverfolgung" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "Tracking URL generiert und in die Zwischenablage kopiert" @@ -27100,7 +27280,7 @@ msgstr "Übergänge" msgid "Translatable" msgstr "Übersetzbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Daten übersetzen" @@ -27133,6 +27313,11 @@ msgstr "Übersetzung" msgid "Translations" msgstr "Übersetzungen" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27355,33 +27540,65 @@ msgstr "URL für Dokumentation oder Hilfe" msgid "URL must start with http:// or https://" msgstr "URL muss mit http:// oder https:// beginnen" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL der Seite" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL, die beim Anklicken des Diashow-Bildes aufgerufen wird" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM-Kampagne" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM-Medium" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM-Quelle" @@ -27414,7 +27631,7 @@ msgstr "Anhang kann nicht geöffnet werden. Wurde die Datei als *.csv exportiert msgid "Unable to read file format for {0}" msgstr "Das Dateiformat für {0} kann nicht gelesen werden" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Sie können keine E-Mail senden, weil ein E-Mail-Konto fehlt. Bitte richten Sie ein Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto ein." @@ -27431,7 +27648,7 @@ msgstr "Das Dateiformat für {0} kann nicht geschrieben werden." msgid "Unassign Condition" msgstr "Bedingung für das Aufheben der Zuweisung" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Nicht abgefangene Ausnahme" @@ -27439,16 +27656,20 @@ msgstr "Nicht abgefangene Ausnahme" msgid "Unchanged" msgstr "Unverändert" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Rückgängig machen" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Letzte Aktion rückgängig machen" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Nicht mehr folgen" @@ -27471,6 +27692,13 @@ msgstr "Nicht verarbeitete E-Mails" msgid "Unique" msgstr "Einzigartig" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Unbekannt" @@ -27479,7 +27707,7 @@ msgstr "Unbekannt" msgid "Unknown Column: {0}" msgstr "Unbekannte Spalte: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Unbekannte Rundungsmethode: {}" @@ -27526,7 +27754,7 @@ msgstr "Auswahl aufheben" msgid "Unshared" msgstr "Nicht geteilt" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Abmelden" @@ -27546,10 +27774,15 @@ msgstr "Abmeldeparameter" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Abgemeldet" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Unbenannte Spalte" @@ -27672,7 +27905,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉" msgid "Updated successfully" msgstr "Erfolgreich geupdated" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Aktualisierung läuft" @@ -27950,7 +28183,7 @@ msgstr "Kann nicht von einem Benutzer erstellt werden" msgid "User Cannot Search" msgstr "Kann nicht von einem Benutzer gesucht werden" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Benutzer geändert" @@ -28056,12 +28289,12 @@ msgstr "Benutzerberechtigung" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Benutzerberechtigungen" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Benutzerberechtigungen" @@ -28162,15 +28395,15 @@ msgstr "Benutzer mit E-Mail-Adresse {0} existiert nicht" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Ein Benutzer mit der E-Mail-Adresse {0} existiert nicht im System. Bitten Sie den 'Systemadministrator', den Benutzer für Sie anzulegen." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Benutzer {0} kann nicht gelöscht werden" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Benutzer {0} kann nicht deaktiviert werden" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Benutzer {0} kann nicht umbenannt werden" @@ -28191,7 +28424,7 @@ msgstr "Der Benutzer {0} hat nicht die Berechtigung, einen Arbeitsbereich zu ers msgid "User {0} has requested for data deletion" msgstr "Benutzer {0} hat das Löschen von Daten angefordert" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Benutzer {0} hat sich als {1} ausgegeben" @@ -28220,7 +28453,7 @@ msgstr "Benutzerinfo URI" msgid "Username" msgstr "Benutzername" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Benutzername {0} ist bereits vorhanden" @@ -28360,15 +28593,15 @@ msgstr "Wert geändert" msgid "Value To Be Set" msgstr "Wert, der gesetzt werden soll" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Wert kann für {0} nicht geändert werden" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Wert kann nicht negativ sein für" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Der Wert kann für {0} nicht negativ sein: {1}" @@ -28394,6 +28627,12 @@ msgstr "Der Wert aus diesem Feld wird als Fälligkeitsdatum im ToDo festgelegt" msgid "Value must be one of {0}" msgstr "Wert muss einer von {0} sein" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28407,7 +28646,7 @@ msgstr "Wert zu groß" msgid "Value {0} missing for {1}" msgstr "Wert {0} fehlt für {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Der Wert {0} muss das gültige Dauerformat haben: dhms" @@ -28487,7 +28726,7 @@ msgstr "Ansicht" msgid "View All" msgstr "Alle ansehen" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Prüfprotokoll anzeigen" @@ -28731,7 +28970,7 @@ msgstr "Webseite" msgid "Web Page Block" msgstr "Webseitenblock" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL der Webseite" @@ -28774,6 +29013,7 @@ msgstr "Webansicht" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28832,7 +29072,6 @@ msgstr "Webhook-URL" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28840,9 +29079,7 @@ msgid "Website" msgstr "Webseite" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Website-Analysen" @@ -29042,11 +29279,11 @@ msgstr "Willkommens-URL" msgid "Welcome Workspace" msgstr "Willkommens-Arbeitsbereich" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Willkommens-E-Mail gesendet" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Willkommen auf {0}" @@ -29132,7 +29369,7 @@ msgstr "Wird nur dann angezeigt wenn Überschriften aktiviert sind" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Führt geplante Prozesse für inaktive Instanzen nur einmal pro Tag aus. Setzen Sie den Wert auf 0, um die automatische Deaktivierung des Planers zu vermeiden." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Mit Briefkopf" @@ -29273,12 +29510,12 @@ msgstr "Workflow erfolgreich aktualisiert" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Arbeitsbereich" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Arbeitsbereich {0} existiert nicht" @@ -29400,7 +29637,7 @@ msgstr "Y-Achsenfelder" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y-Feld" @@ -29461,7 +29698,7 @@ msgstr "Gelb" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29501,11 +29738,11 @@ msgstr "Sie geben sich als ein anderer Benutzer aus." msgid "You are not allowed to access this resource" msgstr "Sie dürfen nicht auf diese Ressource zuzugreifen" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Sie haben keine Berechtigung, auf diesen Eintrag in {0} zuzugreifen, da dieser in Feld {3} mit {1} '{2}' verknüpft ist" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "Sie können auf diesen Datensatz {0} nicht zugreifen, da er mit {1} '{2}' in Zeile {3}, Feld {4} verknüpft ist" @@ -29528,7 +29765,7 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Sie dürfen keinen {} Doctype exportieren" @@ -29536,11 +29773,11 @@ msgstr "Sie dürfen keinen {} Doctype exportieren" msgid "You are not allowed to print this report" msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" @@ -29556,7 +29793,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen." msgid "You are not permitted to access this page." msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen" @@ -29564,7 +29801,7 @@ msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um dar msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sie folgen nun diesem Dokument. Sie erhalten tägliche Updates per E-Mail. Sie können dies in den Benutzereinstellungen ändern." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Sie können nur die Reihenfolge verändern, keine Anwendungen entfernen oder hinzufügen." @@ -29609,7 +29846,7 @@ msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern." msgid "You can continue with the onboarding after exploring this page" msgstr "Sie können nach Erkundung dieser Seite mit dem Onboarding fortfahren" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Du kannst diese(n) {0} deaktivieren, anstatt es zu löschen." @@ -29651,7 +29888,7 @@ msgstr "Sie können eine der folgenden Optionen auswählen," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer über dasselbe Netzwerk anmelden." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern." @@ -29728,11 +29965,15 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}." @@ -29740,19 +29981,19 @@ msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten" @@ -29817,15 +30058,15 @@ msgstr "Zuletzt von Ihnen bearbeitet" msgid "You must add atleast one link." msgstr "Sie müssen mindestens einen Link hinzufügen." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Sie müssen angemeldet sein, um dieses Formular zu nutzen." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Sie benötigen die Berechtigung '{0}' auf {1} {2}, um diese Aktion durchzuführen." @@ -29845,7 +30086,7 @@ msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu kö msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Sie müssen sich im Entwicklermodus befinden, um ein Standard-Webformular zu bearbeiten" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen." @@ -29928,7 +30169,7 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt" msgid "You viewed this" msgstr "Von Ihnen angesehen" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Sie haben sich als ein anderer Benutzer über eine andere Registerkarte angemeldet. Aktualisieren Sie diese Seite, um das System weiter zu nutzen." @@ -29969,11 +30210,11 @@ msgstr "Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Ihre Zuordnung zu {0} {1} wurde von {2} entfernt" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Ihr Browser unterstützt das Audio-Element nicht." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Ihr Browser unterstützt das Videoelement nicht." @@ -29993,11 +30234,11 @@ msgstr "Ihr Formular wurde erfolgreich aktualisiert" msgid "Your login id is" msgstr "Ihre Login-ID ist" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Ihr Passwort wurde erfolgreich aktualisiert." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Ihr altes Passwort ist falsch." @@ -30011,7 +30252,7 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren." @@ -30023,7 +30264,7 @@ msgstr "Ihre Website wird gerade gewartet oder aktualisiert." msgid "Your verification code is {0}" msgstr "Ihr Bestätigungscode ist {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Null" @@ -30047,7 +30288,7 @@ msgstr "_doctype" msgid "_report" msgstr "_Bericht" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator` funktioniert nur mit `as_list=True` oder `as_dict=True`" @@ -30070,7 +30311,7 @@ msgstr "nach_einfügen" msgid "amend" msgstr "berichtigen" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "und" @@ -30127,8 +30368,8 @@ msgstr "erstellen" msgid "cyan" msgstr "türkis" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "T" @@ -30242,7 +30483,7 @@ msgstr "E-Mail" msgid "email inbox" msgstr "E-Mail-Eingang" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "leeren" @@ -30294,8 +30535,8 @@ msgstr "grau" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip nicht in PATH gefunden! Dies ist erforderlich, um ein Backup zu erstellen." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "Std" @@ -30328,7 +30569,7 @@ msgstr "beate@beispiel.de" msgid "just now" msgstr "gerade eben" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "bezeichnung" @@ -30368,8 +30609,8 @@ msgstr "login_required" msgid "long" msgstr "lang" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30558,8 +30799,8 @@ msgstr "Antwort" msgid "restored {0} as {1}" msgstr "restauriert {0} als {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "Sek" @@ -30852,7 +31093,7 @@ msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern msgid "{0} Report" msgstr "{0} Bericht(e)" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} Berichte" @@ -30893,7 +31134,7 @@ msgstr "{0} bereits abgemeldet" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} bereits abgemeldet für {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} und {1}" @@ -30901,7 +31142,7 @@ msgstr "{0} und {1}" msgid "{0} are currently {1}" msgstr "{0} sind derzeit {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} sind erforderlich" @@ -30931,7 +31172,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} dieses Dokument storniert {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} kann nicht berichtigt werden, da es nicht storniert ist. Bitte stornieren Sie das Dokument, bevor Sie eine Berichtigung erstellen." @@ -30999,7 +31240,11 @@ msgstr "{0} existiert nicht in Zeile {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "Das {0} Format konnte nicht von den Werten in dieser Spalte bestimmt werden. Standard ist {1}." @@ -31019,11 +31264,7 @@ msgstr "{0} Std" msgid "{0} has already assigned default value for {1}." msgstr "{0} hat bereits einen Standardwert für {1} zugewiesen." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} wurde zur E-Mail-Gruppe hinzugefügt." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} wurde von E-Mail-Benachrichtigungen zu {1} {2} abgemeldet" @@ -31093,6 +31334,10 @@ msgstr "{0} ist wie {1}" msgid "{0} is mandatory" msgstr "{0} ist erforderlich" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} ist kein Feld in Doctype {1}" @@ -31114,7 +31359,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ist kein gültiger DocType für Dynamic Link" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} ist keine gültige E-Mail-Adresse" @@ -31122,11 +31367,11 @@ msgstr "{0} ist keine gültige E-Mail-Adresse" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} ist kein gültiger ISO 3166 ALPHA-2-Code." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} ist kein gültiger Name" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} ist keine gültige Telefonnummer" @@ -31134,15 +31379,15 @@ msgstr "{0} ist keine gültige Telefonnummer" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} ist kein gültiger übergeordneter DocType für {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der folgenden {1} sein" @@ -31166,7 +31411,7 @@ msgstr "{0} ist keine von {1}" msgid "{0} is not set" msgstr "{0} ist nicht eingetragen" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}" @@ -31176,7 +31421,8 @@ msgstr "{0} ist eine von {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} ist erforderlich" @@ -31189,11 +31435,11 @@ msgstr "{0} ist eingetragen" msgid "{0} is within {1}" msgstr "{0} ist innerhalb von {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} Elemente ausgewählt" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} hat sich gerade als Sie ausgegeben und gab dafür diesen Grund an: {1}" @@ -31226,23 +31472,23 @@ msgstr "vor {0} Minuten" msgid "{0} months ago" msgstr "vor {0} Monaten" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} muss nach {1} liegen" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} muss mit '{1}' beginnen" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} muss gleich '{1}' sein" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} darf nichts von {1} sein" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} muss aus {1} sein" @@ -31254,7 +31500,7 @@ msgstr "{0} muss als erstes gesetzt sein" msgid "{0} must be unique" msgstr "{0} muss einmalig sein" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} muss {1} {2} sein" @@ -31283,16 +31529,12 @@ msgstr "{0} von {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} von {1} gesendet" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "{0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} oder {1}" @@ -31329,11 +31571,11 @@ msgstr "{0} hat seine Zuordnung entfernt." msgid "{0} role does not have permission on any doctype" msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} Zeile #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} wurde erfolgreich gespeichert" @@ -31375,7 +31617,7 @@ msgstr "{0} hat das Dokument {1} eingereicht" msgid "{0} subscribers added" msgstr "{0} Empfänger hinzugefügt" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0}, E-Mails dieses Typs nicht mehr annehmen." @@ -31445,11 +31687,11 @@ msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wähle msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} nicht gefunden" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen." @@ -31562,7 +31804,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} ist auf Status {2} festgelegt" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" @@ -31598,11 +31840,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field msgid "{} Complete" msgstr "{} Komplett" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Ungültiger Python-Code in Zeile {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Possibly invalid python code.
{}" @@ -31624,7 +31866,7 @@ msgstr "{}-Feld darf nicht leer sein." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert ist." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} ist keine gültige Datumszeichenfolge." diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po index 1e68f69943..9a9890b8aa 100644 --- a/frappe/locale/eo.po +++ b/frappe/locale/eo.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0" msgid "'Recipients' not specified" msgstr "crwdns90530:0crwdne90530:0" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "crwdns90532:0{0}crwdne90532:0" @@ -140,7 +140,7 @@ msgstr "crwdns90546:0crwdne90546:0" msgid "1 Google Calendar Event synced." msgstr "crwdns90548:0crwdne90548:0" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "crwdns110780:0crwdne110780:0" @@ -148,7 +148,7 @@ msgstr "crwdns110780:0crwdne110780:0" msgid "1 comment" msgstr "crwdns90550:0crwdne90550:0" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "crwdns90552:0crwdne90552:0" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "crwdns90554:0crwdne90554:0" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "crwdns90556:0crwdne90556:0" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "crwdns90558:0crwdne90558:0" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "crwdns90560:0crwdne90560:0" @@ -179,37 +179,37 @@ msgstr "crwdns142972:0crwdne142972:0" msgid "1 record will be exported" msgstr "crwdns90562:0crwdne90562:0" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "crwdns90564:0crwdne90564:0" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "crwdns90566:0crwdne90566:0" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "crwdns90568:0crwdne90568:0" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "crwdns90570:0crwdne90570:0" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "crwdns90572:0crwdne90572:0" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "crwdns90574:0crwdne90574:0" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "crwdns90576:0crwdne90576:0" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "crwdns90578:0crwdne90578:0" @@ -225,7 +225,7 @@ msgstr "crwdns90582:0crwdne90582:0" msgid "5 Records" msgstr "crwdns90584:0crwdne90584:0" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "crwdns90586:0crwdne90586:0" @@ -526,11 +526,6 @@ msgstr "crwdns127950:0crwdne127950:0" msgid "Hi," msgstr "crwdns148640:0crwdne148640:0" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "crwdns148642:0crwdne148642:0" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "crwdns90630:0{0}crwdne90630:0" @@ -557,6 +552,11 @@ msgstr "crwdns127956:0crwdne127956:0" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "crwdns90640:0crwdne90640:0" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "crwdns155934:0crwdne155934:0" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "crwdns90642:0crwdne90642:0" @@ -591,6 +591,13 @@ msgstr "crwdns127960:0crwdne127960:0" msgid "A template already exists for field {0} of {1}" msgstr "crwdns90656:0{0}crwdnd90656:0{1}crwdne90656:0" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "crwdns155936:0crwdne155936:0" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "crwdns90658:0crwdne90658:0" @@ -835,7 +842,6 @@ msgstr "crwdns155500:0crwdne155500:0" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -852,7 +858,7 @@ msgstr "crwdns128016:0crwdne128016:0" msgid "Action Complete" msgstr "crwdns90762:0crwdne90762:0" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "crwdns90764:0crwdne90764:0" @@ -901,10 +907,10 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90 #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "crwdns90776:0crwdne90776:0" @@ -966,8 +972,8 @@ msgstr "crwdns90802:0crwdne90802:0" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "crwdns90808:0crwdne90808:0" @@ -984,7 +990,7 @@ msgstr "crwdns90810:0crwdne90810:0" msgid "Add A New Rule" msgstr "crwdns90812:0crwdne90812:0" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "crwdns90814:0crwdne90814:0" @@ -1008,7 +1014,7 @@ msgstr "crwdns128034:0crwdne128034:0" msgid "Add Card to Dashboard" msgstr "crwdns142868:0crwdne142868:0" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "crwdns90824:0crwdne90824:0" @@ -1017,8 +1023,8 @@ msgid "Add Child" msgstr "crwdns90826:0crwdne90826:0" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1054,7 +1060,7 @@ msgid "Add Gray Background" msgstr "crwdns128040:0crwdne128040:0" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "crwdns90842:0crwdne90842:0" @@ -1079,7 +1085,7 @@ msgstr "crwdns90846:0crwdne90846:0" msgid "Add Query Parameters" msgstr "crwdns128042:0crwdne128042:0" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "crwdns90852:0crwdne90852:0" @@ -1089,7 +1095,7 @@ msgstr "crwdns110790:0crwdne110790:0" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "crwdns90854:0crwdne90854:0" @@ -1112,12 +1118,12 @@ msgstr "crwdns90862:0crwdne90862:0" msgid "Add Tags" msgstr "crwdns90864:0crwdne90864:0" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "crwdns90866:0crwdne90866:0" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "crwdns90868:0crwdne90868:0" @@ -1224,7 +1230,7 @@ msgid "Add tab" msgstr "crwdns142986:0crwdne142986:0" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "crwdns90894:0crwdne90894:0" @@ -1379,11 +1385,11 @@ msgstr "crwdns90948:0crwdne90948:0" msgid "Administrator" msgstr "crwdns90950:0crwdne90950:0" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "crwdns90952:0crwdne90952:0" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0" @@ -1491,6 +1497,14 @@ msgstr "crwdns128094:0crwdne128094:0" msgid "Alerts and Notifications" msgstr "crwdns90990:0crwdne90990:0" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "crwdns155510:0{0}crwdne155510:0" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "crwdns155512:0crwdne155512:0" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1531,7 +1545,6 @@ msgstr "crwdns90998:0crwdne90998:0" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1861,6 +1874,12 @@ msgstr "crwdns128186:0crwdne128186:0" msgid "Allowed Modules" msgstr "crwdns128188:0crwdne128188:0" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "crwdns155938:0crwdne155938:0" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1877,7 +1896,43 @@ msgstr "crwdns151416:0crwdne151416:0" msgid "Allowing DocType, DocType. Be careful!" msgstr "crwdns91150:0crwdne91150:0" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "crwdns155940:0crwdne155940:0" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "crwdns155942:0crwdne155942:0" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "crwdns155944:0crwdne155944:0" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "crwdns155946:0crwdne155946:0" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "crwdns155948:0crwdne155948:0" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "crwdns155950:0crwdne155950:0" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "crwdns91152:0crwdne91152:0" @@ -1968,7 +2023,7 @@ msgstr "crwdns91186:0crwdne91186:0" msgid "Amendment Naming Override" msgstr "crwdns128208:0crwdne128208:0" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "crwdns151842:0crwdne151842:0" @@ -1976,7 +2031,7 @@ msgstr "crwdns151842:0crwdne151842:0" msgid "Amendment naming rules updated." msgstr "crwdns91190:0crwdne91190:0" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "crwdns91192:0crwdne91192:0" @@ -2057,16 +2112,6 @@ msgstr "crwdns110802:0crwdne110802:0" msgid "App" msgstr "crwdns128226:0crwdne128226:0" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "crwdns128230:0crwdne128230:0" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "crwdns128232:0crwdne128232:0" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2080,21 +2125,24 @@ msgstr "crwdns110804:0crwdne110804:0" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "crwdns91230:0crwdne91230:0" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "crwdns155952:0crwdne155952:0" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "crwdns91240:0{0}crwdne91240:0" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "crwdns91242:0{0}crwdne91242:0" @@ -2159,7 +2207,7 @@ msgstr "crwdns128252:0crwdne128252:0" msgid "Apply" msgstr "crwdns142988:0crwdne142988:0" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "crwdns91270:0crwdne91270:0" @@ -2240,7 +2288,7 @@ msgstr "crwdns128272:0crwdne128272:0" msgid "Archived Columns" msgstr "crwdns91306:0crwdne91306:0" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "crwdns104470:0crwdne104470:0" @@ -2272,7 +2320,7 @@ msgstr "crwdns142994:0crwdne142994:0" msgid "Are you sure you want to discard the changes?" msgstr "crwdns91314:0crwdne91314:0" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "crwdns110808:0crwdne110808:0" @@ -2308,10 +2356,6 @@ msgstr "crwdns91328:0crwdne91328:0" msgid "Are you sure you want to save this document?" msgstr "crwdns110810:0crwdne110810:0" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "crwdns91330:0crwdne91330:0" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2344,16 +2388,16 @@ msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0" msgid "Assign Condition" msgstr "crwdns128278:0crwdne128278:0" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "crwdns91344:0crwdne91344:0" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "crwdns91346:0crwdne91346:0" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "crwdns127858:0crwdne127858:0" @@ -2505,7 +2549,7 @@ msgstr "crwdns104474:0crwdne104474:0" msgid "Attach" msgstr "crwdns91420:0crwdne91420:0" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "crwdns91430:0crwdne91430:0" @@ -2565,9 +2609,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "crwdns91456:0crwdne91456:0" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "crwdns128308:0crwdne128308:0" @@ -2594,20 +2636,17 @@ msgid "Attachment Removed" msgstr "crwdns128314:0crwdne128314:0" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "crwdns91476:0crwdne91476:0" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "crwdns91482:0crwdne91482:0" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "crwdns91484:0crwdne91484:0" @@ -2615,11 +2654,6 @@ msgstr "crwdns91484:0crwdne91484:0" msgid "Attribution" msgstr "crwdns112680:0crwdne112680:0" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "crwdns128316:0crwdne128316:0" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2664,6 +2698,11 @@ msgstr "crwdns91500:0{0}crwdne91500:0" msgid "Author" msgstr "crwdns128320:0crwdne128320:0" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "crwdns155954:0crwdne155954:0" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2898,7 +2937,7 @@ msgstr "crwdns128366:0crwdne128366:0" msgid "Average" msgstr "crwdns91602:0crwdne91602:0" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "crwdns91608:0{0}crwdne91608:0" @@ -3003,7 +3042,7 @@ msgstr "crwdns128392:0crwdne128392:0" msgid "BCC" msgstr "crwdns91650:0crwdne91650:0" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "crwdns154395:0crwdne154395:0" @@ -3046,7 +3085,7 @@ msgstr "crwdns128396:0crwdne128396:0" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "crwdns91668:0crwdne91668:0" @@ -3651,7 +3690,7 @@ msgstr "crwdns91934:0crwdne91934:0" msgid "CC" msgstr "crwdns91936:0crwdne91936:0" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "crwdns154397:0crwdne154397:0" @@ -3774,10 +3813,8 @@ msgstr "crwdns128580:0crwdne128580:0" msgid "Camera" msgstr "crwdns91992:0crwdne91992:0" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3844,7 +3881,7 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0" msgid "Cancel" msgstr "crwdns92010:0crwdne92010:0" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "crwdns92012:0crwdne92012:0" @@ -3862,11 +3899,7 @@ msgstr "crwdns92026:0crwdne92026:0" msgid "Cancel All Documents" msgstr "crwdns92028:0crwdne92028:0" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "crwdns92030:0crwdne92030:0" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "crwdns92032:0{0}crwdne92032:0" @@ -3933,11 +3966,11 @@ msgstr "crwdns92066:0{0}crwdne92066:0" msgid "Cannot cancel {0}." msgstr "crwdns92068:0{0}crwdne92068:0" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "crwdns92070:0crwdne92070:0" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "crwdns92072:0crwdne92072:0" @@ -3965,7 +3998,7 @@ msgstr "crwdns92082:0crwdne92082:0" msgid "Cannot delete Home and Attachments folders" msgstr "crwdns92084:0crwdne92084:0" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "crwdns92086:0{0}crwdnd92086:0{1}crwdnd92086:0{2}crwdnd92086:0{3}crwdnd92086:0{4}crwdne92086:0" @@ -4020,7 +4053,7 @@ msgstr "crwdns92110:0crwdne92110:0" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "crwdns92112:0crwdne92112:0" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "crwdns92114:0crwdne92114:0" @@ -4057,7 +4090,7 @@ msgstr "crwdns92126:0crwdne92126:0" msgid "Cannot import table with more than 5000 rows." msgstr "crwdns154588:0crwdne154588:0" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "crwdns92128:0{0}crwdne92128:0" @@ -4102,7 +4135,7 @@ msgstr "crwdns92146:0{0}crwdne92146:0" msgid "Cannot use sub-query in order by" msgstr "crwdns92148:0crwdne92148:0" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "crwdns92150:0{0}crwdne92150:0" @@ -4128,7 +4161,7 @@ msgstr "crwdns128586:0crwdne128586:0" msgid "Card Break" msgstr "crwdns128588:0crwdne128588:0" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "crwdns92162:0crwdne92162:0" @@ -4159,10 +4192,6 @@ msgstr "crwdns128592:0crwdne128592:0" msgid "Category Name" msgstr "crwdns128594:0crwdne128594:0" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "crwdns92178:0crwdne92178:0" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4270,7 +4299,7 @@ msgstr "crwdns128610:0crwdne128610:0" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "crwdns128612:0crwdne128612:0" @@ -4327,10 +4356,6 @@ msgstr "crwdns128622:0crwdne128622:0" msgid "Check Request URL" msgstr "crwdns92246:0crwdne92246:0" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "crwdns92248:0crwdne92248:0" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "crwdns110834:0crwdne110834:0" @@ -4354,10 +4379,6 @@ msgstr "crwdns128624:0crwdne128624:0" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "crwdns155322:0crwdne155322:0" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "crwdns92256:0crwdne92256:0" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "crwdns92258:0crwdne92258:0" @@ -4404,6 +4425,10 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "crwdns92276:0crwdne92276:0" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "crwdns155514:0{0}crwdne155514:0" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "crwdns92280:0crwdne92280:0" @@ -4443,15 +4468,19 @@ msgstr "crwdns128636:0crwdne128636:0" msgid "Clear" msgstr "crwdns92294:0crwdne92294:0" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "crwdns92296:0crwdne92296:0" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "crwdns92298:0crwdne92298:0" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "crwdns155956:0crwdne155956:0" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "crwdns104478:0crwdne104478:0" @@ -4477,7 +4506,7 @@ msgstr "crwdns128638:0crwdne128638:0" msgid "Clear User Permissions" msgstr "crwdns92306:0crwdne92306:0" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "crwdns92308:0crwdne92308:0" @@ -4493,10 +4522,6 @@ msgstr "crwdns110838:0crwdne110838:0" msgid "Click here" msgstr "crwdns92312:0crwdne92312:0" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "crwdns92314:0crwdne92314:0" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "crwdns143008:0crwdne143008:0" @@ -4576,8 +4601,10 @@ msgid "Client Credentials" msgstr "crwdns128646:0crwdne128646:0" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "crwdns128648:0crwdne128648:0" @@ -4593,6 +4620,12 @@ msgstr "crwdns128650:0crwdne128650:0" msgid "Client Information" msgstr "crwdns128652:0crwdne128652:0" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "crwdns155958:0crwdne155958:0" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4605,13 +4638,32 @@ msgstr "crwdns92352:0crwdne92352:0" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "crwdns128654:0crwdne128654:0" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "crwdns155960:0crwdne155960:0" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "crwdns155962:0crwdne155962:0" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "crwdns155964:0crwdne155964:0" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4696,7 +4748,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "crwdns92402:0crwdne92402:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "crwdns92404:0crwdne92404:0" @@ -4751,7 +4803,7 @@ msgstr "crwdns128674:0crwdne128674:0" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4838,11 +4890,11 @@ msgstr "crwdns128678:0crwdne128678:0" msgid "Columns / Fields" msgstr "crwdns128680:0crwdne128680:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "crwdns92484:0crwdne92484:0" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "crwdns92486:0{0}crwdnd92486:0{1}crwdne92486:0" @@ -5001,7 +5053,7 @@ msgstr "crwdns92554:0crwdne92554:0" msgid "Complete By" msgstr "crwdns92558:0crwdne92558:0" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "crwdns92560:0crwdne92560:0" @@ -5091,6 +5143,12 @@ msgstr "crwdns151422:0crwdne151422:0" msgid "Conditions" msgstr "crwdns128718:0crwdne128718:0" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "crwdns155966:0crwdne155966:0" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5127,7 +5185,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "crwdns111490:0crwdne111490:0" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "crwdns92612:0crwdne92612:0" @@ -5136,7 +5194,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "crwdns92614:0crwdne92614:0" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "crwdns151116:0crwdne151116:0" @@ -5149,7 +5207,7 @@ msgstr "crwdns92616:0crwdne92616:0" msgid "Confirm New Password" msgstr "crwdns92618:0crwdne92618:0" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "crwdns92620:0crwdne92620:0" @@ -5158,17 +5216,12 @@ msgstr "crwdns92620:0crwdne92620:0" msgid "Confirm Request" msgstr "crwdns92622:0crwdne92622:0" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "crwdns92624:0crwdne92624:0" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "crwdns128724:0crwdne128724:0" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "crwdns92628:0crwdne92628:0" @@ -5195,8 +5248,8 @@ msgstr "crwdns92634:0crwdne92634:0" msgid "Connected User" msgstr "crwdns128726:0crwdne128726:0" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "crwdns92642:0crwdne92642:0" @@ -5288,6 +5341,11 @@ msgstr "crwdns92678:0crwdne92678:0" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "crwdns128736:0crwdne128736:0" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "crwdns155968:0crwdne155968:0" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "crwdns127602:0{0}crwdne127602:0" @@ -5299,8 +5357,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5308,8 +5364,7 @@ msgstr "crwdns127604:0{0}crwdne127604:0" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5333,10 +5388,8 @@ msgstr "crwdns128740:0crwdne128740:0" msgid "Content Hash" msgstr "crwdns128742:0crwdne128742:0" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5393,7 +5446,7 @@ msgstr "crwdns128754:0crwdne128754:0" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "crwdns128756:0crwdne128756:0" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "crwdns92730:0crwdne92730:0" @@ -5409,7 +5462,7 @@ msgstr "crwdns148980:0crwdne148980:0" msgid "Copy error to clipboard" msgstr "crwdns92732:0crwdne92732:0" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "crwdns148722:0crwdne148722:0" @@ -5434,7 +5487,7 @@ msgstr "crwdns127608:0crwdne127608:0" msgid "Could not connect to outgoing email server" msgstr "crwdns92742:0crwdne92742:0" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "crwdns92744:0{0}crwdne92744:0" @@ -5442,6 +5495,10 @@ msgstr "crwdns92744:0{0}crwdne92744:0" msgid "Could not map column {0} to field {1}" msgstr "crwdns92746:0{0}crwdnd92746:0{1}crwdne92746:0" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "crwdns155516:0{0}crwdne155516:0" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "crwdns152054:0crwdne152054:0" @@ -5458,7 +5515,7 @@ msgstr "crwdns92748:0crwdne92748:0" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "crwdns92750:0crwdne92750:0" @@ -5497,7 +5554,7 @@ msgstr "crwdns128760:0crwdne128760:0" msgid "Country" msgstr "crwdns92764:0crwdne92764:0" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "crwdns92774:0crwdne92774:0" @@ -5529,7 +5586,7 @@ msgstr "crwdns92780:0crwdne92780:0" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5543,13 +5600,13 @@ msgstr "crwdns92790:0crwdne92790:0" msgid "Create Address" msgstr "crwdns148724:0crwdne148724:0" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "crwdns92794:0crwdne92794:0" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "crwdns92796:0crwdne92796:0" @@ -5628,11 +5685,6 @@ msgstr "crwdns92824:0{0}crwdne92824:0" msgid "Create a {0} Account" msgstr "crwdns92826:0{0}crwdne92826:0" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "crwdns111496:0crwdne111496:0" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "crwdns92828:0crwdne92828:0" @@ -5981,6 +6033,10 @@ msgstr "crwdns143304:0crwdne143304:0" msgid "Custom field renamed to {0} successfully." msgstr "crwdns111394:0{0}crwdne111394:0" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "crwdns155518:0{0}crwdnd155518:0{1}crwdne155518:0" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6014,12 +6070,12 @@ msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "crwdns93016:0crwdne93016:0" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "crwdns93018:0crwdne93018:0" @@ -6038,7 +6094,7 @@ msgstr "crwdns93022:0crwdne93022:0" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "crwdns93024:0crwdne93024:0" @@ -6164,7 +6220,7 @@ msgstr "crwdns93092:0crwdne93092:0" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "crwdns93094:0crwdne93094:0" @@ -6331,7 +6387,6 @@ msgstr "crwdns128852:0crwdne128852:0" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6395,6 +6450,11 @@ msgstr "crwdns93220:0crwdne93220:0" msgid "Day of Week" msgstr "crwdns128860:0crwdne128860:0" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "crwdns155520:0crwdne155520:0" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6659,15 +6719,16 @@ msgstr "crwdns128908:0crwdne128908:0" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "crwdns93336:0crwdne93336:0" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "crwdns93338:0crwdne93338:0" @@ -6703,7 +6764,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "crwdns143026:0crwdne143026:0" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "crwdns110882:0crwdne110882:0" @@ -6745,12 +6806,12 @@ msgstr "crwdns143038:0crwdne143038:0" msgid "Delete this record to allow sending to this email address" msgstr "crwdns93356:0crwdne93356:0" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "crwdns93358:0{0}crwdne93358:0" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "crwdns93360:0{0}crwdne93360:0" @@ -6974,6 +7035,7 @@ msgstr "crwdns128936:0crwdne128936:0" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7157,8 +7219,8 @@ msgstr "crwdns128970:0crwdne128970:0" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "crwdns93510:0crwdne93510:0" @@ -7167,7 +7229,7 @@ msgstr "crwdns93510:0crwdne93510:0" msgid "Disabled Auto Reply" msgstr "crwdns93536:0crwdne93536:0" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7325,6 +7387,7 @@ msgstr "crwdns93582:0{0}crwdne93582:0" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7570,7 +7633,7 @@ msgstr "crwdns93722:0crwdne93722:0" msgid "Document Naming Settings" msgstr "crwdns93724:0crwdne93724:0" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "crwdns93726:0crwdne93726:0" @@ -7727,7 +7790,7 @@ msgid "Document Types and Permissions" msgstr "crwdns129022:0crwdne129022:0" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "crwdns93812:0crwdne93812:0" @@ -7864,7 +7927,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "crwdns129038:0crwdne129038:0" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "crwdns93874:0crwdne93874:0" @@ -7918,7 +7981,7 @@ msgstr "crwdns93890:0crwdne93890:0" msgid "Download PDF" msgstr "crwdns111456:0crwdne111456:0" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "crwdns93892:0crwdne93892:0" @@ -8002,7 +8065,7 @@ msgid "Due Date Based On" msgstr "crwdns129052:0crwdne129052:0" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "crwdns93918:0crwdne93918:0" @@ -8117,9 +8180,9 @@ msgstr "crwdns110894:0crwdne110894:0" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8131,7 +8194,7 @@ msgstr "crwdns110894:0crwdne110894:0" msgid "Edit" msgstr "crwdns93974:0crwdne93974:0" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "crwdns93976:0crwdne93976:0" @@ -8166,11 +8229,11 @@ msgstr "crwdns110900:0crwdne110900:0" msgid "Edit Custom HTML" msgstr "crwdns93982:0crwdne93982:0" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "crwdns93984:0crwdne93984:0" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "crwdns93986:0crwdne93986:0" @@ -8345,10 +8408,9 @@ msgstr "crwdns129070:0crwdne129070:0" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8383,7 +8445,7 @@ msgstr "crwdns94072:0crwdne94072:0" msgid "Email Account Name" msgstr "crwdns129072:0crwdne129072:0" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "crwdns94076:0crwdne94076:0" @@ -8439,11 +8501,9 @@ msgstr "crwdns129076:0crwdne129076:0" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "crwdns94104:0crwdne94104:0" @@ -8492,7 +8552,7 @@ msgstr "crwdns94128:0crwdne94128:0" msgid "Email Queue Recipient" msgstr "crwdns94130:0crwdne94130:0" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "crwdns94132:0crwdne94132:0" @@ -8516,18 +8576,11 @@ msgstr "crwdns129088:0crwdne129088:0" msgid "Email Rule" msgstr "crwdns94138:0crwdne94138:0" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "crwdns129090:0crwdne129090:0" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "crwdns129092:0crwdne129092:0" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8563,7 +8616,7 @@ msgstr "crwdns129100:0crwdne129100:0" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "crwdns94160:0crwdne94160:0" @@ -8595,7 +8648,7 @@ msgstr "crwdns94174:0crwdne94174:0" msgid "Email is mandatory to create User Email" msgstr "crwdns151610:0crwdne151610:0" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "crwdns94176:0{0}crwdne94176:0" @@ -8621,7 +8674,7 @@ msgstr "crwdns148300:0crwdne148300:0" msgid "Emails are already being pulled from this account." msgstr "crwdns148302:0crwdne148302:0" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "crwdns94180:0crwdne94180:0" @@ -8634,10 +8687,18 @@ msgstr "crwdns129108:0crwdne129108:0" msgid "Embed code copied" msgstr "crwdns111510:0crwdne111510:0" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "crwdns155522:0crwdne155522:0" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "crwdns143066:0crwdne143066:0" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "crwdns155524:0crwdne155524:0" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8673,6 +8734,12 @@ msgstr "crwdns129116:0crwdne129116:0" msgid "Enable Comments" msgstr "crwdns129118:0crwdne129118:0" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "crwdns155970:0crwdne155970:0" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8832,8 +8899,8 @@ msgstr "crwdns129152:0crwdne129152:0" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "crwdns94262:0crwdne94262:0" @@ -8960,7 +9027,7 @@ msgstr "crwdns94356:0crwdne94356:0" msgid "Enter Code displayed in OTP App." msgstr "crwdns110922:0crwdne110922:0" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "crwdns94358:0crwdne94358:0" @@ -9063,7 +9130,7 @@ msgstr "crwdns143308:0crwdne143308:0" msgid "Error Message" msgstr "crwdns129186:0crwdne129186:0" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "crwdns94412:0crwdne94412:0" @@ -9101,6 +9168,14 @@ msgstr "crwdns94424:0crwdne94424:0" msgid "Error in print format on line {0}: {1}" msgstr "crwdns94426:0{0}crwdnd94426:0{1}crwdne94426:0" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "crwdns155526:0{0}crwdnd155526:0{1}crwdne155526:0" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "crwdns155528:0{0}crwdne155528:0" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "crwdns94428:0{0}crwdne94428:0" @@ -9266,7 +9341,7 @@ msgstr "crwdns155330:0crwdne155330:0" msgid "Executing..." msgstr "crwdns94496:0crwdne94496:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "crwdns94498:0{0}crwdne94498:0" @@ -9292,11 +9367,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "crwdns94504:0crwdne94504:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "crwdns94506:0crwdne94506:0" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "crwdns155530:0{0}crwdne155530:0" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "crwdns110928:0crwdne110928:0" @@ -9349,13 +9428,13 @@ msgstr "crwdns129232:0crwdne129232:0" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "crwdns94526:0crwdne94526:0" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "crwdns94528:0crwdne94528:0" @@ -9713,8 +9792,8 @@ msgstr "crwdns94660:0crwdne94660:0" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9785,7 +9864,7 @@ msgstr "crwdns129286:0crwdne129286:0" msgid "Field type cannot be changed for {0}" msgstr "crwdns94702:0{0}crwdne94702:0" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0" @@ -9828,7 +9907,7 @@ msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "crwdns94728:0{0}crwdne94728:0" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "crwdns94730:0{0}crwdne94730:0" @@ -9844,7 +9923,7 @@ msgstr "crwdns94734:0crwdne94734:0" msgid "Fieldname {0} appears multiple times" msgstr "crwdns94736:0{0}crwdne94736:0" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0" @@ -9896,6 +9975,10 @@ msgstr "crwdns94760:0crwdne94760:0" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "crwdns112694:0crwdne112694:0" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "crwdns155532:0crwdne155532:0" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10061,6 +10144,14 @@ msgstr "crwdns94836:0crwdne94836:0" msgid "Filter Values" msgstr "crwdns129314:0crwdne129314:0" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "crwdns155534:0{0}crwdne155534:0" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "crwdns155536:0crwdne155536:0" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "crwdns110940:0crwdne110940:0" @@ -10272,7 +10363,7 @@ msgid "Folio" msgstr "crwdns129350:0crwdne129350:0" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "crwdns94950:0crwdne94950:0" @@ -10280,7 +10371,7 @@ msgstr "crwdns94950:0crwdne94950:0" msgid "Followed by" msgstr "crwdns110944:0crwdne110944:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "crwdns94952:0crwdne94952:0" @@ -10304,10 +10395,6 @@ msgstr "crwdns94958:0crwdne94958:0" msgid "Following fields have missing values:" msgstr "crwdns94960:0crwdne94960:0" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "crwdns94962:0{0}crwdne94962:0" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10468,7 +10555,7 @@ msgstr "crwdns95024:0crwdne95024:0" msgid "For Value" msgstr "crwdns129392:0crwdne129392:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "crwdns95034:0crwdne95034:0" @@ -10724,15 +10811,13 @@ msgid "Friday" msgstr "crwdns129428:0crwdne129428:0" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "crwdns95150:0crwdne95150:0" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "crwdns154401:0crwdne154401:0" @@ -10748,7 +10833,7 @@ msgstr "crwdns95156:0crwdne95156:0" msgid "From Date Field" msgstr "crwdns129430:0crwdne129430:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "crwdns95162:0crwdne95162:0" @@ -10799,7 +10884,7 @@ msgstr "crwdns129438:0crwdne129438:0" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "crwdns95188:0crwdne95188:0" @@ -10808,10 +10893,14 @@ msgstr "crwdns95188:0crwdne95188:0" msgid "Function Based On" msgstr "crwdns95192:0crwdne95192:0" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "crwdns95194:0{0}crwdne95194:0" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "crwdns155538:0{0}crwdne155538:0" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "crwdns95196:0crwdne95196:0" @@ -10873,7 +10962,7 @@ msgstr "crwdns111514:0crwdne111514:0" msgid "Generate Keys" msgstr "crwdns129448:0crwdne129448:0" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "crwdns95224:0crwdne95224:0" @@ -10881,8 +10970,8 @@ msgstr "crwdns95224:0crwdne95224:0" msgid "Generate Random Password" msgstr "crwdns95226:0crwdne95226:0" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "crwdns95228:0crwdne95228:0" @@ -10997,7 +11086,7 @@ msgstr "crwdns95268:0crwdne95268:0" msgid "Global Unsubscribe" msgstr "crwdns129464:0crwdne129464:0" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "crwdns95272:0crwdne95272:0" @@ -11161,8 +11250,6 @@ msgstr "crwdns95342:0{0}crwdnd95342:0{1}crwdne95342:0" msgid "Google Contacts Id" msgstr "crwdns129480:0crwdne129480:0" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "crwdns95346:0crwdne95346:0" @@ -11199,6 +11286,7 @@ msgstr "crwdns95368:0crwdne95368:0" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11293,6 +11381,10 @@ msgstr "crwdns129502:0crwdne129502:0" msgid "Group By field is required to create a dashboard chart" msgstr "crwdns95408:0crwdne95408:0" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "crwdns155540:0crwdne155540:0" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "crwdns95410:0crwdne95410:0" @@ -11307,7 +11399,7 @@ msgstr "crwdns129504:0crwdne129504:0" msgid "Group your custom doctypes under modules" msgstr "crwdns127656:0crwdne127656:0" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "crwdns95414:0{0}crwdne95414:0" @@ -11341,7 +11433,6 @@ msgstr "crwdns129510:0crwdne129510:0" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11355,11 +11446,10 @@ msgstr "crwdns129510:0crwdne129510:0" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11588,7 +11678,7 @@ msgstr "crwdns129552:0crwdne129552:0" msgid "Helvetica Neue" msgstr "crwdns129554:0crwdne129554:0" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "crwdns95544:0crwdne95544:0" @@ -11624,12 +11714,17 @@ msgstr "crwdns110964:0crwdne110964:0" msgid "Hidden Fields" msgstr "crwdns129556:0crwdne129556:0" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "crwdns156080:0{0}crwdne156080:0" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "crwdns95568:0crwdne95568:0" @@ -11736,7 +11831,7 @@ msgstr "crwdns129578:0crwdne129578:0" msgid "Hide Standard Menu" msgstr "crwdns129580:0crwdne129580:0" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "crwdns95620:0crwdne95620:0" @@ -11791,7 +11886,7 @@ msgstr "crwdns129588:0crwdne129588:0" msgid "Highlight" msgstr "crwdns129590:0crwdne129590:0" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "crwdns95642:0crwdne95642:0" @@ -11864,20 +11959,30 @@ msgstr "crwdns155022:0crwdne155022:0" msgid "Hourly rate limit for generating password reset links" msgstr "crwdns129600:0crwdne129600:0" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "crwdns155542:0crwdne155542:0" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "crwdns129602:0crwdne129602:0" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "crwdns155972:0crwdne155972:0" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "crwdns148656:0crwdne148656:0" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12282,7 +12387,7 @@ msgstr "crwdns95854:0crwdne95854:0" msgid "Image link '{0}' is not valid" msgstr "crwdns95856:0{0}crwdne95856:0" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "crwdns95858:0crwdne95858:0" @@ -12330,7 +12435,7 @@ msgstr "crwdns129692:0crwdne129692:0" msgid "Import" msgstr "crwdns95866:0crwdne95866:0" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "crwdns95868:0crwdne95868:0" @@ -12558,11 +12663,15 @@ msgstr "crwdns95976:0crwdne95976:0" msgid "Include Web View Link in Email" msgstr "crwdns129732:0crwdne129732:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "crwdns95980:0crwdne95980:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "crwdns156082:0crwdne156082:0" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "crwdns95982:0crwdne95982:0" @@ -12629,11 +12738,11 @@ msgstr "crwdns96004:0crwdne96004:0" msgid "Incorrect Verification code" msgstr "crwdns96006:0crwdne96006:0" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "crwdns148658:0{0}crwdne148658:0" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "crwdns148660:0crwdne148660:0" @@ -12720,7 +12829,7 @@ msgstr "crwdns110970:0crwdne110970:0" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "crwdns96046:0crwdne96046:0" @@ -12785,11 +12894,11 @@ msgstr "crwdns129764:0crwdne129764:0" msgid "Instructions Emailed" msgstr "crwdns110976:0crwdne110976:0" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "crwdns96072:0{0}crwdne96072:0" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "crwdns96074:0{0}crwdne96074:0" @@ -12911,7 +13020,7 @@ msgstr "crwdns129784:0crwdne129784:0" msgid "Invalid \"depends_on\" expression" msgstr "crwdns96130:0crwdne96130:0" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "crwdns96132:0{0}crwdne96132:0" @@ -12939,7 +13048,7 @@ msgstr "crwdns96140:0crwdne96140:0" msgid "Invalid Credentials" msgstr "crwdns96142:0crwdne96142:0" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "crwdns96144:0crwdne96144:0" @@ -12947,7 +13056,7 @@ msgstr "crwdns96144:0crwdne96144:0" msgid "Invalid DocType" msgstr "crwdns96146:0crwdne96146:0" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "crwdns96148:0{0}crwdne96148:0" @@ -12959,6 +13068,11 @@ msgstr "crwdns96150:0crwdne96150:0" msgid "Invalid File URL" msgstr "crwdns96152:0crwdne96152:0" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "crwdns155544:0crwdne155544:0" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "crwdns96154:0{0}crwdnd96154:0{1}crwdne96154:0" @@ -12971,7 +13085,7 @@ msgstr "crwdns96156:0crwdne96156:0" msgid "Invalid Home Page" msgstr "crwdns96158:0crwdne96158:0" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "crwdns96160:0crwdne96160:0" @@ -13005,7 +13119,7 @@ msgstr "crwdns96170:0crwdne96170:0" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "crwdns96172:0{0}crwdne96172:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "crwdns96174:0crwdne96174:0" @@ -13017,13 +13131,13 @@ msgstr "crwdns127664:0crwdne127664:0" msgid "Invalid Parameters." msgstr "crwdns96176:0crwdne96176:0" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "crwdns96178:0crwdne96178:0" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "crwdns96180:0crwdne96180:0" @@ -13067,11 +13181,39 @@ msgstr "crwdns96194:0crwdne96194:0" msgid "Invalid aggregate function" msgstr "crwdns96196:0crwdne96196:0" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "crwdns155546:0{0}crwdne155546:0" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "crwdns155548:0{0}crwdne155548:0" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "crwdns155550:0{0}crwdne155550:0" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "crwdns155552:0{0}crwdne155552:0" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "crwdns155554:0{0}crwdne155554:0" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "crwdns96198:0crwdne96198:0" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "crwdns155556:0{0}crwdne155556:0" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "crwdns155558:0{0}crwdne155558:0" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "crwdns96200:0crwdne96200:0" @@ -13083,10 +13225,30 @@ msgstr "crwdns96202:0{0}crwdne96202:0" msgid "Invalid expression set in filter {0} ({1})" msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "crwdns155560:0{0}crwdne155560:0" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "crwdns155564:0{0}crwdne155564:0" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "crwdns96206:0{0}crwdne96206:0" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "crwdns155974:0{0}crwdne155974:0" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "crwdns155566:0{0}crwdne155566:0" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "crwdns96208:0{0}crwdne96208:0" @@ -13095,11 +13257,26 @@ msgstr "crwdns96208:0{0}crwdne96208:0" msgid "Invalid file path: {0}" msgstr "crwdns96210:0{0}crwdne96210:0" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "crwdns155568:0{0}crwdne155568:0" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "crwdns155570:0{0}crwdne155570:0" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "crwdns96212:0{0}crwdne96212:0" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "crwdns155572:0{0}crwdne155572:0" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "crwdns155574:0crwdne155574:0" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13121,10 +13298,22 @@ msgstr "crwdns96222:0crwdne96222:0" msgid "Invalid redirect regex in row #{}: {}" msgstr "crwdns96224:0crwdne96224:0" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "crwdns96226:0crwdne96226:0" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "crwdns155576:0{0}crwdne155576:0" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "crwdns155578:0{0}crwdne155578:0" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "crwdns155580:0{0}crwdne155580:0" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "crwdns96230:0crwdne96230:0" @@ -13532,8 +13721,8 @@ msgstr "crwdns96420:0crwdne96420:0" msgid "Join video conference with {0}" msgstr "crwdns96422:0{0}crwdne96422:0" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "crwdns96424:0crwdne96424:0" @@ -13566,11 +13755,11 @@ msgstr "crwdns96438:0crwdne96438:0" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "crwdns96440:0crwdne96440:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "crwdns96444:0crwdne96444:0" @@ -13858,7 +14047,7 @@ msgstr "crwdns96572:0crwdne96572:0" msgid "Landing Page" msgstr "crwdns129930:0crwdne129930:0" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "crwdns96576:0crwdne96576:0" @@ -14154,7 +14343,7 @@ msgstr "crwdns129986:0crwdne129986:0" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14282,6 +14471,10 @@ msgstr "crwdns130010:0crwdne130010:0" msgid "Limit" msgstr "crwdns130012:0crwdne130012:0" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "crwdns155582:0crwdne155582:0" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14464,7 +14657,7 @@ msgstr "crwdns96842:0crwdne96842:0" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "crwdns130052:0crwdne130052:0" @@ -14494,7 +14687,7 @@ msgstr "crwdns96864:0crwdne96864:0" msgid "List Settings" msgstr "crwdns130060:0crwdne130060:0" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "crwdns96868:0crwdne96868:0" @@ -14545,6 +14738,7 @@ msgid "Load Balancing" msgstr "crwdns130066:0crwdne130066:0" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14565,7 +14759,7 @@ msgstr "crwdns143088:0crwdne143088:0" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "crwdns96892:0crwdne96892:0" @@ -14777,6 +14971,11 @@ msgstr "crwdns96970:0crwdne96970:0" msgid "Login with {0}" msgstr "crwdns148308:0{0}crwdne148308:0" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "crwdns155976:0crwdne155976:0" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14963,7 +15162,7 @@ msgstr "crwdns130120:0crwdne130120:0" msgid "Mandatory Depends On (JS)" msgstr "crwdns130122:0crwdne130122:0" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "crwdns97056:0crwdne97056:0" @@ -15063,11 +15262,9 @@ msgstr "crwdns97090:0crwdne97090:0" msgid "Mark as Unread" msgstr "crwdns97092:0crwdne97092:0" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15188,7 +15385,7 @@ msgstr "crwdns111006:0crwdne111006:0" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15256,7 +15453,6 @@ msgstr "crwdns97172:0crwdne97172:0" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15269,11 +15465,10 @@ msgstr "crwdns97172:0crwdne97172:0" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15284,16 +15479,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "crwdns97184:0crwdne97184:0" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "crwdns130178:0crwdne130178:0" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "crwdns130180:0crwdne130180:0" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15320,7 +15505,7 @@ msgstr "crwdns148312:0crwdne148312:0" msgid "Message Type" msgstr "crwdns130188:0crwdne130188:0" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "crwdns97214:0crwdne97214:0" @@ -15398,6 +15583,12 @@ msgstr "crwdns151434:0crwdne151434:0" msgid "Meta title for SEO" msgstr "crwdns97252:0crwdne97252:0" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "crwdns155978:0crwdne155978:0" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15417,7 +15608,7 @@ msgstr "crwdns97252:0crwdne97252:0" msgid "Method" msgstr "crwdns130200:0crwdne130200:0" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "crwdns142858:0crwdne142858:0" @@ -15467,6 +15658,11 @@ msgstr "crwdns130208:0crwdne130208:0" msgid "Minor" msgstr "crwdns130210:0crwdne130210:0" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "crwdns155584:0crwdne155584:0" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15506,7 +15702,7 @@ msgstr "crwdns97292:0crwdne97292:0" msgid "Missing Fields" msgstr "crwdns97294:0crwdne97294:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "crwdns97296:0crwdne97296:0" @@ -15514,7 +15710,7 @@ msgstr "crwdns97296:0crwdne97296:0" msgid "Missing Permission" msgstr "crwdns97298:0crwdne97298:0" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "crwdns97300:0crwdne97300:0" @@ -15580,7 +15776,7 @@ msgstr "crwdns97316:0crwdne97316:0" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15862,7 +16058,7 @@ msgstr "crwdns130242:0{0}crwdnd130242:0{0}crwdne130242:0" msgid "Must be of type \"Attach Image\"" msgstr "crwdns130244:0crwdne130244:0" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "crwdns97490:0crwdne97490:0" @@ -15880,7 +16076,7 @@ msgid "Mx" msgstr "crwdns148678:0crwdne148678:0" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16022,12 +16218,12 @@ msgstr "crwdns130264:0crwdne130264:0" msgid "Navbar Template Values" msgstr "crwdns130266:0crwdne130266:0" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "crwdns97564:0crwdne97564:0" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "crwdns97566:0crwdne97566:0" @@ -16046,10 +16242,14 @@ msgstr "crwdns130268:0crwdne130268:0" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "crwdns97572:0crwdne97572:0" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "crwdns97576:0crwdne97576:0" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "crwdns155586:0crwdne155586:0" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "crwdns97578:0crwdne97578:0" @@ -16132,7 +16332,7 @@ msgstr "crwdns97604:0crwdne97604:0" msgid "New Folder" msgstr "crwdns97606:0crwdne97606:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "crwdns97608:0crwdne97608:0" @@ -16155,10 +16355,6 @@ msgstr "crwdns97612:0crwdne97612:0" msgid "New Name" msgstr "crwdns97614:0crwdne97614:0" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "crwdns97618:0crwdne97618:0" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "crwdns97620:0crwdne97620:0" @@ -16171,7 +16367,7 @@ msgstr "crwdns111022:0crwdne111022:0" msgid "New Onboarding" msgstr "crwdns111024:0crwdne111024:0" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "crwdns97622:0crwdne97622:0" @@ -16216,7 +16412,26 @@ msgstr "crwdns97628:0crwdne97628:0" msgid "New Workspace" msgstr "crwdns97630:0crwdne97630:0" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "crwdns155980:0crwdne155980:0" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "crwdns155982:0crwdne155982:0" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "crwdns155984:0crwdne155984:0" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "crwdns97632:0crwdne97632:0" @@ -16240,7 +16455,7 @@ msgstr "crwdns130276:0crwdne130276:0" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16248,19 +16463,19 @@ msgstr "crwdns130276:0crwdne130276:0" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "crwdns97640:0{0}crwdne97640:0" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "crwdns97642:0{0}crwdne97642:0" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "crwdns97644:0{0}crwdnd97644:0{1}crwdnd97644:0{2}crwdne97644:0" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "crwdns97646:0{0}crwdnd97646:0{1}crwdne97646:0" @@ -16272,52 +16487,17 @@ msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0" msgid "New {} releases for the following apps are available" msgstr "crwdns97650:0crwdne97650:0" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "crwdns97652:0{0}crwdne97652:0" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "crwdns97654:0crwdne97654:0" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "crwdns97658:0crwdne97658:0" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "crwdns97660:0crwdne97660:0" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "crwdns97662:0crwdne97662:0" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "crwdns97664:0crwdne97664:0" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "crwdns97666:0crwdne97666:0" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "crwdns97668:0crwdne97668:0" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "crwdns97670:0crwdne97670:0" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16434,7 +16614,7 @@ msgstr "crwdns130294:0crwdne130294:0" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "crwdns97696:0crwdne97696:0" @@ -16463,7 +16643,7 @@ msgid "No Copy" msgstr "crwdns130296:0crwdne130296:0" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16575,11 +16755,11 @@ msgstr "crwdns97750:0crwdne97750:0" msgid "No Results found" msgstr "crwdns97752:0crwdne97752:0" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "crwdns97754:0crwdne97754:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "crwdns97756:0crwdne97756:0" @@ -16607,10 +16787,6 @@ msgstr "crwdns97760:0crwdne97760:0" msgid "No automatic optimization suggestions available." msgstr "crwdns127878:0crwdne127878:0" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "crwdns97762:0crwdne97762:0" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "crwdns97764:0crwdne97764:0" @@ -16647,7 +16823,7 @@ msgstr "crwdns111060:0crwdne111060:0" msgid "No contacts linked to document" msgstr "crwdns97778:0crwdne97778:0" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "crwdns97780:0crwdne97780:0" @@ -16667,7 +16843,7 @@ msgstr "crwdns97786:0crwdne97786:0" msgid "No failed logs" msgstr "crwdns111062:0crwdne111062:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "crwdns111064:0crwdne111064:0" @@ -16726,7 +16902,7 @@ msgstr "crwdns130300:0crwdne130300:0" msgid "No of Sent SMS" msgstr "crwdns130302:0crwdne130302:0" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "crwdns97808:0{0}crwdne97808:0" @@ -16819,6 +16995,12 @@ msgstr "crwdns130304:0crwdne130304:0" msgid "Non-Conforming" msgstr "crwdns148684:0crwdne148684:0" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "crwdns155986:0crwdne155986:0" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "crwdns97840:0crwdne97840:0" @@ -16833,7 +17015,7 @@ msgstr "crwdns130308:0crwdne130308:0" msgid "Normalized Query" msgstr "crwdns130310:0crwdne130310:0" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "crwdns97846:0crwdne97846:0" @@ -16854,7 +17036,7 @@ msgstr "crwdns97850:0crwdne97850:0" msgid "Not Equals" msgstr "crwdns97852:0crwdne97852:0" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "crwdns97854:0crwdne97854:0" @@ -16880,16 +17062,16 @@ msgstr "crwdns97862:0crwdne97862:0" msgid "Not Nullable" msgstr "crwdns130314:0crwdne130314:0" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "crwdns97866:0crwdne97866:0" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "crwdns97868:0{0}crwdne97868:0" @@ -16899,8 +17081,8 @@ msgstr "crwdns97868:0{0}crwdne97868:0" msgid "Not Published" msgstr "crwdns97870:0crwdne97870:0" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16917,7 +17099,6 @@ msgstr "crwdns97874:0crwdne97874:0" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "crwdns97876:0crwdne97876:0" @@ -16934,7 +17115,7 @@ msgstr "crwdns97884:0crwdne97884:0" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "crwdns97886:0crwdne97886:0" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "crwdns97888:0crwdne97888:0" @@ -16950,7 +17131,7 @@ msgstr "crwdns111082:0crwdne111082:0" msgid "Not active" msgstr "crwdns97892:0crwdne97892:0" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0" @@ -16991,7 +17172,7 @@ msgstr "crwdns97910:0crwdne97910:0" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "crwdns97912:0crwdne97912:0" @@ -17169,7 +17350,7 @@ msgstr "crwdns130332:0crwdne130332:0" msgid "Notify users with a popup when they log in" msgstr "crwdns130334:0crwdne130334:0" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "crwdns97990:0crwdne97990:0" @@ -17312,6 +17493,11 @@ msgstr "crwdns98044:0crwdne98044:0" msgid "OAuth Scope" msgstr "crwdns98048:0crwdne98048:0" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "crwdns155988:0crwdne155988:0" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "crwdns98050:0crwdne98050:0" @@ -17384,6 +17570,10 @@ msgstr "crwdns130378:0crwdne130378:0" msgid "Offset Y" msgstr "crwdns130380:0crwdne130380:0" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "crwdns155588:0crwdne155588:0" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "crwdns98074:0crwdne98074:0" @@ -17455,7 +17645,7 @@ msgstr "crwdns149004:0crwdne149004:0" msgid "On or Before" msgstr "crwdns149006:0crwdne149006:0" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "crwdns111096:0{0}crwdnd111096:0{1}crwdne111096:0" @@ -17531,7 +17721,7 @@ msgstr "crwdns98116:0crwdne98116:0" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "crwdns98118:0crwdne98118:0" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "crwdns98120:0crwdne98120:0" @@ -17557,7 +17747,7 @@ msgstr "crwdns98128:0crwdne98128:0" msgid "Only allowed to export customizations in developer mode" msgstr "crwdns98132:0crwdne98132:0" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "crwdns127690:0crwdne127690:0" @@ -17588,7 +17778,7 @@ msgstr "crwdns98144:0crwdne98144:0" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "crwdns98146:0crwdne98146:0" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "crwdns151810:0crwdne151810:0" @@ -17596,7 +17786,7 @@ msgstr "crwdns151810:0crwdne151810:0" msgid "Only the assignee can complete this to-do." msgstr "crwdns98148:0crwdne98148:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "crwdns98152:0{0}crwdne98152:0" @@ -17684,7 +17874,7 @@ msgstr "crwdns155340:0crwdne155340:0" msgid "Open in a new tab" msgstr "crwdns143102:0crwdne143102:0" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "crwdns98186:0crwdne98186:0" @@ -17729,7 +17919,7 @@ msgstr "crwdns130426:0crwdne130426:0" msgid "Operation" msgstr "crwdns130428:0crwdne130428:0" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "crwdns98200:0{0}crwdne98200:0" @@ -17739,7 +17929,7 @@ msgstr "crwdns98200:0{0}crwdne98200:0" msgid "Optimize" msgstr "crwdns98202:0crwdne98202:0" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "crwdns98204:0crwdne98204:0" @@ -17828,6 +18018,10 @@ msgstr "crwdns130436:0crwdne130436:0" msgid "Order" msgstr "crwdns130438:0crwdne130438:0" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "crwdns155590:0crwdne155590:0" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17840,7 +18034,7 @@ msgstr "crwdns130440:0crwdne130440:0" msgid "Org History Heading" msgstr "crwdns130442:0crwdne130442:0" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "crwdns98256:0crwdne98256:0" @@ -17922,9 +18116,11 @@ msgstr "crwdns98284:0crwdne98284:0" msgid "PATCH" msgstr "crwdns130460:0crwdne130460:0" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "crwdns98288:0crwdne98288:0" @@ -18219,11 +18415,11 @@ msgstr "crwdns98414:0crwdne98414:0" msgid "Parent is the name of the document to which the data will get added to." msgstr "crwdns98416:0crwdne98416:0" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "crwdns154732:0crwdne154732:0" +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "crwdns155990:0crwdne155990:0" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "crwdns98418:0{0}crwdnd98418:0{1}crwdne98418:0" @@ -18283,11 +18479,11 @@ msgstr "crwdns130516:0crwdne130516:0" msgid "Password" msgstr "crwdns98434:0crwdne98434:0" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "crwdns98448:0crwdne98448:0" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "crwdns98450:0crwdne98450:0" @@ -18321,11 +18517,11 @@ msgstr "crwdns98462:0crwdne98462:0" msgid "Password not found for {0} {1} {2}" msgstr "crwdns98464:0{0}crwdnd98464:0{1}crwdnd98464:0{2}crwdne98464:0" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "crwdns142862:0crwdne142862:0" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "crwdns98468:0crwdne98468:0" @@ -18333,11 +18529,11 @@ msgstr "crwdns98468:0crwdne98468:0" msgid "Password size exceeded the maximum allowed size" msgstr "crwdns98470:0crwdne98470:0" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "crwdns98472:0crwdne98472:0" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "crwdns98474:0crwdne98474:0" @@ -18345,10 +18541,6 @@ msgstr "crwdns98474:0crwdne98474:0" msgid "Passwords do not match!" msgstr "crwdns98476:0crwdne98476:0" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "crwdns98478:0crwdne98478:0" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "crwdns98480:0crwdne98480:0" @@ -18494,7 +18686,7 @@ msgstr "crwdns98536:0{0}crwdne98536:0" msgid "Permanently delete {0}?" msgstr "crwdns98538:0{0}crwdne98538:0" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "crwdns98540:0crwdne98540:0" @@ -18646,11 +18838,11 @@ msgstr "crwdns130562:0crwdne130562:0" msgid "Phone No." msgstr "crwdns130564:0crwdne130564:0" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18708,7 +18900,7 @@ msgstr "crwdns98624:0crwdne98624:0" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "crwdns98626:0crwdne98626:0" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "crwdns98628:0crwdne98628:0" @@ -18724,7 +18916,7 @@ msgstr "crwdns98632:0crwdne98632:0" msgid "Please add a valid comment." msgstr "crwdns98634:0crwdne98634:0" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "crwdns98636:0crwdne98636:0" @@ -18756,7 +18948,7 @@ msgstr "crwdns98648:0crwdne98648:0" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "crwdns98650:0{0}crwdne98650:0" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "crwdns98652:0crwdne98652:0" @@ -18821,7 +19013,7 @@ msgstr "crwdns98678:0crwdne98678:0" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "crwdns98680:0crwdne98680:0" @@ -18838,23 +19030,23 @@ msgstr "crwdns98684:0crwdne98684:0" msgid "Please ensure that your profile has an email address" msgstr "crwdns98686:0crwdne98686:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "crwdns98688:0crwdne98688:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "crwdns98690:0crwdne98690:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "crwdns98692:0crwdne98692:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "crwdns98694:0crwdne98694:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "crwdns98696:0crwdne98696:0" @@ -18862,7 +19054,7 @@ msgstr "crwdns98696:0crwdne98696:0" msgid "Please enter OpenID Configuration URL" msgstr "crwdns98698:0crwdne98698:0" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "crwdns98700:0crwdne98700:0" @@ -18874,7 +19066,7 @@ msgstr "crwdns98702:0crwdne98702:0" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "crwdns148318:0crwdne148318:0" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "crwdns98704:0crwdne98704:0" @@ -18887,11 +19079,11 @@ msgstr "crwdns98706:0{0}crwdne98706:0" msgid "Please enter valid mobile nos" msgstr "crwdns98708:0crwdne98708:0" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "crwdns98710:0crwdne98710:0" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "crwdns98712:0crwdne98712:0" @@ -18907,7 +19099,7 @@ msgstr "crwdns98718:0crwdne98718:0" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "crwdns98720:0crwdne98720:0" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "crwdns98722:0crwdne98722:0" @@ -18919,10 +19111,6 @@ msgstr "crwdns98724:0crwdne98724:0" msgid "Please save before attaching." msgstr "crwdns98726:0crwdne98726:0" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "crwdns98728:0crwdne98728:0" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "crwdns98730:0crwdne98730:0" @@ -18951,11 +19139,11 @@ msgstr "crwdns98742:0crwdne98742:0" msgid "Please select Minimum Password Score" msgstr "crwdns98744:0crwdne98744:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "crwdns111128:0crwdne111128:0" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "crwdns98746:0{1}crwdne98746:0" @@ -18971,7 +19159,7 @@ msgstr "crwdns98748:0crwdne98748:0" msgid "Please select a valid csv file with data" msgstr "crwdns98750:0crwdne98750:0" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "crwdns98752:0crwdne98752:0" @@ -18979,7 +19167,7 @@ msgstr "crwdns98752:0crwdne98752:0" msgid "Please select applicable Doctypes" msgstr "crwdns98754:0crwdne98754:0" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "crwdns98756:0{0}crwdne98756:0" @@ -19009,11 +19197,11 @@ msgstr "crwdns98768:0crwdne98768:0" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "crwdns98770:0crwdne98770:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "crwdns98772:0crwdne98772:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "crwdns98774:0crwdne98774:0" @@ -19037,7 +19225,7 @@ msgstr "crwdns98782:0crwdne98782:0" msgid "Please setup a message first" msgstr "crwdns98784:0crwdne98784:0" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "crwdns98788:0crwdne98788:0" @@ -19049,7 +19237,7 @@ msgstr "crwdns154306:0crwdne154306:0" msgid "Please specify" msgstr "crwdns98790:0crwdne98790:0" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "crwdns98792:0{0}crwdne98792:0" @@ -19086,14 +19274,19 @@ msgstr "crwdns98800:0crwdne98800:0" msgid "Please use a valid LDAP search filter" msgstr "crwdns98802:0crwdne98802:0" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "crwdns98804:0crwdne98804:0" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "crwdns155992:0crwdne155992:0" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "crwdns111462:0crwdne111462:0" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "crwdns155994:0crwdne155994:0" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19139,7 +19332,7 @@ msgstr "crwdns98830:0crwdne98830:0" msgid "Portal Settings" msgstr "crwdns98832:0crwdne98832:0" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "crwdns98836:0crwdne98836:0" @@ -19183,6 +19376,10 @@ msgstr "crwdns98850:0{0}crwdne98850:0" msgid "Posts filed under {0}" msgstr "crwdns98852:0{0}crwdne98852:0" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "crwdns155592:0{0}crwdne155592:0" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19242,15 +19439,15 @@ msgstr "crwdns154308:0crwdne154308:0" msgid "Prepared Report User" msgstr "crwdns98878:0crwdne98878:0" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "crwdns98880:0crwdne98880:0" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "crwdns98882:0crwdne98882:0" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "crwdns98884:0crwdne98884:0" @@ -19271,8 +19468,6 @@ msgstr "crwdns98886:0crwdne98886:0" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19317,7 +19512,7 @@ msgstr "crwdns148690:0{0}crwdne148690:0" msgid "Preview type" msgstr "crwdns143110:0crwdne143110:0" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "crwdns111132:0crwdne111132:0" @@ -19388,16 +19583,16 @@ msgstr "crwdns112704:0{0}crwdne112704:0" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "crwdns98924:0crwdne98924:0" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "crwdns98926:0crwdne98926:0" @@ -19452,6 +19647,11 @@ msgstr "crwdns98956:0crwdne98956:0" msgid "Print Format Field Template" msgstr "crwdns98958:0crwdne98958:0" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "crwdns155996:0crwdne155996:0" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19462,6 +19662,10 @@ msgstr "crwdns130624:0crwdne130624:0" msgid "Print Format Type" msgstr "crwdns130626:0crwdne130626:0" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "crwdns155998:0crwdne155998:0" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "crwdns98964:0{0}crwdne98964:0" @@ -19493,11 +19697,11 @@ msgstr "crwdns130628:0crwdne130628:0" msgid "Print Hide If No Value" msgstr "crwdns130630:0crwdne130630:0" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "crwdns111422:0crwdne111422:0" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "crwdns98984:0crwdne98984:0" @@ -19515,7 +19719,7 @@ msgstr "crwdns130632:0crwdne130632:0" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "crwdns98988:0crwdne98988:0" @@ -19625,6 +19829,10 @@ msgstr "crwdns99040:0crwdne99040:0" msgid "Private Files (MB)" msgstr "crwdns130646:0crwdne130646:0" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "crwdns156000:0crwdne156000:0" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19635,7 +19843,7 @@ msgstr "crwdns130648:0{{ reference_doctype }}crwdnd130648:0{{ reference_name }}c msgid "Proceed" msgstr "crwdns99050:0crwdne99050:0" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "crwdns99052:0crwdne99052:0" @@ -19660,7 +19868,7 @@ msgstr "crwdns130650:0crwdne130650:0" msgid "Progress" msgstr "crwdns99060:0crwdne99060:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "crwdns99062:0crwdne99062:0" @@ -19747,6 +19955,10 @@ msgstr "crwdns99086:0crwdne99086:0" msgid "Public Files (MB)" msgstr "crwdns130662:0crwdne130662:0" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "crwdns156002:0crwdne156002:0" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19755,14 +19967,7 @@ msgstr "crwdns130662:0crwdne130662:0" msgid "Publish" msgstr "crwdns99094:0crwdne99094:0" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "crwdns130664:0crwdne130664:0" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19770,7 +19975,6 @@ msgstr "crwdns130664:0crwdne130664:0" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19894,7 +20098,7 @@ msgstr "crwdns99152:0crwdne99152:0" msgid "QR Code for Login Verification" msgstr "crwdns99154:0crwdne99154:0" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "crwdns99156:0crwdne99156:0" @@ -19991,7 +20195,6 @@ msgstr "crwdns130700:0crwdne130700:0" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "crwdns99196:0crwdne99196:0" @@ -20014,19 +20217,11 @@ msgstr "crwdns99208:0{0}crwdne99208:0" msgid "Queued for backup. You will receive an email with the download link" msgstr "crwdns99212:0crwdne99212:0" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "crwdns99214:0{0}crwdne99214:0" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "crwdns130706:0crwdne130706:0" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "crwdns99216:0crwdne99216:0" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "crwdns99218:0{0}crwdne99218:0" @@ -20116,7 +20311,7 @@ msgstr "crwdns130722:0crwdne130722:0" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "crwdns99256:0crwdne99256:0" @@ -20151,7 +20346,7 @@ msgstr "crwdns99270:0crwdne99270:0" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "crwdns99272:0{0}crwdne99272:0" @@ -20227,7 +20422,7 @@ msgstr "crwdns130736:0crwdne130736:0" msgid "Read mode" msgstr "crwdns99316:0crwdne99316:0" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "crwdns99318:0crwdne99318:0" @@ -20247,7 +20442,7 @@ msgstr "crwdns130740:0crwdne130740:0" msgid "Reason" msgstr "crwdns99322:0crwdne99322:0" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "crwdns99328:0crwdne99328:0" @@ -20393,12 +20588,12 @@ msgstr "crwdns130772:0crwdne130772:0" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "crwdns99384:0crwdne99384:0" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "crwdns99386:0crwdne99386:0" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "crwdns99388:0crwdne99388:0" @@ -20612,11 +20807,11 @@ msgid "Referrer" msgstr "crwdns99526:0crwdne99526:0" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20655,7 +20850,7 @@ msgstr "crwdns111160:0crwdne111160:0" msgid "Refreshing..." msgstr "crwdns99546:0crwdne99546:0" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "crwdns99548:0crwdne99548:0" @@ -20704,7 +20899,7 @@ msgstr "crwdns130808:0crwdne130808:0" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "crwdns99566:0crwdne99566:0" @@ -20735,7 +20930,7 @@ msgstr "crwdns130810:0crwdne130810:0" msgid "Remind At" msgstr "crwdns99576:0crwdne99576:0" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "crwdns99580:0crwdne99580:0" @@ -20817,7 +21012,7 @@ msgstr "crwdns149130:0crwdne149130:0" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20845,7 +21040,7 @@ msgstr "crwdns143124:0crwdne143124:0" msgid "Reopen" msgstr "crwdns99610:0crwdne99610:0" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "crwdns99612:0crwdne99612:0" @@ -20945,6 +21140,8 @@ msgstr "crwdns99642:0crwdne99642:0" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20960,8 +21157,11 @@ msgstr "crwdns99642:0crwdne99642:0" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "crwdns99644:0crwdne99644:0" @@ -21030,7 +21230,7 @@ msgstr "crwdns99694:0crwdne99694:0" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "crwdns99696:0crwdne99696:0" @@ -21082,11 +21282,11 @@ msgstr "crwdns99720:0crwdne99720:0" msgid "Report has no numeric fields, please change the Report Name" msgstr "crwdns99722:0crwdne99722:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "crwdns99724:0crwdne99724:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "crwdns99726:0crwdne99726:0" @@ -21094,7 +21294,7 @@ msgstr "crwdns99726:0crwdne99726:0" msgid "Report timed out." msgstr "crwdns99728:0crwdne99728:0" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "crwdns99730:0crwdne99730:0" @@ -21102,7 +21302,7 @@ msgstr "crwdns99730:0crwdne99730:0" msgid "Report was not saved (there were errors)" msgstr "crwdns99732:0crwdne99732:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "crwdns99734:0crwdne99734:0" @@ -21115,7 +21315,7 @@ msgstr "crwdns99736:0{0}crwdne99736:0" msgid "Report {0} deleted" msgstr "crwdns99738:0{0}crwdne99738:0" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "crwdns99740:0{0}crwdne99740:0" @@ -21138,7 +21338,7 @@ msgstr "crwdns99746:0crwdne99746:0" msgid "Reports & Masters" msgstr "crwdns99750:0crwdne99750:0" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "crwdns99752:0crwdne99752:0" @@ -21323,6 +21523,31 @@ msgstr "crwdns99826:0crwdne99826:0" msgid "Reset your password" msgstr "crwdns99828:0crwdne99828:0" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "crwdns156004:0crwdne156004:0" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "crwdns156006:0crwdne156006:0" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "crwdns156008:0crwdne156008:0" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "crwdns156010:0crwdne156010:0" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "crwdns156012:0crwdne156012:0" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21448,10 +21673,8 @@ msgstr "crwdns99904:0crwdne99904:0" msgid "Revoked" msgstr "crwdns130900:0crwdne130900:0" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21554,7 +21777,7 @@ msgstr "crwdns99964:0crwdne99964:0" msgid "Role Permissions Manager" msgstr "crwdns99968:0crwdne99968:0" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "crwdns99970:0crwdne99970:0" @@ -21588,7 +21811,7 @@ msgstr "crwdns148702:0crwdne148702:0" msgid "Role and Level" msgstr "crwdns130914:0crwdne130914:0" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "crwdns99982:0{0}crwdne99982:0" @@ -21662,7 +21885,6 @@ msgstr "crwdns130926:0crwdne130926:0" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21676,7 +21898,6 @@ msgstr "crwdns130926:0crwdne130926:0" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21703,7 +21924,7 @@ msgstr "crwdns130930:0crwdne130930:0" msgid "Route: Example \"/app\"" msgstr "crwdns130932:0crwdne130932:0" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "crwdns100054:0crwdne100054:0" @@ -21794,7 +22015,7 @@ msgstr "crwdns130940:0crwdne130940:0" msgid "Rule Conditions" msgstr "crwdns130942:0crwdne130942:0" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "crwdns100084:0crwdne100084:0" @@ -21983,12 +22204,12 @@ msgstr "crwdns130978:0crwdne130978:0" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22015,7 +22236,7 @@ msgstr "crwdns100178:0crwdne100178:0" msgid "Save Customizations" msgstr "crwdns100180:0crwdne100180:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "crwdns100182:0crwdne100182:0" @@ -22034,7 +22255,7 @@ msgstr "crwdns100188:0crwdne100188:0" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22079,32 +22300,17 @@ msgstr "crwdns100204:0crwdne100204:0" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "crwdns100206:0crwdne100206:0" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "crwdns100208:0crwdne100208:0" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "crwdns100210:0crwdne100210:0" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "crwdns100212:0crwdne100212:0" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "crwdns130982:0crwdne130982:0" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "crwdns100216:0crwdne100216:0" @@ -22138,17 +22344,6 @@ msgstr "crwdns100228:0crwdne100228:0" msgid "Scheduled Jobs Logs" msgstr "crwdns143312:0crwdne143312:0" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "crwdns130986:0crwdne130986:0" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "crwdns130988:0crwdne130988:0" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "crwdns100240:0{0}crwdne100240:0" @@ -22217,6 +22412,11 @@ msgstr "crwdns130996:0crwdne130996:0" msgid "Scopes" msgstr "crwdns130998:0crwdne130998:0" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "crwdns156014:0crwdne156014:0" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22360,6 +22560,11 @@ msgstr "crwdns100316:0crwdne100316:0" msgid "Searching ..." msgstr "crwdns100318:0crwdne100318:0" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "crwdns155594:0crwdne155594:0" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22407,7 +22612,7 @@ msgstr "crwdns131022:0crwdne131022:0" msgid "See all Activity" msgstr "crwdns111200:0crwdne111200:0" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "crwdns100338:0crwdne100338:0" @@ -22475,8 +22680,8 @@ msgstr "crwdns100362:0crwdne100362:0" msgid "Select All" msgstr "crwdns111204:0crwdne111204:0" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22492,7 +22697,7 @@ msgid "Select Column" msgstr "crwdns100386:0crwdne100386:0" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "crwdns100388:0crwdne100388:0" @@ -22542,7 +22747,7 @@ msgstr "crwdns111206:0crwdne111206:0" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "crwdns100412:0crwdne100412:0" @@ -22613,7 +22818,7 @@ msgid "Select Page" msgstr "crwdns131036:0crwdne131036:0" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "crwdns100440:0crwdne100440:0" @@ -22705,13 +22910,13 @@ msgstr "crwdns100474:0crwdne100474:0" msgid "Select atleast 2 actions" msgstr "crwdns100476:0crwdne100476:0" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "crwdns100478:0crwdne100478:0" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "crwdns100480:0crwdne100480:0" @@ -22749,9 +22954,7 @@ msgstr "crwdns100490:0{0}crwdne100490:0" msgid "Self approval is not allowed" msgstr "crwdns100492:0crwdne100492:0" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "crwdns100494:0crwdne100494:0" @@ -22782,11 +22985,6 @@ msgstr "crwdns131050:0crwdne131050:0" msgid "Send Email Alert" msgstr "crwdns131052:0crwdne131052:0" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "crwdns131054:0crwdne131054:0" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22834,7 +23032,7 @@ msgstr "crwdns100528:0crwdne100528:0" msgid "Send Print as PDF" msgstr "crwdns131074:0crwdne131074:0" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "crwdns100532:0crwdne100532:0" @@ -22844,38 +23042,16 @@ msgstr "crwdns100532:0crwdne100532:0" msgid "Send System Notification" msgstr "crwdns131076:0crwdne131076:0" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "crwdns100536:0crwdne100536:0" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "crwdns131078:0crwdne131078:0" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "crwdns131080:0crwdne131080:0" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "crwdns131082:0crwdne131082:0" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "crwdns131084:0crwdne131084:0" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "crwdns100548:0crwdne100548:0" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "crwdns100550:0crwdne100550:0" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22919,14 +23095,10 @@ msgstr "crwdns131094:0crwdne131094:0" msgid "Send login link" msgstr "crwdns100562:0crwdne100562:0" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "crwdns100564:0crwdne100564:0" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "crwdns100566:0crwdne100566:0" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22942,19 +23114,15 @@ msgstr "crwdns131098:0crwdne131098:0" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "crwdns131100:0crwdne131100:0" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "crwdns131102:0crwdne131102:0" @@ -22971,9 +23139,7 @@ msgid "Sender Field should have Email in options" msgstr "crwdns100592:0crwdne100592:0" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "crwdns131106:0crwdne131106:0" @@ -22993,18 +23159,9 @@ msgstr "crwdns131110:0crwdne131110:0" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "crwdns100604:0crwdne100604:0" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "crwdns100610:0crwdne100610:0" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "crwdns100612:0crwdne100612:0" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23012,8 +23169,6 @@ msgstr "crwdns100612:0crwdne100612:0" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "crwdns100614:0crwdne100614:0" @@ -23083,7 +23238,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0" msgid "Server Action" msgstr "crwdns131128:0crwdne131128:0" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "crwdns100646:0crwdne100646:0" @@ -23102,7 +23257,7 @@ msgstr "crwdns131130:0crwdne131130:0" msgid "Server Script" msgstr "crwdns100650:0crwdne100650:0" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "crwdns100660:0crwdne100660:0" @@ -23141,15 +23296,15 @@ msgstr "crwdns100672:0crwdne100672:0" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "crwdns100674:0crwdne100674:0" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "crwdns100678:0crwdne100678:0" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "crwdns100680:0crwdne100680:0" @@ -23181,7 +23336,7 @@ msgstr "crwdns100686:0crwdne100686:0" msgid "Set Banner from Image" msgstr "crwdns131136:0crwdne131136:0" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "crwdns100690:0crwdne100690:0" @@ -23207,7 +23362,7 @@ msgstr "crwdns100696:0crwdne100696:0" msgid "Set Filters for {0}" msgstr "crwdns100698:0{0}crwdne100698:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "crwdns148706:0crwdne148706:0" @@ -23379,7 +23534,7 @@ msgstr "crwdns100754:0crwdne100754:0" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23425,7 +23580,7 @@ msgstr "crwdns111216:0crwdne111216:0" msgid "Setup > User Permissions" msgstr "crwdns111218:0crwdne111218:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "crwdns100774:0crwdne100774:0" @@ -23514,6 +23669,8 @@ msgstr "crwdns111226:0crwdne111226:0" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "crwdns100814:0crwdne100814:0" @@ -23540,6 +23697,12 @@ msgstr "crwdns131174:0crwdne131174:0" msgid "Show All" msgstr "crwdns111228:0crwdne111228:0" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "crwdns156016:0crwdne156016:0" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "crwdns100822:0crwdne100822:0" @@ -23620,7 +23783,7 @@ msgstr "crwdns131190:0crwdne131190:0" msgid "Show Line Breaks after Sections" msgstr "crwdns131192:0crwdne131192:0" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "crwdns148334:0crwdne148334:0" @@ -23657,6 +23820,12 @@ msgstr "crwdns131200:0crwdne131200:0" msgid "Show Processlist" msgstr "crwdns131202:0crwdne131202:0" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "crwdns156018:0crwdne156018:0" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "crwdns100872:0crwdne100872:0" @@ -23683,8 +23852,14 @@ msgstr "crwdns131204:0crwdne131204:0" msgid "Show Sidebar" msgstr "crwdns131206:0crwdne131206:0" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "crwdns156020:0crwdne156020:0" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "crwdns100886:0crwdne100886:0" @@ -23713,6 +23888,12 @@ msgstr "crwdns100896:0crwdne100896:0" msgid "Show Traceback" msgstr "crwdns111234:0crwdne111234:0" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "crwdns156022:0crwdne156022:0" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "crwdns100898:0crwdne100898:0" @@ -23766,6 +23947,12 @@ msgstr "crwdns131218:0crwdne131218:0" msgid "Show in Module Section" msgstr "crwdns131220:0crwdne131220:0" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "crwdns156024:0crwdne156024:0" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23846,12 +24033,12 @@ msgstr "crwdns131236:0crwdne131236:0" msgid "Sign Up and Confirmation" msgstr "crwdns131238:0crwdne131238:0" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "crwdns100938:0crwdne100938:0" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "crwdns100940:0crwdne100940:0" @@ -23937,8 +24124,10 @@ msgstr "crwdns100974:0crwdne100974:0" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "crwdns131254:0crwdne131254:0" @@ -24102,6 +24291,16 @@ msgstr "crwdns131284:0crwdne131284:0" msgid "Soft-Bounced" msgstr "crwdns131286:0crwdne131286:0" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "crwdns156026:0crwdne156026:0" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "crwdns156028:0crwdne156028:0" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "crwdns111246:0crwdne111246:0" @@ -24169,7 +24368,7 @@ msgstr "crwdns101064:0{0}crwdne101064:0" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24259,7 +24458,7 @@ msgstr "crwdns101090:0crwdne101090:0" msgid "Standard" msgstr "crwdns101094:0crwdne101094:0" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "crwdns101108:0crwdne101108:0" @@ -24275,7 +24474,7 @@ msgstr "crwdns101112:0crwdne101112:0" msgid "Standard Permissions" msgstr "crwdns142898:0crwdne142898:0" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "crwdns101114:0crwdne101114:0" @@ -24462,7 +24661,6 @@ msgstr "crwdns131324:0crwdne131324:0" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24487,7 +24685,6 @@ msgstr "crwdns131324:0crwdne131324:0" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24498,7 +24695,7 @@ msgstr "crwdns131324:0crwdne131324:0" msgid "Status" msgstr "crwdns101196:0crwdne101196:0" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "crwdns101242:0crwdne101242:0" @@ -24628,8 +24825,6 @@ msgstr "crwdns131356:0crwdne131356:0" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24638,10 +24833,9 @@ msgstr "crwdns131356:0crwdne131356:0" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "crwdns101284:0crwdne101284:0" @@ -24680,7 +24874,7 @@ msgstr "crwdns101312:0crwdne101312:0" msgid "Submit" msgstr "crwdns101314:0crwdne101314:0" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "crwdns101316:0crwdne101316:0" @@ -24738,7 +24932,7 @@ msgstr "crwdns101344:0crwdne101344:0" msgid "Submit this document to confirm" msgstr "crwdns101346:0crwdne101346:0" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "crwdns101348:0{0}crwdne101348:0" @@ -24832,7 +25026,7 @@ msgstr "crwdns151444:0crwdne151444:0" msgid "Success title" msgstr "crwdns151446:0crwdne151446:0" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "crwdns101392:0crwdne101392:0" @@ -24887,7 +25081,7 @@ msgstr "crwdns127884:0crwdne127884:0" msgid "Suggested Indexes" msgstr "crwdns131380:0crwdne131380:0" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "crwdns101420:0{0}crwdne101420:0" @@ -24900,7 +25094,7 @@ msgstr "crwdns101420:0{0}crwdne101420:0" msgid "Sum" msgstr "crwdns101422:0crwdne101422:0" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "crwdns101428:0{0}crwdne101428:0" @@ -25009,7 +25203,7 @@ msgstr "crwdns101474:0crwdne101474:0" msgid "Syncing {0} of {1}" msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "crwdns101478:0crwdne101478:0" @@ -25187,6 +25381,7 @@ msgstr "crwdns101486:0crwdne101486:0" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25246,6 +25441,11 @@ msgctxt "Number system" msgid "T" msgstr "crwdns101504:0crwdne101504:0" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "crwdns156030:0crwdne156030:0" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25316,7 +25516,7 @@ msgstr "crwdns112742:0crwdne112742:0" msgid "Table updated" msgstr "crwdns101536:0crwdne101536:0" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "crwdns101538:0{0}crwdne101538:0" @@ -25424,7 +25624,7 @@ msgstr "crwdns131428:0crwdne131428:0" msgid "Templates" msgstr "crwdns101586:0crwdne101586:0" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "crwdns101588:0crwdne101588:0" @@ -25443,10 +25643,6 @@ msgstr "crwdns131430:0crwdne131430:0" msgid "Test Spanish" msgstr "crwdns149016:0crwdne149016:0" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "crwdns101590:0{0}crwdne101590:0" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "crwdns101592:0crwdne101592:0" @@ -25512,10 +25708,6 @@ msgstr "crwdns101622:0crwdne101622:0" msgid "Thank you for your feedback!" msgstr "crwdns101624:0crwdne101624:0" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "crwdns101626:0crwdne101626:0" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "crwdns148336:0crwdne148336:0" @@ -25580,7 +25772,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "crwdns131456:0crwdne131456:0" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "crwdns101696:0crwdne101696:0" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "crwdns101698:0crwdne101698:0" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "crwdns101700:0crwdne101700:0" @@ -25716,7 +25908,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0" msgid "The selected document {0} is not a {1}." msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "crwdns101706:0crwdne101706:0" @@ -25777,7 +25969,7 @@ msgstr "crwdns111276:0crwdne111276:0" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "crwdns101730:0{0}crwdnd101730:0{1}crwdne101730:0" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "crwdns111278:0{0}crwdne111278:0" @@ -25806,7 +25998,7 @@ msgstr "crwdns112744:0crwdne112744:0" msgid "There is some problem with the file url: {0}" msgstr "crwdns101740:0{0}crwdne101740:0" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "crwdns111280:0{0}crwdne111280:0" @@ -25830,7 +26022,7 @@ msgstr "crwdns101750:0crwdne101750:0" msgid "There were errors while creating the document. Please try again." msgstr "crwdns101752:0crwdne101752:0" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "crwdns101754:0crwdne101754:0" @@ -25844,6 +26036,12 @@ msgstr "crwdns101756:0crwdne101756:0" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "crwdns131468:0crwdne131468:0" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "crwdns156032:0crwdne156032:0" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25869,7 +26067,7 @@ msgstr "crwdns131474:0crwdne131474:0" msgid "This Currency is disabled. Enable to use in transactions" msgstr "crwdns101768:0crwdne101768:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "crwdns101774:0crwdne101774:0" @@ -25893,7 +26091,7 @@ msgstr "crwdns155058:0crwdne155058:0" msgid "This action is irreversible. Do you wish to continue?" msgstr "crwdns112746:0crwdne112746:0" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "crwdns101776:0crwdne101776:0" @@ -25920,7 +26118,7 @@ msgstr "crwdns112748:0crwdne112748:0" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "crwdns112750:0crwdne112750:0" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "crwdns111472:0crwdne111472:0" @@ -25936,7 +26134,7 @@ msgstr "crwdns127762:0crwdne127762:0" msgid "This document is already amended, you cannot ammend it again" msgstr "crwdns101792:0crwdne101792:0" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "crwdns111282:0crwdne111282:0" @@ -25997,7 +26195,7 @@ msgstr "crwdns148744:0crwdne148744:0" msgid "This goes above the slideshow." msgstr "crwdns131484:0crwdne131484:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "crwdns101812:0crwdne101812:0" @@ -26053,15 +26251,7 @@ msgstr "crwdns101834:0crwdne101834:0" msgid "This month" msgstr "crwdns101836:0crwdne101836:0" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "crwdns101838:0{0}crwdne101838:0" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "crwdns101840:0crwdne101840:0" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0" @@ -26069,7 +26259,7 @@ msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0" msgid "This report was generated on {0}" msgstr "crwdns101842:0{0}crwdne101842:0" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "crwdns101844:0{0}crwdne101844:0" @@ -26135,7 +26325,7 @@ msgstr "crwdns101866:0crwdne101866:0" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "crwdns101868:0crwdne101868:0" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "crwdns101870:0crwdne101870:0" @@ -26173,7 +26363,6 @@ msgstr "crwdns131496:0crwdne131496:0" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "crwdns101884:0crwdne101884:0" @@ -26399,10 +26588,8 @@ msgid "Title of the page" msgstr "crwdns102014:0crwdne102014:0" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "crwdns102016:0crwdne102016:0" @@ -26450,7 +26637,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "crwdns131544:0{{ doc.name }}crwdne131544:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "crwdns102040:0crwdne102040:0" @@ -26486,7 +26673,7 @@ msgstr "crwdns102048:0crwdne102048:0" msgid "To generate password click {0}" msgstr "crwdns155060:0{0}crwdne155060:0" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "crwdns102050:0{0}crwdne102050:0" @@ -26561,7 +26748,7 @@ msgstr "crwdns102084:0crwdne102084:0" msgid "Toggle Sidebar" msgstr "crwdns102086:0crwdne102086:0" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "crwdns102088:0crwdne102088:0" @@ -26582,6 +26769,12 @@ msgstr "crwdns131556:0crwdne131556:0" msgid "Token Cache" msgstr "crwdns102094:0crwdne102094:0" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "crwdns156034:0crwdne156034:0" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26609,7 +26802,7 @@ msgstr "crwdns102106:0crwdne102106:0" msgid "Too Many Requests" msgstr "crwdns102108:0crwdne102108:0" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "crwdns102110:0crwdne102110:0" @@ -26617,7 +26810,7 @@ msgstr "crwdns102110:0crwdne102110:0" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "crwdns154316:0{0}crwdne154316:0" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "crwdns102112:0crwdne102112:0" @@ -26679,9 +26872,9 @@ msgstr "crwdns131572:0crwdne131572:0" msgid "Topic" msgstr "crwdns131574:0crwdne131574:0" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "crwdns102140:0crwdne102140:0" @@ -26707,16 +26900,8 @@ msgstr "crwdns111290:0crwdne111290:0" msgid "Total Outgoing Emails" msgstr "crwdns131580:0crwdne131580:0" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "crwdns131582:0crwdne131582:0" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "crwdns131584:0crwdne131584:0" @@ -26725,11 +26910,6 @@ msgstr "crwdns131584:0crwdne131584:0" msgid "Total Users" msgstr "crwdns131586:0crwdne131586:0" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "crwdns131588:0crwdne131588:0" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26815,7 +26995,7 @@ msgstr "crwdns111548:0crwdne111548:0" msgid "Tracking" msgstr "crwdns148952:0crwdne148952:0" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "crwdns102180:0crwdne102180:0" @@ -26862,7 +27042,7 @@ msgstr "crwdns131616:0crwdne131616:0" msgid "Translatable" msgstr "crwdns131618:0crwdne131618:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "crwdns154320:0crwdne154320:0" @@ -26895,6 +27075,11 @@ msgstr "crwdns102206:0crwdne102206:0" msgid "Translations" msgstr "crwdns102208:0crwdne102208:0" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "crwdns156084:0crwdne156084:0" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27116,33 +27301,65 @@ msgstr "crwdns131656:0crwdne131656:0" msgid "URL must start with http:// or https://" msgstr "crwdns102322:0crwdne102322:0" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "crwdns156036:0crwdne156036:0" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "crwdns156038:0crwdne156038:0" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "crwdns156040:0crwdne156040:0" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "crwdns156042:0crwdne156042:0" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "crwdns102324:0crwdne102324:0" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "crwdns156044:0crwdne156044:0" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "crwdns156046:0crwdne156046:0" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "crwdns156048:0crwdne156048:0" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "crwdns131658:0crwdne131658:0" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "crwdns148956:0crwdne148956:0" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "crwdns148958:0crwdne148958:0" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "crwdns148960:0crwdne148960:0" @@ -27175,7 +27392,7 @@ msgstr "crwdns102334:0crwdne102334:0" msgid "Unable to read file format for {0}" msgstr "crwdns102336:0{0}crwdne102336:0" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "crwdns102338:0crwdne102338:0" @@ -27192,7 +27409,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0" msgid "Unassign Condition" msgstr "crwdns131662:0crwdne131662:0" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "crwdns151458:0crwdne151458:0" @@ -27200,16 +27417,20 @@ msgstr "crwdns151458:0crwdne151458:0" msgid "Unchanged" msgstr "crwdns102348:0crwdne102348:0" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "crwdns102350:0crwdne102350:0" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "crwdns102352:0crwdne102352:0" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "crwdns155596:0{0}crwdne155596:0" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "crwdns102354:0crwdne102354:0" @@ -27232,6 +27453,13 @@ msgstr "crwdns131664:0crwdne131664:0" msgid "Unique" msgstr "crwdns131666:0crwdne131666:0" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "crwdns156050:0crwdne156050:0" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "crwdns111298:0crwdne111298:0" @@ -27240,7 +27468,7 @@ msgstr "crwdns111298:0crwdne111298:0" msgid "Unknown Column: {0}" msgstr "crwdns102366:0{0}crwdne102366:0" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "crwdns102368:0crwdne102368:0" @@ -27287,7 +27515,7 @@ msgstr "crwdns111300:0crwdne111300:0" msgid "Unshared" msgstr "crwdns131672:0crwdne131672:0" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "crwdns102388:0crwdne102388:0" @@ -27307,10 +27535,15 @@ msgstr "crwdns154322:0crwdne154322:0" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "crwdns102394:0crwdne102394:0" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "crwdns155598:0{0}crwdne155598:0" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "crwdns102402:0crwdne102402:0" @@ -27433,7 +27666,7 @@ msgstr "crwdns102450:0crwdne102450:0" msgid "Updated successfully" msgstr "crwdns102452:0crwdne102452:0" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "crwdns102456:0crwdne102456:0" @@ -27711,7 +27944,7 @@ msgstr "crwdns131728:0crwdne131728:0" msgid "User Cannot Search" msgstr "crwdns131730:0crwdne131730:0" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "crwdns127780:0crwdne127780:0" @@ -27817,12 +28050,12 @@ msgstr "crwdns102624:0crwdne102624:0" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "crwdns102628:0crwdne102628:0" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "crwdns102630:0crwdne102630:0" @@ -27923,15 +28156,15 @@ msgstr "crwdns102672:0{0}crwdne102672:0" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "crwdns102674:0{0}crwdne102674:0" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "crwdns102676:0{0}crwdne102676:0" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "crwdns102678:0{0}crwdne102678:0" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "crwdns102680:0{0}crwdne102680:0" @@ -27952,7 +28185,7 @@ msgstr "crwdns127898:0{0}crwdne127898:0" msgid "User {0} has requested for data deletion" msgstr "crwdns102686:0{0}crwdne102686:0" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0" @@ -27981,7 +28214,7 @@ msgstr "crwdns131764:0crwdne131764:0" msgid "Username" msgstr "crwdns102694:0crwdne102694:0" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "crwdns102700:0{0}crwdne102700:0" @@ -28121,15 +28354,15 @@ msgstr "crwdns131784:0crwdne131784:0" msgid "Value To Be Set" msgstr "crwdns131786:0crwdne131786:0" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "crwdns102750:0{0}crwdne102750:0" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "crwdns102752:0crwdne102752:0" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0" @@ -28155,6 +28388,12 @@ msgstr "crwdns131788:0crwdne131788:0" msgid "Value must be one of {0}" msgstr "crwdns102766:0{0}crwdne102766:0" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "crwdns156052:0crwdne156052:0" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28168,7 +28407,7 @@ msgstr "crwdns102770:0crwdne102770:0" msgid "Value {0} missing for {1}" msgstr "crwdns102772:0{0}crwdnd102772:0{1}crwdne102772:0" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "crwdns102774:0{0}crwdne102774:0" @@ -28248,7 +28487,7 @@ msgstr "crwdns131798:0crwdne131798:0" msgid "View All" msgstr "crwdns102800:0crwdne102800:0" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "crwdns102802:0crwdne102802:0" @@ -28492,7 +28731,7 @@ msgstr "crwdns102894:0crwdne102894:0" msgid "Web Page Block" msgstr "crwdns102900:0crwdne102900:0" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "crwdns102902:0crwdne102902:0" @@ -28535,6 +28774,7 @@ msgstr "crwdns131830:0crwdne131830:0" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28593,7 +28833,6 @@ msgstr "crwdns131842:0crwdne131842:0" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28601,9 +28840,7 @@ msgid "Website" msgstr "crwdns102952:0crwdne102952:0" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "crwdns102956:0crwdne102956:0" @@ -28803,11 +29040,11 @@ msgstr "crwdns131860:0crwdne131860:0" msgid "Welcome Workspace" msgstr "crwdns103062:0crwdne103062:0" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "crwdns103064:0crwdne103064:0" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "crwdns103066:0{0}crwdne103066:0" @@ -28893,7 +29130,7 @@ msgstr "crwdns103094:0crwdne103094:0" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "crwdns152665:0crwdne152665:0" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "crwdns103098:0crwdne103098:0" @@ -29034,12 +29271,12 @@ msgstr "crwdns112760:0crwdne112760:0" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "crwdns103156:0crwdne103156:0" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "crwdns103162:0{0}crwdne103162:0" @@ -29161,7 +29398,7 @@ msgstr "crwdns103204:0crwdne103204:0" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "crwdns103206:0crwdne103206:0" @@ -29222,7 +29459,7 @@ msgstr "crwdns131908:0crwdne131908:0" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "crwdns103238:0crwdne103238:0" @@ -29262,11 +29499,11 @@ msgstr "crwdns111444:0crwdne111444:0" msgid "You are not allowed to access this resource" msgstr "crwdns151618:0crwdne151618:0" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "crwdns103258:0{0}crwdnd103258:0{1}crwdnd103258:0{2}crwdnd103258:0{3}crwdne103258:0" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "crwdns103260:0{0}crwdnd103260:0{1}crwdnd103260:0{2}crwdnd103260:0{3}crwdnd103260:0{4}crwdne103260:0" @@ -29289,7 +29526,7 @@ msgstr "crwdns103268:0crwdne103268:0" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "crwdns103270:0crwdne103270:0" @@ -29297,11 +29534,11 @@ msgstr "crwdns103270:0crwdne103270:0" msgid "You are not allowed to print this report" msgstr "crwdns103272:0crwdne103272:0" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "crwdns103274:0crwdne103274:0" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "crwdns103276:0crwdne103276:0" @@ -29317,7 +29554,7 @@ msgstr "crwdns103280:0crwdne103280:0" msgid "You are not permitted to access this page." msgstr "crwdns103282:0crwdne103282:0" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "crwdns155350:0crwdne155350:0" @@ -29325,7 +29562,7 @@ msgstr "crwdns155350:0crwdne155350:0" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "crwdns103286:0crwdne103286:0" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "crwdns103288:0crwdne103288:0" @@ -29370,7 +29607,7 @@ msgstr "crwdns103302:0{0}crwdne103302:0" msgid "You can continue with the onboarding after exploring this page" msgstr "crwdns103304:0crwdne103304:0" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "crwdns142902:0{0}crwdne142902:0" @@ -29412,7 +29649,7 @@ msgstr "crwdns111340:0crwdne111340:0" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "crwdns148354:0crwdne148354:0" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "crwdns103318:0crwdne103318:0" @@ -29489,11 +29726,15 @@ msgstr "crwdns103348:0crwdne103348:0" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "crwdns103350:0crwdne103350:0" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "crwdns103352:0crwdne103352:0" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "crwdns155600:0{0}crwdne155600:0" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0" @@ -29501,19 +29742,19 @@ msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0" msgid "You do not have permissions to cancel all linked documents." msgstr "crwdns103360:0crwdne103360:0" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "crwdns103362:0{0}crwdne103362:0" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "crwdns103364:0{0}crwdne103364:0" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "crwdns103366:0crwdne103366:0" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "crwdns103368:0{0}crwdne103368:0" @@ -29578,15 +29819,15 @@ msgstr "crwdns103396:0crwdne103396:0" msgid "You must add atleast one link." msgstr "crwdns103398:0crwdne103398:0" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "crwdns103400:0crwdne103400:0" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "crwdns103402:0crwdne103402:0" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "crwdns151578:0{0}crwdnd151578:0{1}crwdnd151578:0{2}crwdne151578:0" @@ -29606,7 +29847,7 @@ msgstr "crwdns112716:0crwdne112716:0" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "crwdns103406:0crwdne103406:0" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "crwdns103408:0crwdne103408:0" @@ -29689,7 +29930,7 @@ msgstr "crwdns103436:0crwdne103436:0" msgid "You viewed this" msgstr "crwdns103438:0crwdne103438:0" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "crwdns127792:0crwdne127792:0" @@ -29730,11 +29971,11 @@ msgstr "crwdns103450:0{0}crwdne103450:0" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "crwdns103452:0{0}crwdnd103452:0{1}crwdnd103452:0{2}crwdne103452:0" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "crwdns111350:0crwdne111350:0" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "crwdns111352:0crwdne111352:0" @@ -29754,11 +29995,11 @@ msgstr "crwdns103458:0crwdne103458:0" msgid "Your login id is" msgstr "crwdns103460:0crwdne103460:0" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "crwdns103462:0crwdne103462:0" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "crwdns103464:0crwdne103464:0" @@ -29772,7 +30013,7 @@ msgstr "crwdns131910:0crwdne131910:0" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "crwdns103468:0crwdne103468:0" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "crwdns103470:0crwdne103470:0" @@ -29784,7 +30025,7 @@ msgstr "crwdns111354:0crwdne111354:0" msgid "Your verification code is {0}" msgstr "crwdns103472:0{0}crwdne103472:0" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "crwdns103476:0crwdne103476:0" @@ -29808,7 +30049,7 @@ msgstr "crwdns131914:0crwdne131914:0" msgid "_report" msgstr "crwdns131916:0crwdne131916:0" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "crwdns104504:0crwdne104504:0" @@ -29831,7 +30072,7 @@ msgstr "crwdns131918:0crwdne131918:0" msgid "amend" msgstr "crwdns131920:0crwdne131920:0" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "crwdns103502:0crwdne103502:0" @@ -29888,8 +30129,8 @@ msgstr "crwdns131930:0crwdne131930:0" msgid "cyan" msgstr "crwdns131932:0crwdne131932:0" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "crwdns103578:0crwdne103578:0" @@ -30003,7 +30244,7 @@ msgstr "crwdns131958:0crwdne131958:0" msgid "email inbox" msgstr "crwdns103630:0crwdne103630:0" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "crwdns103632:0crwdne103632:0" @@ -30055,8 +30296,8 @@ msgstr "crwdns131974:0crwdne131974:0" msgid "gzip not found in PATH! This is required to take a backup." msgstr "crwdns103692:0crwdne103692:0" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "crwdns103694:0crwdne103694:0" @@ -30089,7 +30330,7 @@ msgstr "crwdns103730:0crwdne103730:0" msgid "just now" msgstr "crwdns103732:0crwdne103732:0" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "crwdns103734:0crwdne103734:0" @@ -30129,8 +30370,8 @@ msgstr "crwdns111362:0crwdne111362:0" msgid "long" msgstr "crwdns131990:0crwdne131990:0" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "crwdns103758:0crwdne103758:0" @@ -30319,8 +30560,8 @@ msgstr "crwdns132042:0crwdne132042:0" msgid "restored {0} as {1}" msgstr "crwdns103898:0{0}crwdnd103898:0{1}crwdne103898:0" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "crwdns103904:0crwdne103904:0" @@ -30613,7 +30854,7 @@ msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwd msgid "{0} Report" msgstr "crwdns104086:0{0}crwdne104086:0" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "crwdns111368:0{0}crwdne111368:0" @@ -30654,7 +30895,7 @@ msgstr "crwdns104100:0{0}crwdne104100:0" msgid "{0} already unsubscribed for {1} {2}" msgstr "crwdns104102:0{0}crwdnd104102:0{1}crwdnd104102:0{2}crwdne104102:0" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0" @@ -30662,7 +30903,7 @@ msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0" msgid "{0} are currently {1}" msgstr "crwdns104118:0{0}crwdnd104118:0{1}crwdne104118:0" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "crwdns104120:0{0}crwdne104120:0" @@ -30692,7 +30933,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "crwdns104130:0{0}crwdnd104130:0{1}crwdne104130:0" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "crwdns151848:0{0}crwdne151848:0" @@ -30760,7 +31001,11 @@ msgstr "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "crwdns104170:0{0}crwdnd104170:0{1}crwdne104170:0" @@ -30780,11 +31025,7 @@ msgstr "crwdns104184:0{0}crwdne104184:0" msgid "{0} has already assigned default value for {1}." msgstr "crwdns104186:0{0}crwdnd104186:0{1}crwdne104186:0" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "crwdns104188:0{0}crwdne104188:0" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "crwdns104190:0{0}crwdnd104190:0{1}crwdnd104190:0{2}crwdne104190:0" @@ -30854,6 +31095,10 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0" msgid "{0} is mandatory" msgstr "crwdns104224:0{0}crwdne104224:0" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "crwdns104226:0{0}crwdnd104226:0{1}crwdne104226:0" @@ -30875,7 +31120,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "crwdns104232:0{0}crwdne104232:0" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "crwdns104234:0{0}crwdne104234:0" @@ -30883,11 +31128,11 @@ msgstr "crwdns104234:0{0}crwdne104234:0" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "crwdns152102:0{0}crwdne152102:0" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "crwdns104236:0{0}crwdne104236:0" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "crwdns104238:0{0}crwdne104238:0" @@ -30895,15 +31140,15 @@ msgstr "crwdns104238:0{0}crwdne104238:0" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "crwdns104240:0{0}crwdne104240:0" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0" @@ -30927,7 +31172,7 @@ msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0" msgid "{0} is not set" msgstr "crwdns104256:0{0}crwdne104256:0" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0" @@ -30937,7 +31182,8 @@ msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "crwdns104262:0{0}crwdne104262:0" @@ -30950,11 +31196,11 @@ msgstr "crwdns104264:0{0}crwdne104264:0" msgid "{0} is within {1}" msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "crwdns104268:0{0}crwdne104268:0" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0" @@ -30987,23 +31233,23 @@ msgstr "crwdns104280:0{0}crwdne104280:0" msgid "{0} months ago" msgstr "crwdns104282:0{0}crwdne104282:0" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0" @@ -31015,7 +31261,7 @@ msgstr "crwdns104288:0{0}crwdne104288:0" msgid "{0} must be unique" msgstr "crwdns104290:0{0}crwdne104290:0" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0" @@ -31044,16 +31290,12 @@ msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0" msgid "{0} of {1} ({2} rows with children)" msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "crwdns104304:0{0}crwdnd104304:0{1}crwdne104304:0" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "crwdns104510:0{0}crwdne104510:0" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "crwdns104306:0{0}crwdnd104306:0{1}crwdne104306:0" @@ -31090,11 +31332,11 @@ msgstr "crwdns104320:0{0}crwdne104320:0" msgid "{0} role does not have permission on any doctype" msgstr "crwdns111370:0{0}crwdne111370:0" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "crwdns104328:0{0}crwdne104328:0" @@ -31136,7 +31378,7 @@ msgstr "crwdns104344:0{0}crwdnd104344:0{1}crwdne104344:0" msgid "{0} subscribers added" msgstr "crwdns104346:0{0}crwdne104346:0" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "crwdns104348:0{0}crwdne104348:0" @@ -31206,11 +31448,11 @@ msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "crwdns104384:0{0}crwdnd104384:0{1}crwdnd104384:0{2}crwdnd104384:0{3}crwdne104384:0" @@ -31323,7 +31565,7 @@ msgstr "crwdns104432:0{0}crwdnd104432:0{1}crwdne104432:0" msgid "{0}: {1} is set to state {2}" msgstr "crwdns104434:0{0}crwdnd104434:0{1}crwdnd104434:0{2}crwdne104434:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0" @@ -31359,11 +31601,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0" msgid "{} Complete" msgstr "crwdns104450:0crwdne104450:0" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "crwdns104452:0crwdne104452:0" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "crwdns104454:0crwdne104454:0" @@ -31385,7 +31627,7 @@ msgstr "crwdns104458:0crwdne104458:0" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "crwdns104460:0crwdne104460:0" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "crwdns104462:0crwdne104462:0" diff --git a/frappe/locale/es.po b/frappe/locale/es.po index b44ca7bbac..3e75fcf7a4 100644 --- a/frappe/locale/es.po +++ b/frappe/locale/es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:49\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón { msgid "'Recipients' not specified" msgstr "'Destinatarios' no especificados" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' no es una URL válida" @@ -141,7 +141,7 @@ msgstr "1 Día" msgid "1 Google Calendar Event synced." msgstr "1 evento de Google Calendar sincronizado." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Informe" @@ -149,7 +149,7 @@ msgstr "1 Informe" msgid "1 comment" msgstr "1 comentario" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "Hace 1 día" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 hora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "Hace una hora" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "Hace un minuto" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "Hace 1 mes" @@ -180,37 +180,37 @@ msgstr "1 de 2" msgid "1 record will be exported" msgstr "Se exportará 1 registro" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "Hace 1 segundo" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "Hace 1 semana" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "Hace 1 año" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "Hace 2 horas" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "Hace 2 meses" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "Hace 2 semanas" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "Hace 2 años" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "Hace 3 minutos" @@ -226,7 +226,7 @@ msgstr "4 horas" msgid "5 Records" msgstr "5 registros" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "Hace 5 días" @@ -660,11 +660,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Hola," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Informes & Maestros" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Advertencia: Este campo es generado por el sistema y puede ser sobrescrito por una futura actualización. Modifíquelo utilizando {0} en su lugar." @@ -691,6 +686,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar formado por letras, números, espacios, guiones bajos y guiones" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Una publicación destacada debe tener una imagen de portada" @@ -725,6 +725,13 @@ msgstr "Un símbolo para esta moneda. Por ejemplo, $" msgid "A template already exists for field {0} of {1}" msgstr "Ya existe una plantilla para el campo {0} de {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Una palabra de por sí es fácil de adivinar." @@ -969,7 +976,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -986,7 +992,7 @@ msgstr "Acción / Ruta" msgid "Action Complete" msgstr "Acción completada" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Acción Fallida" @@ -1035,10 +1041,10 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Acciones" @@ -1100,8 +1106,8 @@ msgstr "Registro de Actividad" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Agregar" @@ -1118,7 +1124,7 @@ msgstr "Agregar / Actualizar" msgid "Add A New Rule" msgstr "Añadir una nueva regla" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Añadir un adjunto" @@ -1142,7 +1148,7 @@ msgstr "Añadir borde al principio" msgid "Add Card to Dashboard" msgstr "Agregar Tarjeta al tablero" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Agregar gráfico al tablero" @@ -1151,8 +1157,8 @@ msgid "Add Child" msgstr "Crear subcategoría" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1188,7 +1194,7 @@ msgid "Add Gray Background" msgstr "Agregar fondo gris" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Añadir Grupo" @@ -1213,7 +1219,7 @@ msgstr "Agregar Participantes" msgid "Add Query Parameters" msgstr "Agregar parámetros de consulta" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Añadir Roles" @@ -1223,7 +1229,7 @@ msgstr "Añadir Fila" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Agregar Firma" @@ -1246,12 +1252,12 @@ msgstr "Añadir Suscriptores" msgid "Add Tags" msgstr "Añadir etiquetas" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Añadir etiquetas" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Añadir plantilla" @@ -1358,7 +1364,7 @@ msgid "Add tab" msgstr "Agregar pestaña" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Agregar al tablero" @@ -1386,7 +1392,7 @@ msgstr "Agregar {0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Added" -msgstr "Añadido" +msgstr "" #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' @@ -1513,11 +1519,11 @@ msgstr "Administración" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrador logeado" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Acceso de Administrador {0} en {1} a través de la dirección IP {2}." @@ -1625,6 +1631,14 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "Alertas y Notificaciones" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1665,7 +1679,6 @@ msgstr "Alinear Valor" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1996,6 +2009,12 @@ msgstr "Permitido en Menciones" msgid "Allowed Modules" msgstr "Módulos Permitidos" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2012,7 +2031,43 @@ msgstr "Dominios integrados permitidos" msgid "Allowing DocType, DocType. Be careful!" msgstr "Precaución, autorizando 'DocType'" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Ya está Registrado" @@ -2103,7 +2158,7 @@ msgstr "Corrigiento" msgid "Amendment Naming Override" msgstr "Sobrescribir la nomenclatura rectificada" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Enmienda no permitida" @@ -2111,7 +2166,7 @@ msgstr "Enmienda no permitida" msgid "Amendment naming rules updated." msgstr "Reglas de nomenclatura rectificada actualizadas." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Se produjo un error al configurar los valores predeterminados de la sesión" @@ -2192,16 +2247,6 @@ msgstr "Además del Administrador del sistema, los roles con el derecho \"Establ msgid "App" msgstr "App" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "ID de Cliente de Aplicación" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Clave Secreta de Aplicación" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2215,21 +2260,24 @@ msgstr "Logo de la App" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Nombre de la Aplicación" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "App no encontrada para el módulo: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "Aplicación {0} no está instalada" @@ -2294,7 +2342,7 @@ msgstr "Aplicado en" msgid "Apply" msgstr "Aplicar" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Aplicar regla de asignación" @@ -2375,7 +2423,7 @@ msgstr "Archivado" msgid "Archived Columns" msgstr "Columnas archivados" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "¿Está seguro de que desea borrar las asignaciones?" @@ -2407,7 +2455,7 @@ msgstr "¿Está seguro de que desea eliminar la sección? Todas las columnas y l msgid "Are you sure you want to discard the changes?" msgstr "¿Realmente quieres descartar los cambios?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "¿Está seguro de que desea generar un nuevo informe?" @@ -2443,10 +2491,6 @@ msgstr "¿Está seguro de que desea restablecer todas las personalizaciones?" msgid "Are you sure you want to save this document?" msgstr "¿Está seguro de que desea guardar este documento?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "¿Está seguro de que desea enviar este boletín ahora?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2479,16 +2523,16 @@ msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al c msgid "Assign Condition" msgstr "Asignar condición" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Asignar a" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Asignar a" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Asignar a Grupo de Usuarios" @@ -2640,7 +2684,7 @@ msgstr "Al menos un campo de Tipo de Documento Principal es obligatorio" msgid "Attach" msgstr "Adjuntar" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Adjuntar Documento para Imprimir" @@ -2700,9 +2744,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "El nombre \"Adjuntado a\" debe ser una cadena o un entero" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Adjunto" @@ -2729,20 +2771,17 @@ msgid "Attachment Removed" msgstr "Adjunto Eliminado" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Adjuntos" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Intentando conectarse a la bandeja QZ..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Intentando iniciar QZ Tray..." @@ -2750,11 +2789,6 @@ msgstr "Intentando iniciar QZ Tray..." msgid "Attribution" msgstr "Atribuciones" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Audiencia" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2799,6 +2833,11 @@ msgstr "Error de autenticación al recibir correos electrónicos de la cuenta de msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3033,7 +3072,7 @@ msgstr "Avatar" msgid "Average" msgstr "Promedio" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Promedio de {0}" @@ -3138,7 +3177,7 @@ msgstr "B9" msgid "BCC" msgstr "CCO" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "CCO" @@ -3181,7 +3220,7 @@ msgstr "Imagen de Fondo" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Trabajos en Segundo Plano" @@ -3787,7 +3826,7 @@ msgstr "CANCELADO" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3910,10 +3949,8 @@ msgstr "Título de devolución de llamada" msgid "Camera" msgstr "Cámara" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3980,7 +4017,7 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe." msgid "Cancel" msgstr "Cancelar" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -3998,11 +4035,7 @@ msgstr "Cancelar todo" msgid "Cancel All Documents" msgstr "Cancelar todos los documentos" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Cancelar Programación" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "¿Cancelar {0} documentos?" @@ -4069,11 +4102,11 @@ msgstr "No se puede cancelar antes de validar. Ver Transición {0}" msgid "Cannot cancel {0}." msgstr "No se puede cancelar {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "No se puede cambiar el estado del documento de 0 (Borrador) a 2 (Cancelado)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "No se puede cambiar el estado del documento de 1 (Validado) a 0 (Borrador)" @@ -4101,7 +4134,7 @@ msgstr "No se puede crear un Área de Trabajo privado para otros usuarios" msgid "Cannot delete Home and Attachments folders" msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3} {4}" @@ -4156,7 +4189,7 @@ msgstr "No se puede editar gráficos estándar" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "No se puede editar un informe estándar. Por favor, duplicar y crear un nuevo informe" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "No se puede editar un documento cancelado" @@ -4193,7 +4226,7 @@ msgstr "No se pueden asignar varias impresoras a un único formato de impresión msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "No se puede vincular al documento anulado: {0}" @@ -4238,7 +4271,7 @@ msgstr "No se puede Actualizar {0}" msgid "Cannot use sub-query in order by" msgstr "No se puede utilizar sub-query en order by" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "No se puede utilizar {0} en ordenar/agrupar por" @@ -4264,7 +4297,7 @@ msgstr "Tarjeta" msgid "Card Break" msgstr "Salto de tarjeta" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Etiqueta de tarjeta" @@ -4295,10 +4328,6 @@ msgstr "Descripción de categoría" msgid "Category Name" msgstr "Nombre Categoría" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Centavo" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4407,7 +4436,7 @@ msgstr "Configuración de gráfico" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Nombre del Gráfico" @@ -4464,10 +4493,6 @@ msgstr "Marcar" msgid "Check Request URL" msgstr "Verificar URL de Solicitud" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Comprobar enlaces rotos" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Marque las columnas para seleccionar, arrastrar para establecer el orden." @@ -4491,10 +4516,6 @@ msgstr "Seleccione esta opción si desea obligar al usuario a seleccionar una se msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Comprobando enlaces rotos..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Comprobando un momento" @@ -4541,6 +4562,10 @@ msgstr "Tabla secundaria {0} para el campo {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Elija una tarjeta existente o cree una nueva tarjeta" @@ -4580,15 +4605,19 @@ msgstr "Ciudad" msgid "Clear" msgstr "Quitar" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Borrar y Agregar Plantilla" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Borrar y Agregar plantilla" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Borrar Asignación" @@ -4614,7 +4643,7 @@ msgstr "Borrar registros después (días)" msgid "Clear User Permissions" msgstr "Borrar permisos de usuario" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Borre el mensaje de correo electrónico y añada la plantilla" @@ -4630,10 +4659,6 @@ msgstr "Haga clic en Personalizar para agregar su primer widget" msgid "Click here" msgstr "Click aquí" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Haga clic aquí para verificar" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Haga clic en un archivo para seleccionarlo." @@ -4713,8 +4738,10 @@ msgid "Client Credentials" msgstr "Credenciales del Cliente" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "Id del cliente" @@ -4730,6 +4757,12 @@ msgstr "Id de cliente" msgid "Client Information" msgstr "Información del Cliente" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4742,13 +4775,32 @@ msgstr "Script de cliente" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Secreto del cliente" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4833,7 +4885,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Colapso" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Desplegar todo" @@ -4888,7 +4940,7 @@ msgstr "Plegable depende de (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4975,11 +5027,11 @@ msgstr "Columnas" msgid "Columns / Fields" msgstr "Columnas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Columnas basadas en" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "No se permite la combinación del tipo de concesión ( {0} ) y el tipo de respuesta ( {1} )" @@ -5138,7 +5190,7 @@ msgstr "Completar" msgid "Complete By" msgstr "Completado por" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Registro completo" @@ -5228,6 +5280,12 @@ msgstr "Descripción de la condición" msgid "Conditions" msgstr "Condiciones" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5266,7 +5324,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Configura varios aspectos de cómo funciona la nomenclatura de documentos, como las series de nombres y el contador actual." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5275,7 +5333,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Confirmar" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Confirmar acceso" @@ -5288,7 +5346,7 @@ msgstr "Confirmar la eliminación de la cuenta" msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Confirmar Contraseña" @@ -5297,17 +5355,12 @@ msgstr "Confirmar Contraseña" msgid "Confirm Request" msgstr "Confirmar petición" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Confirme su Email" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Plantilla de correo electrónico de confirmación" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Confirmado" @@ -5334,8 +5387,8 @@ msgstr "Aplicación conectada" msgid "Connected User" msgstr "Usuario conectado" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Conectado a la bandeja QZ!" @@ -5427,6 +5480,11 @@ msgstr "Configuración de contácto" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Opciones de contacto, como \"Consulta de ventas, Consulta de soporte\", etc., cada una en una nueva línea o separada por comas." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Contactos" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Contiene {0} corrección de seguridad" @@ -5438,8 +5496,6 @@ msgstr "Contiene {0} correcciones de seguridad" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5447,8 +5503,7 @@ msgstr "Contiene {0} correcciones de seguridad" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5472,10 +5527,8 @@ msgstr "Contenido (descuento)" msgid "Content Hash" msgstr "Contenido Hash" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5532,7 +5585,7 @@ msgstr "Estado de contribución" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Controla si los nuevos usuarios pueden registrarse utilizando esta Clave de Inicio de Sesión Social. Si no se establece, se respeta la configuración del sitio web." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Copiado al portapapeles." @@ -5548,7 +5601,7 @@ msgstr "Copiar código incrustado" msgid "Copy error to clipboard" msgstr "Copiar error al Portapapeles" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Copiar al Portapapeles" @@ -5573,7 +5626,7 @@ msgstr "Versión correcta:" msgid "Could not connect to outgoing email server" msgstr "No se pudo conectar con el servidor de correo electrónico saliente" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "No se pudo encontrar {0}" @@ -5581,6 +5634,10 @@ msgstr "No se pudo encontrar {0}" msgid "Could not map column {0} to field {1}" msgstr "No se pudo asignar la columna {0} al campo {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "No se pudo iniciar: " @@ -5597,7 +5654,7 @@ msgstr "No se pudo guardar, verifique los datos que ingresó" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Contar" @@ -5636,7 +5693,7 @@ msgstr "Mostrador" msgid "Country" msgstr "País" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Código de País requerido" @@ -5668,7 +5725,7 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5682,13 +5739,13 @@ msgstr "Crear y Continuar" msgid "Create Address" msgstr "Crear dirección" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Crear tarjeta" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Crear gráfico" @@ -5767,11 +5824,6 @@ msgstr "Crear: {0}" msgid "Create a {0} Account" msgstr "Cree una cuenta en {0}" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Cree y envíe periódicamente correos electrónicos a un grupo específico de suscriptores." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Crear o Editar Formato Impresión" @@ -6120,6 +6172,10 @@ msgstr "Traducción personalizada" msgid "Custom field renamed to {0} successfully." msgstr "Campo personalizado renombrado a {0} exitosamente." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6153,12 +6209,12 @@ msgstr "Personalizaciones para {0} exportadas a:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Personalización" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalización" @@ -6177,7 +6233,7 @@ msgstr "Personalizar el Tablero" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Personalizar Formulario" @@ -6303,7 +6359,7 @@ msgstr "Tema Oscuro" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Tablero" @@ -6470,7 +6526,6 @@ msgstr "Versión de la base de datos" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6534,6 +6589,11 @@ msgstr "Día" msgid "Day of Week" msgstr "Día de la semana" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dias" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6798,15 +6858,16 @@ msgstr "Retrasado" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" @@ -6842,7 +6903,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Eliminar pestaña" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Eliminar y Generar Nuevo" @@ -6884,12 +6945,12 @@ msgstr "Eliminar pestaña" msgid "Delete this record to allow sending to this email address" msgstr "Eliminar este registro para permitir el envío a esta dirección de correo electrónico" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "¿Eliminar {0} elemento de forma permanente?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "¿Eliminar {0} artículos de forma permanente?" @@ -7113,6 +7174,7 @@ msgstr "Tema de Escritorio" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7296,8 +7358,8 @@ msgstr "Deshabilitar registros" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Deshabilitado" @@ -7306,7 +7368,7 @@ msgstr "Deshabilitado" msgid "Disabled Auto Reply" msgstr "Respuesta automática deshabilitada" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7467,6 +7529,7 @@ msgstr "El DocStatus de los siguientes estados ha cambiado:
{0}
You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Error al conectarse a la aplicación QZ Tray...

Debe tener la aplicación QZ Tray instalada y en ejecución, para usar la función de Impresión sin formato.

Haga clic aquí para descargar e instalar la bandeja QZ.
Haga clic aquí para obtener más información sobre la impresión sin procesar." @@ -9244,6 +9311,14 @@ msgstr "Error en la Notificación" msgid "Error in print format on line {0}: {1}" msgstr "Error en formato de impresión en línea {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Error al conectarte a la cuenta de correo electrónico {0}" @@ -9409,7 +9484,7 @@ msgstr "" msgid "Executing..." msgstr "Ejecutando..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Tiempo de ejecución: {0} segundos" @@ -9435,11 +9510,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir todo" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Experimental" @@ -9492,13 +9571,13 @@ msgstr "Tiempo de expiración de Pagina de Código QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9856,8 +9935,8 @@ msgstr "Obteniendo documentos predeterminados de Global Search." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9928,7 +10007,7 @@ msgstr "Campo a seguir" msgid "Field type cannot be changed for {0}" msgstr "El Tipo de Campo no se puede cambiar para {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "El campo {0} no existe en {1}" @@ -9971,7 +10050,7 @@ msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Nombre de campo está limitado a 64 caracteres ({0})" @@ -9987,7 +10066,7 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo." msgid "Fieldname {0} appears multiple times" msgstr "El nombre de campo {0} aparece varias veces" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}" @@ -10039,6 +10118,10 @@ msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Los campos deben ser una lista o tupla cuando as_list está activado" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10204,6 +10287,14 @@ msgstr "Nombre del Filtro" msgid "Filter Values" msgstr "Valores del Filtro" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filtrar..." @@ -10415,7 +10506,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Seguir" @@ -10423,7 +10514,7 @@ msgstr "Seguir" msgid "Followed by" msgstr "Seguido por" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Los siguientes filtros de informe tienen valores faltantes:" @@ -10447,10 +10538,6 @@ msgstr "Siguientes campos tienen valores que faltan" msgid "Following fields have missing values:" msgstr "Siguientes campos tienen valores que faltan:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Los siguientes enlaces están rotos en el contenido del correo electrónico: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10612,7 +10699,7 @@ msgstr "Por Usuario" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Para la comparación, utilice >5, <10 o =324. Para rangos, utilice 5:10 (para valores entre 5 y 10)." @@ -10868,15 +10955,13 @@ msgid "Friday" msgstr "Viernes" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Desde" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Desde" @@ -10892,7 +10977,7 @@ msgstr "Desde la fecha" msgid "From Date Field" msgstr "Desde campo de fecha" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Desde tipo de documento" @@ -10943,7 +11028,7 @@ msgstr "Ancho completo" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Función" @@ -10952,10 +11037,14 @@ msgstr "Función" msgid "Function Based On" msgstr "Función basada en" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "La función {0} no está en la lista blanca." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'" @@ -11017,7 +11106,7 @@ msgstr "General" msgid "Generate Keys" msgstr "Generar Llaves" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Generar Nuevo Informe" @@ -11025,8 +11114,8 @@ msgstr "Generar Nuevo Informe" msgid "Generate Random Password" msgstr "Generar Contraseña Aleatoria" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Generar URL de seguimiento" @@ -11141,7 +11230,7 @@ msgstr "Atajos globales" msgid "Global Unsubscribe" msgstr "Darse de baja globalmente" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Buscar" @@ -11305,8 +11394,6 @@ msgstr "Contactos de Google: no se pudo actualizar el contacto en Contactos de G msgid "Google Contacts Id" msgstr "Id de contactos de Google" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11343,6 +11430,7 @@ msgstr "Servicios de Google" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11437,6 +11525,10 @@ msgstr "Agrupar por tipo" msgid "Group By field is required to create a dashboard chart" msgstr "El campo agrupar por, es obligatorio para crear un gráfico del tablero" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Agrupar por nota" @@ -11451,7 +11543,7 @@ msgstr "Clase de Objeto Grupo" msgid "Group your custom doctypes under modules" msgstr "Agrupe sus doctypes personalizados en módulos" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Agrupados por {0}" @@ -11485,7 +11577,6 @@ msgstr "HH: mm: ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11499,11 +11590,10 @@ msgstr "HH: mm: ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11732,7 +11822,7 @@ msgstr "Helvética" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Esta es tu URL de seguimiento" @@ -11768,12 +11858,17 @@ msgstr "Oculto" msgid "Hidden Fields" msgstr "Campos ocultos" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Esconder" @@ -11880,7 +11975,7 @@ msgstr "Ocultar Barra Lateral, Menú y Comentarios" msgid "Hide Standard Menu" msgstr "Ocultar Menú Estándar" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Ocultar etiquetas" @@ -11935,7 +12030,7 @@ msgstr "La regla de mayor prioridad se aplicará primero" msgid "Highlight" msgstr "Resaltar" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Sugerencia: Incluya símbolos, números y letras mayúsculas en la contraseña" @@ -12008,20 +12103,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "Límite de tarifa por hora para generar enlaces de restablecimiento de contraseña" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Horas" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "¿Cómo se debe formatear esta moneda? Si no se establece, el sistema utilizará los valores por defecto" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Supongo que aún no tiene acceso a ningún espacio de trabajo, pero puede crear uno sólo para usted. Haga clic en el botón Crear espacio de trabajo para crear uno.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12426,7 +12531,7 @@ msgstr "Campo de imagen debe ser de tipo Adjuntar imagen" msgid "Image link '{0}' is not valid" msgstr "El enlace de la imagen '{0}' no es válido" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Imagen optimizada" @@ -12474,7 +12579,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar / Exportar" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar / Exportar" @@ -12702,11 +12807,15 @@ msgstr "Incluir tema de aplicaciones" msgid "Include Web View Link in Email" msgstr "Enviar el enlace de la vista web del documento por correo electrónico" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Incluir filtros" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Incluir sangría" @@ -12773,11 +12882,11 @@ msgstr "Usuario o Contraseña Incorrecta" msgid "Incorrect Verification code" msgstr "Código de Verificación incorrecto" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Valor incorrecto en la fila {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Valor incorrecto:" @@ -12864,7 +12973,7 @@ msgstr "Insertar Arriba" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Insertar Después" @@ -12929,11 +13038,11 @@ msgstr "Instrucciones" msgid "Instructions Emailed" msgstr "Instrucciones enviadas por correo electrónico" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Nivel de permiso insuficiente para {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Permiso insuficiente para {0}" @@ -13055,7 +13164,7 @@ msgstr "Inválido" msgid "Invalid \"depends_on\" expression" msgstr "Expresión \"depende_on\" no válida" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Expresión \"depende_on\" no válida establecida en el filtro {0}" @@ -13083,7 +13192,7 @@ msgstr "Condición inválida: {}" msgid "Invalid Credentials" msgstr "Credenciales no válidas" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Fecha invalida" @@ -13091,7 +13200,7 @@ msgstr "Fecha invalida" msgid "Invalid DocType" msgstr "DocType inválido" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "DocType no válido: {0}" @@ -13103,6 +13212,11 @@ msgstr "Nombre de campo no válido" msgid "Invalid File URL" msgstr "URL de archivo inválida" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Formato de filtro no válido para el campo {0} de tipo {1}. Pruebe a utilizar el icono de filtro en el campo para configurarlo correctamente" @@ -13115,7 +13229,7 @@ msgstr "Valor de filtro inválido" msgid "Invalid Home Page" msgstr "Error en la página de Inicio" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Link Inválido" @@ -13149,7 +13263,7 @@ msgstr "Opción inválida" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Servidor o puerto de correo saliente no válido: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Formato de salida no válido" @@ -13161,13 +13275,13 @@ msgstr "Anulación no válida" msgid "Invalid Parameters." msgstr "Parámetros Inválidos." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Contraseña invalida" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Numero de telefono invalido" @@ -13211,11 +13325,39 @@ msgstr "Secreto de Webhook inválido" msgid "Invalid aggregate function" msgstr "Función de agregación inválida" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Columna inválida" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Estado del documento no válido" @@ -13227,10 +13369,30 @@ msgstr "Conjunto de expresión no válida en el filtro {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Conjunto de expresión no válida en el filtro {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nombre de campo inválido {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nombre de campo no válido '{0}' en nombre automático" @@ -13239,11 +13401,26 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático" msgid "Invalid file path: {0}" msgstr "Ruta no válida archivo: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Filtro no válido: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13265,10 +13442,22 @@ msgstr "Contenido no válido o dañado para importar" msgid "Invalid redirect regex in row #{}: {}" msgstr "Regex de redirección no válida en la fila #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Argumentos de solicitud inválidos" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Archivo de plantilla no válido para importar" @@ -13676,8 +13865,8 @@ msgstr "El trabajo no se está ejecutando." msgid "Join video conference with {0}" msgstr "Únase a la videoconferencia con {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Saltar al campo" @@ -13710,11 +13899,11 @@ msgstr "Columna de Tablero Kanban" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Nombre del Tablero Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Configuración de Kanban" @@ -14002,7 +14191,7 @@ msgstr "La etiqueta es obligatoria" msgid "Landing Page" msgstr "Pagina de inicio" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Paisaje" @@ -14298,7 +14487,7 @@ msgstr "Carta" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14426,6 +14615,10 @@ msgstr "Me Gustas" msgid "Limit" msgstr "Límite" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14608,7 +14801,7 @@ msgstr "Enlaces" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14638,7 +14831,7 @@ msgstr "Filtro de Lista" msgid "List Settings" msgstr "Configuración de lista" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Configuración de lista" @@ -14689,6 +14882,7 @@ msgid "Load Balancing" msgstr "Balanceo de carga" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14709,7 +14903,7 @@ msgstr "Cargar más" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Cargando" @@ -14921,6 +15115,11 @@ msgstr "Inicio de sesión con nombre de usuario y contraseña no está permitido msgid "Login with {0}" msgstr "Iniciar sesión con {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15107,7 +15306,7 @@ msgstr "Obligatorio depende de" msgid "Mandatory Depends On (JS)" msgstr "Obligatorio Depende de (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Información obligatoria faltante:" @@ -15207,11 +15406,9 @@ msgstr "Marcar como Correo No Deseado" msgid "Mark as Unread" msgstr "Marcar como no Leído" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15332,7 +15529,7 @@ msgstr "Significado de Validar, Cancelar, Rectificar" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15400,7 +15597,6 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15413,11 +15609,10 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15428,16 +15623,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Mensaje" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Mensaje (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Mensaje (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15464,7 +15649,7 @@ msgstr "Mensaje enviado" msgid "Message Type" msgstr "Tipo de mensaje" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Mensaje marcado" @@ -15542,6 +15727,12 @@ msgstr "Título meta" msgid "Meta title for SEO" msgstr "Meta título para SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15561,7 +15752,7 @@ msgstr "Meta título para SEO" msgid "Method" msgstr "Método" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Método no permitido" @@ -15611,6 +15802,11 @@ msgstr "Puntuación mínima de contraseña" msgid "Minor" msgstr "Menor" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minutos" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15650,7 +15846,7 @@ msgstr "Campo faltante" msgid "Missing Fields" msgstr "Campos Faltantes" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Faltan filtros requeridos" @@ -15658,7 +15854,7 @@ msgstr "Faltan filtros requeridos" msgid "Missing Permission" msgstr "Faltan permisos" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Falta un valor" @@ -15724,7 +15920,7 @@ msgstr "Modificado por" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16006,7 +16202,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi msgid "Must be of type \"Attach Image\"" msgstr "Debe ser del tipo \"Adjuntar Imagen\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Debe tener permisos de reporte para ver este documento." @@ -16024,7 +16220,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16168,12 +16364,12 @@ msgstr "Plantilla de barra de navegación" msgid "Navbar Template Values" msgstr "Valores de la plantilla de la barra de navegación" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navegar por la lista hacia abajo" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navegar lista arriba" @@ -16192,10 +16388,14 @@ msgstr "Configuración de Navegación" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Valor negativo" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Error de conjunto anidado. Contacta con el administrador." @@ -16278,7 +16478,7 @@ msgstr "Nuevo Evento" msgid "New Folder" msgstr "Nueva carpeta" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Nuevo Tablero Kanban" @@ -16301,10 +16501,6 @@ msgstr "Nuevo mensaje desde la página de contacto del sitio web" msgid "New Name" msgstr "Nuevo Nombre" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Nuevo Boletín" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Nueva notificación" @@ -16317,7 +16513,7 @@ msgstr "Nueva tarjeta numérica" msgid "New Onboarding" msgstr "Nuevo módulo de incorporación" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nueva Contraseña" @@ -16362,7 +16558,26 @@ msgstr "Nuevo nombre del flujo de trabajo" msgid "New Workspace" msgstr "Nueva Área de Trabajo" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "La nueva contraseña no puede ser igual a la contraseña anterior" @@ -16386,7 +16601,7 @@ msgstr "Nuevo valor a establecer" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16394,19 +16609,19 @@ msgstr "Nuevo valor a establecer" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Nuevo/a: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Nuevo {0} creado" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Nuevo {0} {1} agregado al panel {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Nuevo {0} {1} creado" @@ -16418,52 +16633,17 @@ msgstr "Nuevo {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "El usuario recién creado {0} no tiene ningún rol habilitado." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Boletín de noticias" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Adjuntar boletín de noticias" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Boletín Grupo de correo electrónico" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Administrador de boletínes" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "El boletín ya ha sido enviado" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Se debe publicar el boletín de noticias para enviar un enlace a la vista web en el correo electrónico" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "El boletín debe tener al menos un destinatario" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Boletines" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16580,7 +16760,7 @@ msgstr "Siguiente al hacer clic" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "No" @@ -16609,7 +16789,7 @@ msgid "No Copy" msgstr "No copiar" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16721,11 +16901,11 @@ msgstr "No hay resultados" msgid "No Results found" msgstr "No se encontraron resultados" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "No hay Roles especificados" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "No se ha encontrado ningún campo de selección" @@ -16753,10 +16933,6 @@ msgstr "No hay alertas para hoy" msgid "No automatic optimization suggestions available." msgstr "No hay sugerencias de optimización automática disponibles." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "No se han encontrado enlaces rotos en el contenido del correo electrónico" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Sin cambios en el documento" @@ -16793,7 +16969,7 @@ msgstr "Ningún contacto agregado todavía." msgid "No contacts linked to document" msgstr "No hay contactos vinculados al documento" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "No hay datos para exportar" @@ -16813,7 +16989,7 @@ msgstr "No hay una cuenta de correo electrónico asociada con el usuario. Por fa msgid "No failed logs" msgstr "No hay registros fallidos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. Utilice el formulario de personalización para añadir un campo personalizado de tipo \"Seleccionar\"." @@ -16872,7 +17048,7 @@ msgstr "No se de filas (máx 500)" msgid "No of Sent SMS" msgstr "Nº de SMS enviados" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Sin permiso para {0}" @@ -16965,6 +17141,12 @@ msgstr "No negativo" msgid "Non-Conforming" msgstr "No Conforme" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Ninguna" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Ninguno: Fin del flujo de trabajo" @@ -16979,7 +17161,7 @@ msgstr "Copias normalizadas" msgid "Normalized Query" msgstr "Consulta normalizada" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "No permitido" @@ -17000,7 +17182,7 @@ msgstr "No son Descendientes de" msgid "Not Equals" msgstr "No es igual" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "No encontrado" @@ -17026,16 +17208,16 @@ msgstr "No está vinculado a ningún registro" msgid "Not Nullable" msgstr "No nulo" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "No permitido" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "No permitido leer {0}" @@ -17045,8 +17227,8 @@ msgstr "No permitido leer {0}" msgid "Not Published" msgstr "No publicado" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17063,7 +17245,6 @@ msgstr "No visto" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "No enviado" @@ -17080,7 +17261,7 @@ msgstr "No especificado" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "No es un archivo separado por comas válido (archivo CSV)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "No es una Imagen de Usuario Válida." @@ -17096,7 +17277,7 @@ msgstr "Usuario no válido" msgid "Not active" msgstr "No activo" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "No permitido para {0}: {1}" @@ -17137,7 +17318,7 @@ msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo s #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "No permitido" @@ -17315,7 +17496,7 @@ msgstr "Notificarme si no tiene respuesta durante (en minutos)" msgid "Notify users with a popup when they log in" msgstr "Notificar a los usuarios con un mensaje emergente cuando se conectan" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Ahora" @@ -17458,6 +17639,11 @@ msgstr "Configuración del Proveedor OAuth" msgid "OAuth Scope" msgstr "Ámbito OAuth" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth ha sido habilitado pero no autorizado. Por favor, utilice el botón \"Autorizar acceso API\" para hacer lo mismo." @@ -17530,6 +17716,10 @@ msgstr "Desplazamiento X" msgid "Offset Y" msgstr "Desplazamiento Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Contraseña anterior" @@ -17601,7 +17791,7 @@ msgstr "Con fecha de o después del" msgid "On or Before" msgstr "Con fecha de o antes del" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "El {0}, {1} escribió:" @@ -17677,7 +17867,7 @@ msgstr "Sólo el administrador puede editar" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guarde." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Solo el administrador puede usar la grabadora" @@ -17703,7 +17893,7 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj msgid "Only allowed to export customizations in developer mode" msgstr "Solo se permite exportar personalizaciones en modo desarrollador" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Solo pueden descartarse los borradores de documentos" @@ -17734,7 +17924,7 @@ msgstr "Solo se pueden editar informes del tipo Generador de Informes" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17742,7 +17932,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "Solo el asignado puede completar esta tarea." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Sólo se permiten {0} informes enviados por correo electrónico por usuario." @@ -17830,7 +18020,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Abrir en una nueva pestaña" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Abrir elemento de lista" @@ -17875,7 +18065,7 @@ msgstr "Abierto" msgid "Operation" msgstr "Operación" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "El Operador debe ser uno de {0}" @@ -17885,7 +18075,7 @@ msgstr "El Operador debe ser uno de {0}" msgid "Optimize" msgstr "Optimizar" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Optimizando imagen..." @@ -17974,6 +18164,10 @@ msgstr "Naranja" msgid "Order" msgstr "Orden" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17986,7 +18180,7 @@ msgstr "Historia de la organización" msgid "Org History Heading" msgstr "Encabezado de la historia de la organización" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orientación" @@ -18068,9 +18262,11 @@ msgstr "Propietario" msgid "PATCH" msgstr "PATCH" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18365,11 +18561,11 @@ msgstr "Se requiere el tipo de documento padre para crear un gráfico de tablero msgid "Parent is the name of the document to which the data will get added to." msgstr "Parent es el nombre del documento al que se agregarán los datos." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Campo padre no especificado en {0}: {1}" @@ -18429,11 +18625,11 @@ msgstr "Pasivo" msgid "Password" msgstr "Contraseña" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Correo de Contraseña enviado" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Restablecer contraseña" @@ -18467,11 +18663,11 @@ msgstr "Falta contraseña en la cuenta de correo" msgid "Password not found for {0} {1} {2}" msgstr "Contraseña no encontrada para {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Se han enviado instrucciones para restablecer la contraseña al correo electrónico de {}." -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Contraseña establecida" @@ -18479,11 +18675,11 @@ msgstr "Contraseña establecida" msgid "Password size exceeded the maximum allowed size" msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "El tamaño de la contraseña superó el tamaño máximo permitido." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" @@ -18491,10 +18687,6 @@ msgstr "Las contraseñas no coinciden" msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Las fechas pasadas no están permitidas para Programación." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Pegar" @@ -18640,7 +18832,7 @@ msgstr "¿Validar permanentemente {0}?" msgid "Permanently delete {0}?" msgstr "¿Eliminar permanentemente \"{0}\"?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Error de Permiso" @@ -18792,11 +18984,11 @@ msgstr "Teléfono" msgid "Phone No." msgstr "No. de teléfono" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Número de teléfono {0} establecido en el campo {1} no es válido." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18854,7 +19046,7 @@ msgstr "Por favor, duplicar este tema de la página Web para personalizarlo." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Instale la biblioteca ldap3 a través de pip para usar la funcionalidad ldap." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Por favor, establezca el gráfico" @@ -18870,7 +19062,7 @@ msgstr "Por favor agregue un asunto a su correo electrónico" msgid "Please add a valid comment." msgstr "Agregue un comentario válido." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Por favor, consulte a su administrador para verificar su registro" @@ -18902,7 +19094,7 @@ msgstr "Compruebe los valores de filtro establecidos para el gráfico del tabler msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Por favor, consultar su correo electrónico para la verificación" @@ -18967,7 +19159,7 @@ msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDA #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Por favor, active los pop-ups" @@ -18984,23 +19176,23 @@ msgstr "Habilite {} antes de continuar." msgid "Please ensure that your profile has an email address" msgstr "Por favor, asegúrese de que su perfil tiene una dirección de correo electrónico" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Por favor ingrese la URL del Access Token" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Por favor ingrese Authorize URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Por favor ingrese la URL Base" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Ingrese ID de Cliente antes de que se active el inicio de sesión social" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté habilitado" @@ -19008,7 +19200,7 @@ msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté hab msgid "Please enter OpenID Configuration URL" msgstr "Por favor, introduzca la URL de configuración de OpenID" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Por favor ingrese la URL de Redireccion" @@ -19020,7 +19212,7 @@ msgstr "Por favor, introduzca una dirección de correo válida." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Por favor, introduzca tanto su correo electrónico como su mensaje para que podamos ponernos en contacto con usted. Gracias." -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Por favor introduzca la contraseña" @@ -19033,11 +19225,11 @@ msgstr "Por favor, introduzca la contraseña para: {0}" msgid "Please enter valid mobile nos" msgstr "Por favor, ingrese un numero de móvil válido" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Por favor, ingrese su nueva contraseña." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Por favor, introduzca su antigua contraseña." @@ -19053,7 +19245,7 @@ msgstr "Por favor, inicie sesión para enviar un comentario." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Asegúrese de que los documentos de comunicación de referencia no estén vinculados circularmente." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Por favor, actualice para obtener el último documento." @@ -19065,10 +19257,6 @@ msgstr "Por favor, elimine la asignación de la impresora en Configuración de l msgid "Please save before attaching." msgstr "Por favor, guarde los cambios antes de adjuntar" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Por favor, guarde el boletín antes de enviarlo" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Por favor, guarde el documento antes de la asignación" @@ -19097,11 +19285,11 @@ msgstr "Por favor, seleccione Tipo de entidad primero" msgid "Please select Minimum Password Score" msgstr "Seleccione el valor mínimo de la contraseña" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Por favor, seleccione campos X e Y" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Por favor, seleccione un código de país para el campo {1}." @@ -19117,7 +19305,7 @@ msgstr "Por favor, seleccione un archivo o url" msgid "Please select a valid csv file with data" msgstr "Por favor, seleccione un archivo csv con datos válidos" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Seleccione un filtro de fecha válido" @@ -19125,7 +19313,7 @@ msgstr "Seleccione un filtro de fecha válido" msgid "Please select applicable Doctypes" msgstr "Por favor seleccione Doctypes aplicables" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" @@ -19155,11 +19343,11 @@ msgstr "Por favor, establece Dirección de correo electrónico" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Configure una asignación de impresora para este formato de impresión en la Configuración de la impresora" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Por favor, defina los filtros" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Defina el valor de los filtros en la tabla Filtro de informes." @@ -19183,7 +19371,7 @@ msgstr "Configure SMS antes de configurarlo como un método de autenticación, a msgid "Please setup a message first" msgstr "Configura un mensaje primero" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo" @@ -19195,7 +19383,7 @@ msgstr "" msgid "Please specify" msgstr "Por favor, especifique" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Por favor, especifique un DocType padre válido para {0}" @@ -19232,14 +19420,19 @@ msgstr "Por favor, actualice {} antes de continuar." msgid "Please use a valid LDAP search filter" msgstr "Por favor, utilice un filtro de búsqueda LDAP válido" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Por favor verifica tu dirección de correo" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19285,7 +19478,7 @@ msgstr "Elemento del Menú del Portal" msgid "Portal Settings" msgstr "Configuración del portal" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Retrato" @@ -19329,6 +19522,10 @@ msgstr "Entradas por {0}" msgid "Posts filed under {0}" msgstr "Publicar bajo {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19388,15 +19585,15 @@ msgstr "" msgid "Prepared Report User" msgstr "Usuario de informe preparado" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Error en la representación del informe preparado" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Preparando Informe" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Anexar la plantilla al mensaje de correo electrónico" @@ -19417,8 +19614,6 @@ msgstr "Presione Enter para guardar" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19463,7 +19658,7 @@ msgstr "Vista previa en {0}" msgid "Preview type" msgstr "Tipo de vista previa" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Vista Previa:" @@ -19534,16 +19729,16 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impresión" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impresión" @@ -19598,6 +19793,11 @@ msgstr "Error de formato de impresión" msgid "Print Format Field Template" msgstr "Formato de impresión de Plantilla de campo" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19608,6 +19808,10 @@ msgstr "Ayuda de formato de impresión" msgid "Print Format Type" msgstr "Tipo de formato de impresión" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "El formato de impresión {0} está deshabilitado" @@ -19639,11 +19843,11 @@ msgstr "Ocultar en impresión" msgid "Print Hide If No Value" msgstr "Impresión Oculta si no hay Valor" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Lenguaje de impresión" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "¡La impresión ha sido enviada a la impresora!" @@ -19661,7 +19865,7 @@ msgstr "Servidor de Impresión" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Ajustes de Impresión" @@ -19771,6 +19975,10 @@ msgstr "Privado" msgid "Private Files (MB)" msgstr "Archivos privados (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19781,7 +19989,7 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Proceder" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Procede de todas maneras" @@ -19806,7 +20014,7 @@ msgstr "Perfil" msgid "Progress" msgstr "Progreso" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Proyecto" @@ -19893,6 +20101,10 @@ msgstr "Público" msgid "Public Files (MB)" msgstr "Archivos públicos (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19901,14 +20113,7 @@ msgstr "Archivos públicos (MB)" msgid "Publish" msgstr "Publicar" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Publicar como página web" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19916,7 +20121,6 @@ msgstr "Publicar como página web" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20040,7 +20244,7 @@ msgstr "Código QR" msgid "QR Code for Login Verification" msgstr "Código QR para la verificación de inicio de Sesión" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "Bandeja QZ fallida: " @@ -20137,7 +20341,6 @@ msgstr "Cola(s)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "En cola" @@ -20160,19 +20363,11 @@ msgstr "En cola para envío. Puedes seguir el progreso durante {0}." msgid "Queued for backup. You will receive an email with the download link" msgstr "En cola para la copia de seguridad. Recibirá un correo electrónico con el enlace de descarga" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "Correos electrónicos {0} en cola" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Colas" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "Poniendo correos electrónicos en cola..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "Poniendo en cola {0} para su envío" @@ -20262,7 +20457,7 @@ msgstr "Clasificación" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Comandos sin formato" @@ -20297,7 +20492,7 @@ msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Re: {0}" @@ -20373,7 +20568,7 @@ msgstr "Leído por el Destinatario en" msgid "Read mode" msgstr "Modo de lectura" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Lea la documentación para saber más" @@ -20393,7 +20588,7 @@ msgstr "Tiempo real (SocketIO)" msgid "Reason" msgstr "Razón" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Reconstruir" @@ -20539,12 +20734,12 @@ msgstr "Redirección" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "El servidor de caché Redis no esta funcionando. Por favor, póngase en contacto con el administrador / soporte técnico" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Rehacer" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Rehacer última acción" @@ -20758,11 +20953,11 @@ msgid "Referrer" msgstr "Referente" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20801,7 +20996,7 @@ msgstr "Refrescando" msgid "Refreshing..." msgstr "Refrescando..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Registrado pero discapacitados" @@ -20850,7 +21045,7 @@ msgstr "Re-enlazado" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Recargar" @@ -20881,7 +21076,7 @@ msgstr "Recordar el último valor seleccionado" msgid "Remind At" msgstr "Recordar el" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Recuérdemelo" @@ -20963,7 +21158,7 @@ msgstr "Eliminado" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20991,7 +21186,7 @@ msgstr "Renderice las etiquetas a la izquierda y los valores a la derecha en est msgid "Reopen" msgstr "Reabrir" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Repetir" @@ -21091,6 +21286,8 @@ msgstr "Responder a todos" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21106,8 +21303,11 @@ msgstr "Responder a todos" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Reporte" @@ -21176,7 +21376,7 @@ msgstr "Administrador de reportes" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Nombre del reporte" @@ -21228,11 +21428,11 @@ msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del msgid "Report has no numeric fields, please change the Report Name" msgstr "El informe no tiene campos numéricos, cambie el nombre del informe" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Informe iniciado, haga clic para ver el estado" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Límite de reportes alcanzado" @@ -21240,7 +21440,7 @@ msgstr "Límite de reportes alcanzado" msgid "Report timed out." msgstr "Se agotó el tiempo de espera para reportar." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Informe actualizado con éxito" @@ -21248,7 +21448,7 @@ msgstr "Informe actualizado con éxito" msgid "Report was not saved (there were errors)" msgstr "El reporte no se pudo guardar (contiene errores)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal." @@ -21261,7 +21461,7 @@ msgstr "Informe {0}" msgid "Report {0} deleted" msgstr "Informe {0} eliminado" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "El reporte {0} está deshabilitado" @@ -21284,7 +21484,7 @@ msgstr "Informes" msgid "Reports & Masters" msgstr "Informes y Maestros" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Informes ya en cola" @@ -21469,6 +21669,31 @@ msgstr "Restablecer predeterminados" msgid "Reset your password" msgstr "Restablecer su Contraseña" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21594,10 +21819,8 @@ msgstr "Revocar" msgid "Revoked" msgstr "Revocado" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21700,7 +21923,7 @@ msgstr "Permisos de Rol" msgid "Role Permissions Manager" msgstr "Administrar permisos" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Administrar permisos" @@ -21734,7 +21957,7 @@ msgstr "Replicación de roles" msgid "Role and Level" msgstr "Rol y nivel" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Se ha establecido el rol según el tipo de usuario {0}" @@ -21808,7 +22031,6 @@ msgstr "Método de Redondeo" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21822,7 +22044,6 @@ msgstr "Método de Redondeo" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21849,7 +22070,7 @@ msgstr "Redirecciones de ruta" msgid "Route: Example \"/app\"" msgstr "Ruta: Ejemplo \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Línea" @@ -21940,7 +22161,7 @@ msgstr "Regla" msgid "Rule Conditions" msgstr "Condiciones de la regla" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Ya existe una regla para este DocType, Rol, Permlevel y la combinación if-owner." @@ -22129,12 +22350,12 @@ msgstr "Sábado" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22161,7 +22382,7 @@ msgstr "Guardar como" msgid "Save Customizations" msgstr "Guardar Personalización" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Guardar reporte" @@ -22180,7 +22401,7 @@ msgstr "Guarde el documento." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22225,32 +22446,17 @@ msgstr "Escanee el código QR e ingrese el código resultante que se muestra." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Calendario" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Calendario del Boletín de noticias" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Programar envío el" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Programar envío el" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Programar el envío para más tarde" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Programado." @@ -22284,17 +22490,6 @@ msgstr "Tipo de trabajo programado" msgid "Scheduled Jobs Logs" msgstr "Registro de Trabajos Programados" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Enviando Programado" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Programado para enviar" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Se actualizó la ejecución programada de la secuencia de comandos {0}" @@ -22363,6 +22558,11 @@ msgstr "Alcance" msgid "Scopes" msgstr "Alcances" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22506,6 +22706,11 @@ msgstr "Buscar..." msgid "Searching ..." msgstr "Buscando ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22553,7 +22758,7 @@ msgstr "Configuración de seguridad" msgid "See all Activity" msgstr "Ver todas las actividades" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Ver todos los reportes pasados." @@ -22621,8 +22826,8 @@ msgstr "Seleccionar" msgid "Select All" msgstr "Seleccionar Todo" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22638,7 +22843,7 @@ msgid "Select Column" msgstr "Seleccionar Columna" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Seleccione columnas" @@ -22688,7 +22893,7 @@ msgstr "Seleccione Tipos de documentos para establecer qué Permisos de usuario #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Seleccionar campo" @@ -22759,7 +22964,7 @@ msgid "Select Page" msgstr "Seleccionar Página" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Seleccionar formato de impresión" @@ -22851,13 +23056,13 @@ msgstr "Seleccionar al menos 1 registro para la impresión" msgid "Select atleast 2 actions" msgstr "Seleccione al menos 2 acciones" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Seleccionar elemento de la lista" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Seleccionar múltiples elementos de la lista" @@ -22895,9 +23100,7 @@ msgstr "Seleccionar {0}" msgid "Self approval is not allowed" msgstr "La auto aprobación no está permitida" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Enviar" @@ -22928,11 +23131,6 @@ msgstr "Enviar alerta en" msgid "Send Email Alert" msgstr "Enviar Alerta de Correo Electrónico" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "Enviar correo el" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22980,7 +23178,7 @@ msgstr "Enviar ahora" msgid "Send Print as PDF" msgstr "Enviar Impresión como 'PDF'" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Enviar confirmación de lectura" @@ -22990,38 +23188,16 @@ msgstr "Enviar confirmación de lectura" msgid "Send System Notification" msgstr "Enviar notificación del sistema" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Enviar correo de prueba" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Enviar a todos los cesionarios" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Enviar Enlace de cancelar suscripción" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Enviar enlace de vista web" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Enviar Email de bienvenida" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Enviar un correo de prueba" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Volver a enviar" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23065,14 +23241,10 @@ msgstr "Enviar solicitudes a esta dirección de correo electrónico" msgid "Send login link" msgstr "Enviar enlace de inicio de sesión" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Enviarme una copia" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Enviar ahora" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23088,19 +23260,15 @@ msgstr "Enviar mensaje de correo electrónico para darse de baja" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Remitente" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Correo electrónico del Remitente" @@ -23117,9 +23285,7 @@ msgid "Sender Field should have Email in options" msgstr "El campo del remitente debe tener opciones de correo electrónico" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Nombre del Remitente" @@ -23139,18 +23305,9 @@ msgstr "SendGrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Enviando" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Enviando Correos" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Enviando..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23158,8 +23315,6 @@ msgstr "Enviando..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Enviado" @@ -23229,7 +23384,7 @@ msgstr "Secuencia {0} ya utilizada en {1}" msgid "Server Action" msgstr "Acción del servidor" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Error del Servidor" @@ -23248,7 +23403,7 @@ msgstr "Servidor IP" msgid "Server Script" msgstr "Script del servidor" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench." @@ -23287,15 +23442,15 @@ msgstr "Configuración predeterminada de sesión" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Valores predeterminados de sesión" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Valores predeterminados de sesión guardados" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sesión expirada" @@ -23327,7 +23482,7 @@ msgstr "Establecer" msgid "Set Banner from Image" msgstr "Establecer banner desde imagen" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Establecer Gráfico" @@ -23353,7 +23508,7 @@ msgstr "Establecer filtros" msgid "Set Filters for {0}" msgstr "Establecer filtros para {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Establecer Nivel" @@ -23549,7 +23704,7 @@ msgstr "Configurando su Sistema" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23595,7 +23750,7 @@ msgstr "Configuración > Usuario" msgid "Setup > User Permissions" msgstr "Configurar > Permisos del Usuario" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Configuración automática de correo electrónico" @@ -23684,6 +23839,8 @@ msgstr "Atajos" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Mostrar" @@ -23710,6 +23867,12 @@ msgstr "Mostrar Valores Absolutos" msgid "Show All" msgstr "Mostrar Todo" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Mostrar Calendario" @@ -23790,7 +23953,7 @@ msgstr "Mostrar selector de idioma" msgid "Show Line Breaks after Sections" msgstr "Mostrar saltos de línea después de las Secciones" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Mostrar enlaces" @@ -23827,6 +23990,12 @@ msgstr "Mostrar ventana emergente de vista previa" msgid "Show Processlist" msgstr "Mostrar lista de procesos" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Mostrar errores relacionados" @@ -23853,8 +24022,14 @@ msgstr "Mostrar títulos de las secciones" msgid "Show Sidebar" msgstr "Mostrar barra lateral" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Mostrar etiquetas" @@ -23883,6 +24058,12 @@ msgstr "Mostrar Tours" msgid "Show Traceback" msgstr "Mostrar Traceback" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Mostrar advertencias" @@ -23936,6 +24117,12 @@ msgstr "Mostrar formulario completo en lugar de un modal de entrada rápida" msgid "Show in Module Section" msgstr "Mostrar en la sección Módulo" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24016,12 +24203,12 @@ msgstr "Barra lateral y Comentarios" msgid "Sign Up and Confirmation" msgstr "Registro y confirmación" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "El registro está desactivado" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Regístrate" @@ -24107,8 +24294,10 @@ msgstr "Omitir" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Saltar Autorización" @@ -24272,6 +24461,16 @@ msgstr "Modo de transporte SocketIO" msgid "Soft-Bounced" msgstr "Rebotes livianos" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Algunas columnas pueden quedar cortadas al imprimir en PDF. Intente mantener el número de columnas por debajo de 10." @@ -24339,7 +24538,7 @@ msgstr "Campo de orden {0} debe ser un nombre de campo válido" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24429,7 +24628,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Estándar" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "No se puede eliminar DocType estándar." @@ -24445,7 +24644,7 @@ msgstr "Estándar no establecido" msgid "Standard Permissions" msgstr "Permisos estándares" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "El formato de impresión estándar no se puede actualizar" @@ -24569,7 +24768,7 @@ msgstr "Iniciar el" #: frappe/workflow/doctype/workflow_state/workflow_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "Estado" +msgstr "" #: frappe/public/js/workflow_builder/components/Properties.vue:24 msgid "State Properties" @@ -24632,7 +24831,6 @@ msgstr "Intervalo de tiempo de estadísticas" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24657,7 +24855,6 @@ msgstr "Intervalo de tiempo de estadísticas" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24668,7 +24865,7 @@ msgstr "Intervalo de tiempo de estadísticas" msgid "Status" msgstr "Estado" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Estado actualizado" @@ -24798,8 +24995,6 @@ msgstr "Sub-dominio" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24808,10 +25003,9 @@ msgstr "Sub-dominio" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Asunto" @@ -24850,7 +25044,7 @@ msgstr "Cola de envío" msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Validar" @@ -24908,7 +25102,7 @@ msgstr "Valide este documento para completar este paso." msgid "Submit this document to confirm" msgstr "Valide este documento para confirmar" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "¿Validar {0} documentos?" @@ -25002,7 +25196,7 @@ msgstr "Mensaje de \"éxito\"" msgid "Success title" msgstr "Título de \"éxito\"" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "¡Éxito! La nueva contraseña es correcta 👍" @@ -25057,7 +25251,7 @@ msgstr "Sugerir optimizaciones" msgid "Suggested Indexes" msgstr "Índices sugeridos" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Nombre de usuario sugerido: {0}" @@ -25070,7 +25264,7 @@ msgstr "Nombre de usuario sugerido: {0}" msgid "Sum" msgstr "Suma" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Suma de {0}" @@ -25179,7 +25373,7 @@ msgstr "Sincronización" msgid "Syncing {0} of {1}" msgstr "Sincronizando {0} de {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Error de sintaxis" @@ -25357,6 +25551,7 @@ msgstr "Registros del sistema" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25416,6 +25611,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25486,7 +25686,7 @@ msgstr "Tabla recortada" msgid "Table updated" msgstr "Tabla actualiza" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "La tabla {0} no puede estar vacía" @@ -25594,7 +25794,7 @@ msgstr "Advertencias de plantilla" msgid "Templates" msgstr "Plantillas" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Desactivado temporalmente" @@ -25613,10 +25813,6 @@ msgstr "ID del trabajo de prueba" msgid "Test Spanish" msgstr "Probar español" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Correo electrónico de prueba enviado a {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Carpeta_Prueba" @@ -25684,10 +25880,6 @@ msgstr "Gracias por su Email" msgid "Thank you for your feedback!" msgstr "¡Gracias por tus comentarios!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Gracias por su interés en suscribirse a nuestras actualizaciones" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "¡Muchas gracias por tu mensaje!" @@ -25756,7 +25948,7 @@ msgstr "La clave API del navegador obtenida de la Consola de Google Cloud en " -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Los cambios han sido revertidos." @@ -25814,11 +26006,11 @@ msgstr "Se han repetido los siguientes Días de Asignación: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "El siguiente Header Script añadirá la fecha actual a un elemento en 'Header HTML' con clase 'header-content'" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Los siguientes valores no son válidos: {0}. Los valores deben ser uno de {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Los siguientes valores no existen para {0}: {1}" @@ -25857,7 +26049,7 @@ msgstr "El siguiente recorrido comenzará desde donde lo dejó el usuario." msgid "The number of seconds until the request expires" msgstr "El número de segundos hasta que expire la solicitud" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "La contraseña de su cuenta ha caducado." @@ -25874,15 +26066,15 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en " -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "El enlace para restablecer la contraseña ha caducado" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "El recurso que está buscando no está disponible" @@ -25894,7 +26086,7 @@ msgstr "El Rol {0} debe ser un Rol personalizado." msgid "The selected document {0} is not a {1}." msgstr "El documento seleccionado {0} no es un {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos." @@ -25955,7 +26147,7 @@ msgstr "No hay próximos eventos para usted." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "No hay {0} para este {1}, ¿Por qué no empiezas uno?" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" @@ -25984,7 +26176,7 @@ msgstr "No hay nada nuevo que mostrarle en este momento." msgid "There is some problem with the file url: {0}" msgstr "Hay un poco de problema con la url del archivo: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" @@ -26008,7 +26200,7 @@ msgstr "Hubo errores" msgid "There were errors while creating the document. Please try again." msgstr "Hubo errores al crear el documento. Inténtalo de nuevo." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo." @@ -26022,6 +26214,12 @@ msgstr "Existen algunos errores al configurar el nombre, por favor póngase en c msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Estos anuncios aparecerán dentro de una alerta descartable debajo de la barra de navegación." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26047,7 +26245,7 @@ msgstr "Autenticación por otros medios" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las transacciones" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Este tablero Kanban será privado" @@ -26071,7 +26269,7 @@ msgstr "Este año" msgid "This action is irreversible. Do you wish to continue?" msgstr "Esta acción es irreversible. ¿Desea continuar?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Esta acción solo está permitida para {}" @@ -26098,7 +26296,7 @@ msgstr "Este doctype no tiene campos huérfanos que recortar" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Este doctype tiene migraciones pendientes, ejecute 'bench migrate' antes de modificar el doctype para evitar perder los cambios." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Este documento no puede ser borrado en este momento, ya que está siendo modificado por otro usuario. Por favor, inténtelo de nuevo pasado un tiempo." @@ -26114,7 +26312,7 @@ msgstr "Este documento tiene cambios sin guardar que podrían no aparecer en el msgid "This document is already amended, you cannot ammend it again" msgstr "Este documento ya está enmendado, no puede enmendarlo nuevamente" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Este documento está actualmente bloqueado y en cola de ejecución. Por favor, inténtelo de nuevo pasado un tiempo." @@ -26179,7 +26377,7 @@ msgstr "Este proveedor de geolocalización aún no es compatible." msgid "This goes above the slideshow." msgstr "Esto va encima de la presentación de diapositivas." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo." @@ -26235,15 +26433,7 @@ msgstr "Esto puede imprimirse en varias páginas." msgid "This month" msgstr "Este mes" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "El envío de este boletín está previsto en {0}." - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Este boletín estaba programado para enviarse en una fecha posterior. ¿Está seguro de que desea enviarlo ahora?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar." @@ -26251,7 +26441,7 @@ msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en msgid "This report was generated on {0}" msgstr "Este informe fue generado el {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Este reporte fue generado {0}." @@ -26317,7 +26507,7 @@ msgstr "Esto restablecerá este tour y lo mostrará a todos los usuarios. ¿Est msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Limitar" @@ -26355,7 +26545,6 @@ msgstr "Jueves" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Hora" @@ -26581,10 +26770,8 @@ msgid "Title of the page" msgstr "Título de la página" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "A" @@ -26638,7 +26825,7 @@ msgstr "Para añadir valores dinámicos desde el documento, utilice etiquetas ji "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Para permitir más informes, actualice el límite en la configuración del sistema." @@ -26674,7 +26861,7 @@ msgstr "Para exportar este paso como JSON, vincúlelo en un documento de tutoria msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Para obtener el reporte actualizado, hacer clic en {0}." @@ -26749,7 +26936,7 @@ msgstr "Alternar Vista de Cuadrícula" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" @@ -26770,6 +26957,12 @@ msgstr "Token" msgid "Token Cache" msgstr "Caché de tokens" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26797,7 +26990,7 @@ msgstr "Demasiados Documentos" msgid "Too Many Requests" msgstr "Demasiadas solicitudes" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Demasiados cambios en la base de datos en una sola acción." @@ -26805,7 +26998,7 @@ msgstr "Demasiados cambios en la base de datos en una sola acción." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora" @@ -26867,9 +27060,9 @@ msgstr "Parte superior derecha" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Total" @@ -26895,16 +27088,8 @@ msgstr "Imágenes totales" msgid "Total Outgoing Emails" msgstr "Total de correos salientes" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Total de destinatarios" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Suscriptores Totales" @@ -26913,11 +27098,6 @@ msgstr "Suscriptores Totales" msgid "Total Users" msgstr "Total de usuarios" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Total de visualizaciones" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27005,7 +27185,7 @@ msgstr "Seguimiento de los hitos de cualquier documento" msgid "Tracking" msgstr "Seguimiento" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "URL de seguimiento generada y copiada en el portapapeles" @@ -27052,7 +27232,7 @@ msgstr "Transiciones" msgid "Translatable" msgstr "Traducible" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -27085,6 +27265,11 @@ msgstr "Traducción" msgid "Translations" msgstr "Traducciones" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27307,33 +27492,65 @@ msgstr "URL para documentación o ayuda" msgid "URL must start with http:// or https://" msgstr "La URL debe comenzar con http:// o https://" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL de la página" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL para ir al hacer clic en la imagen de la presentación de diapositivas" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "Campaña UTM" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "Medio UTM" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "Fuente UTM" @@ -27366,7 +27583,7 @@ msgstr "No se puede abrir el archivo adjunto. ¿Lo ha exportado como CSV?" msgid "Unable to read file format for {0}" msgstr "Incapaz de leer el formato de archivo para {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "No se puede enviar el correo porque falta una cuenta de correo electrónico. Configure la cuenta de correo electrónico predeterminada desde Configuración > Cuenta de correo electrónico" @@ -27383,7 +27600,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}" msgid "Unassign Condition" msgstr "Desasignar condición" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Excepción no controlada" @@ -27391,16 +27608,20 @@ msgstr "Excepción no controlada" msgid "Unchanged" msgstr "Sin alterar" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Deshacer" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Deshacer última acción" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Dejar de seguir" @@ -27423,6 +27644,13 @@ msgstr "Correos electrónicos no controlados" msgid "Unique" msgstr "Único" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Desconocido" @@ -27431,7 +27659,7 @@ msgstr "Desconocido" msgid "Unknown Column: {0}" msgstr "Columna desconocida: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Método de Redondeo desconocido: {}" @@ -27478,7 +27706,7 @@ msgstr "Deseleccionar Todo" msgid "Unshared" msgstr "Incompartible" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Darse de baja" @@ -27498,10 +27726,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "No suscrito" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Columna sin título" @@ -27624,7 +27857,7 @@ msgstr "Actualizado a una nueva versión 🎉" msgid "Updated successfully" msgstr "Actualizado exitosamente" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Actualización" @@ -27902,7 +28135,7 @@ msgstr "El usuario no puede crear" msgid "User Cannot Search" msgstr "El usuario no puede buscar" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Usuario modificado" @@ -28008,12 +28241,12 @@ msgstr "Permiso de Usuario" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Permisos de Usuario" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permisos de Usuario" @@ -28114,15 +28347,15 @@ msgstr "No existe un usuario con dirección de correo electrónico {0}" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Usuario con correo electrónico: {0} no existe en el sistema. Solicite al 'Administrador del sistema' que cree el usuario por usted." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "El usuario {0} no se puede eliminar" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "El usuario {0} no se puede deshabilitar" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "El usuario {0} no puede ser renombrado" @@ -28143,7 +28376,7 @@ msgstr "El usuario {0} no tiene permiso para crear un espacio de trabajo." msgid "User {0} has requested for data deletion" msgstr "El usuario {0} ha solicitado la eliminación de datos" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Usuario {0} suplantado como {1}" @@ -28172,7 +28405,7 @@ msgstr "URI de Información de Usuario" msgid "Username" msgstr "Nombre de usuario" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Nombre de usuario {0} ya existe" @@ -28312,15 +28545,15 @@ msgstr "Valor Cambiado" msgid "Value To Be Set" msgstr "Valor a Establecer" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "El valor no puede ser cambiado para {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "El valor no puede ser negativo para" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "El valor no puede ser negativo para {0}: {1}" @@ -28346,6 +28579,12 @@ msgstr "El valor de este campo se establecerá como la fecha de vencimiento en l msgid "Value must be one of {0}" msgstr "El valor debe ser uno de {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28359,7 +28598,7 @@ msgstr "Valor demasiado grande" msgid "Value {0} missing for {1}" msgstr "Falta el valor {0} para {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "El valor {0} debe tener un formato de duración válido: dhms" @@ -28439,7 +28678,7 @@ msgstr "Ver" msgid "View All" msgstr "Ver Todo" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Ver registros de auditoría" @@ -28683,7 +28922,7 @@ msgstr "Página Web" msgid "Web Page Block" msgstr "Bloque de página web" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL de Página Web" @@ -28726,6 +28965,7 @@ msgstr "Vista Web" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28784,7 +29024,6 @@ msgstr "URL de Webhook" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28792,9 +29031,7 @@ msgid "Website" msgstr "Sitio Web" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Análisis de sitios web" @@ -28994,11 +29231,11 @@ msgstr "URL de bienvenida" msgid "Welcome Workspace" msgstr "Área de Trabajo de Bienvenida" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Correo electrónico de bienvenida enviado" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Bienvenido a {0}" @@ -29084,7 +29321,7 @@ msgstr "sólo se mostrará si se habilitan los títulos de sección" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Con Membrete" @@ -29225,12 +29462,12 @@ msgstr "Flujo de trabajo actualizado correctamente" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Área de Trabajo" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "El Área de Trabajo {0} no existe" @@ -29352,7 +29589,7 @@ msgstr "Campos del eje Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Campo Y" @@ -29413,7 +29650,7 @@ msgstr "Amarillo" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Si" @@ -29453,11 +29690,11 @@ msgstr "Estás accediendo a la cuenta de otro usuario." msgid "You are not allowed to access this resource" msgstr "No tiene permiso para acceder a este recurso" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}" @@ -29480,7 +29717,7 @@ msgstr "No tiene permiso para editar el informe." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "No está permitido exportar {} doctype" @@ -29488,11 +29725,11 @@ msgstr "No está permitido exportar {} doctype" msgid "You are not allowed to print this report" msgstr "Usted no está autorizado a imprimir este informe" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "No tiene permisos para enviar correos electrónicos relacionados con este documento" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Usted no está autorizado para modificar este formulario web" @@ -29508,7 +29745,7 @@ msgstr "No está autorizado a acceder a esta página sin iniciar sesión." msgid "You are not permitted to access this page." msgstr "Usted no está autorizado a acceder a esta página." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29516,7 +29753,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Ahora estás siguiendo este documento. Recibirá actualizaciones diarias por correo electrónico. Puede cambiar esto en la Configuración de usuario." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Solo se le permite actualizar el pedido, no eliminar ni añadir aplicaciones." @@ -29561,7 +29798,7 @@ msgstr "Puedes cambiar la política de retención de {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Puede continuar con el tutorial después de explorar esta página" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Puede desactivar este {0} en lugar de borrarlo." @@ -29603,7 +29840,7 @@ msgstr "Puede seleccionar uno de los siguientes:" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Puede establecer un valor alto aquí si varios usuarios iniciarán sesión desde la misma red." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Puede intentar cambiar los filtros de su informe." @@ -29680,11 +29917,15 @@ msgstr "No tienes permisos de lectura o selección para {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Usted no tiene suficientes permisos para completar la acción" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "No tienes permiso para acceder a {0}: {1}." @@ -29692,19 +29933,19 @@ msgstr "No tienes permiso para acceder a {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "No tiene permisos para cancelar todos los documentos vinculados." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Usted no tiene acceso al Reporte: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "No tienes permiso para acceder al DocType {0} ." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Usted no tiene permiso para acceder a este archivo" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Usted no tiene permiso para obtener un informe sobre: {0}" @@ -29769,15 +30010,15 @@ msgstr "Usted editó esto por última vez" msgid "You must add atleast one link." msgstr "Debe añadir al menos un enlace." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Debe iniciar sesión para utilizar este formulario." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Debes iniciar sesión para enviar este formulario" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Necesita el permiso '{0}' en {1} {2} para realizar esta acción." @@ -29797,7 +30038,7 @@ msgstr "Tiene que estar registrado para acceder a esta página." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Usted necesita estar en el modo de programador para editar un formulario Web Estándar" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad." @@ -29880,7 +30121,7 @@ msgstr "Has dejado de seguir este documento" msgid "You viewed this" msgstr "Ya has visto esto" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Has iniciado sesión como otro usuario desde otra pestaña. Actualiza esta página para seguir usando el sistema." @@ -29921,11 +30162,11 @@ msgstr "Su cuenta ha sido bloqueada y se reanudará después de {0} segundos" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Tu tarea de {0} {1} ha sido eliminada por {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Su navegador no admite el elemento de audio." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Su navegador no admite el elemento de vídeo." @@ -29945,11 +30186,11 @@ msgstr "Su formulario ha sido actualizado exitosamente" msgid "Your login id is" msgstr "Su ID de usuario es" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Su nueva contraseña se ha establecido correctamente." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Su antigua contraseña es incorrecta." @@ -29963,7 +30204,7 @@ msgstr "El nombre de la organización y dirección para el pie de página del co msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar." @@ -29975,7 +30216,7 @@ msgstr "Su sitio está en mantenimiento o se está actualizando." msgid "Your verification code is {0}" msgstr "Su código de verificación es {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Cero" @@ -29999,7 +30240,7 @@ msgstr "_doctype" msgid "_report" msgstr "_informe" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator` solo funciona con `as_list=True` o `as_dict=True`" @@ -30022,7 +30263,7 @@ msgstr "after_insert" msgid "amend" msgstr "modificar" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "y" @@ -30079,8 +30320,8 @@ msgstr "crear" msgid "cyan" msgstr "cian" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "d" @@ -30194,7 +30435,7 @@ msgstr "correo electrónico" msgid "email inbox" msgstr "bandeja de entrada de email" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "vacío" @@ -30246,8 +30487,8 @@ msgstr "gris" msgid "gzip not found in PATH! This is required to take a backup." msgstr "¡gzip no encontrado en RUTA! Esto es necesario para realizar una copia de seguridad." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" @@ -30280,7 +30521,7 @@ msgstr "juan@example.com" msgid "just now" msgstr "justo ahora" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "etiqueta" @@ -30320,8 +30561,8 @@ msgstr "login_required" msgid "long" msgstr "larga" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30510,8 +30751,8 @@ msgstr "respuesta" msgid "restored {0} as {1}" msgstr "restaurado {0} como {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30804,7 +31045,7 @@ msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}" msgid "{0} Report" msgstr "{0} Informe" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} Informes" @@ -30845,7 +31086,7 @@ msgstr "{0} ya ha sido dado de baja" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} ya ha sido dado de baja para {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} y {1}" @@ -30853,7 +31094,7 @@ msgstr "{0} y {1}" msgid "{0} are currently {1}" msgstr "{0} son actualmente {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} son obligatorios" @@ -30883,7 +31124,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} canceló este documento {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30951,7 +31192,11 @@ msgstr "{0} no existe en el renglón {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "No se pudo determinar el formato {0} a partir de los valores de esta columna. El valor predeterminado será {1}." @@ -30971,11 +31216,7 @@ msgstr "{0} h" msgid "{0} has already assigned default value for {1}." msgstr "{0} ya ha asignado un valor por defecto para {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} ha sido añadido al grupo de correo electrónico." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} ha dejado la conversación en {1} {2}" @@ -31045,6 +31286,10 @@ msgstr "{0} es como {1}" msgid "{0} is mandatory" msgstr "{0} es obligatorio" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} no es un campo del doctype {1}" @@ -31066,7 +31311,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} no es un DocType válido para Dynamic Link" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} no es una dirección de correo electrónico válida" @@ -31074,11 +31319,11 @@ msgstr "{0} no es una dirección de correo electrónico válida" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} no es un código ISO 3166 ALFA-2 válido." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} no es un nombre válido" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} no es un número de teléfono válido" @@ -31086,15 +31331,15 @@ msgstr "{0} no es un número de teléfono válido" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de trabajo y vuelva a intentarlo." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} no es un DocType padre válido para {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} no es un campo padre válido para {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} no es un formato de informe válido. El formato del informe debe ser uno de los siguientes {1}" @@ -31118,7 +31363,7 @@ msgstr "{0} no es uno de {1}" msgid "{0} is not set" msgstr "{0} no está establecido" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1}" @@ -31128,7 +31373,8 @@ msgstr "{0} es uno de {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} es requerido" @@ -31141,11 +31387,11 @@ msgstr "{0} está establecido" msgid "{0} is within {1}" msgstr "{0} está dentro de {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} elementos seleccionados" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}" @@ -31178,23 +31424,23 @@ msgstr "Hace {0} minutos" msgid "{0} months ago" msgstr "Hace {0} meses" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} debe ser después de {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} debe comenzar con '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} debe ser igual a '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} debe ser uno de {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} debe ser uno de {1}" @@ -31206,7 +31452,7 @@ msgstr "{0} debe establecerse primero" msgid "{0} must be unique" msgstr "{0} debe ser único" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} debe ser {1} {2}" @@ -31235,16 +31481,12 @@ msgstr "{0} de {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} de {1} ({2} filas con hijos)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} de {1} enviado" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "{0} solamente." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} o {1}" @@ -31281,11 +31523,11 @@ msgstr "{0} eliminado su asignación." msgid "{0} role does not have permission on any doctype" msgstr "{0} el rol no tiene permiso sobre ningún doctype" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} fila #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} guardado exitosamente" @@ -31327,7 +31569,7 @@ msgstr "{0} envió este documento {1}" msgid "{0} subscribers added" msgstr "{0} suscriptores añadidos" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} para dejar de recibir correos electrónicos de este tipo" @@ -31397,11 +31639,11 @@ msgstr "{0} {1} no existe, seleccione un nuevo objetivo para fusionar" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} no encontrado" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: el registro enviado no se puede eliminar. Primero debe {2} cancelarlo {3}." @@ -31514,7 +31756,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} está configurado para indicar {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" @@ -31550,11 +31792,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na msgid "{} Complete" msgstr "{} Completo" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Código python inválido en la línea {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Código python posiblemente inválido.
{}" @@ -31576,7 +31818,7 @@ msgstr "El campo {} no puede estar vacío." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} no es una cadena de fecha válida." diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index 263157b495..d5c25b8091 100644 --- a/frappe/locale/fa.po +++ b/frappe/locale/fa.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-28 23:16\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز msgid "'Recipients' not specified" msgstr "دریافت کنندگان مشخص نشده است" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "{0} یک URL معتبر نیست" @@ -141,7 +141,7 @@ msgstr "1 روز" msgid "1 Google Calendar Event synced." msgstr "1 رویداد تقویم Google همگام‌سازی شد." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 گزارش" @@ -149,7 +149,7 @@ msgstr "1 گزارش" msgid "1 comment" msgstr "1 نظر" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "1 روز پیش" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 ساعت" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 ساعت پیش" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 دقیقه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 ماه پیش" @@ -178,39 +178,39 @@ msgstr "1 از 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" -msgstr "1 رکورد صادر خواهد شد" +msgstr "1 رکورد برون‌بُرد خواهد شد" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "1 ثانیه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 هفته قبل" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 سال پیش" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "2 ساعت پیش" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "2 ماه پیش" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "2 هفته پیش" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "2 سال پیش" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "3 دقیقه پیش" @@ -226,7 +226,7 @@ msgstr "4 ساعت" msgid "5 Records" msgstr "5 رکورد" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "5 روز پیش" @@ -525,11 +525,6 @@ msgstr "" msgid "Hi," msgstr "سلام،" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "گزارش ها و مستندات" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "هشدار: این فیلد سیستمی ایجاد شده است و ممکن است توسط یک به‌روزرسانی آینده بازنویسی شود. در عوض با استفاده از {0} آن را تغییر دهید." @@ -556,6 +551,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "نام DocType باید با یک حرف شروع شود و فقط شامل حروف، اعداد، فاصله، زیرخط و خط فاصله باشد." +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "یک پست برجسته باید تصویر جلد داشته باشد" @@ -590,6 +590,13 @@ msgstr "نمادی برای این ارز. مثلاً $" msgid "A template already exists for field {0} of {1}" msgstr "یک الگو از قبل برای فیلد {0} از {1} وجود دارد" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "حدس زدن یک کلمه به تنهایی آسان است." @@ -834,7 +841,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -851,7 +857,7 @@ msgstr "اقدام / مسیر" msgid "Action Complete" msgstr "اقدام کامل شد" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "اقدام ناموفق بود" @@ -900,10 +906,10 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "اقدامات" @@ -965,8 +971,8 @@ msgstr "لاگ فعالیت" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "افزودن" @@ -977,13 +983,13 @@ msgstr "اضافه / حذف ستون ها" #: frappe/core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" -msgstr "افزودن / به روز رسانی" +msgstr "افزودن / به‌روزرسانی" #: frappe/core/page/permission_manager/permission_manager.js:442 msgid "Add A New Rule" msgstr "افزودن یک قانون جدید" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "افزودن پیوست" @@ -1007,7 +1013,7 @@ msgstr "افزودن حاشیه در بالا" msgid "Add Card to Dashboard" msgstr "افزودن کارت به داشبورد" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "افزودن نمودار به داشبورد" @@ -1016,8 +1022,8 @@ msgid "Add Child" msgstr "افزودن فرزند" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1053,7 +1059,7 @@ msgid "Add Gray Background" msgstr "افزودن پس زمینه خاکستری" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "افزودن گروه" @@ -1078,7 +1084,7 @@ msgstr "افزودن شرکت کنندگان" msgid "Add Query Parameters" msgstr "افزودن پارامترهای پرسمان" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "افزودن نقش ها" @@ -1088,7 +1094,7 @@ msgstr "افزودن ردیف" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "افزودن امضا" @@ -1111,12 +1117,12 @@ msgstr "افزودن مشترکین" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "افزودن الگو" @@ -1223,7 +1229,7 @@ msgid "Add tab" msgstr "افزودن تب" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "افزودن به داشبورد" @@ -1251,7 +1257,7 @@ msgstr "افزودن {0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Added" -msgstr "اضافه شد" +msgstr "" #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' @@ -1378,11 +1384,11 @@ msgstr "مدیریت" msgid "Administrator" msgstr "ادمین" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "مدیر وارد شده است" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "ادمین از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد." @@ -1490,6 +1496,14 @@ msgstr "هشدار" msgid "Alerts and Notifications" msgstr "هشدارها و اعلان ها" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1530,7 +1544,6 @@ msgstr "تراز کردن مقدار" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1860,6 +1873,12 @@ msgstr "در ذکر نام مجاز است" msgid "Allowed Modules" msgstr "ماژول های مجاز" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1876,7 +1895,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "اجازه دادن به DocType، DocType. مراقب باش!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "قبلا ثبت شده است" @@ -1967,7 +2022,7 @@ msgstr "اصلاح کننده" msgid "Amendment Naming Override" msgstr "اصلاح نامگذاری لغو" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "اصلاحیه مجاز نیست" @@ -1975,7 +2030,7 @@ msgstr "اصلاحیه مجاز نیست" msgid "Amendment naming rules updated." msgstr "قوانین نامگذاری اصلاحیه به روز شد." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "هنگام تنظیم پیش‌فرض‌های نشست خطایی روی داد" @@ -2056,16 +2111,6 @@ msgstr "به غیر از System Manager، نقش‌هایی با Set User Permis msgid "App" msgstr "برنامه" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "شناسه مشتری برنامه" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "راز مشتری برنامه" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2079,21 +2124,24 @@ msgstr "لوگوی برنامه" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "نام برنامه" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "برنامه برای ماژول یافت نشد: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "برنامه {0} نصب نشده است" @@ -2158,7 +2206,7 @@ msgstr "اعمال شد" msgid "Apply" msgstr "درخواست دادن" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "اعمال قانون تخصیص" @@ -2239,7 +2287,7 @@ msgstr "بایگانی شد" msgid "Archived Columns" msgstr "ستون های بایگانی شده" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "آیا مطمئن هستید که می‌خواهید واگذاری ها را پاک کنید؟" @@ -2271,7 +2319,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "آیا مطمئن هستید که می‌خواهید تغییرات را نادیده بگیرید؟" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "آیا مطمئن هستید که می‌خواهید یک گزارش جدید ایجاد کنید؟" @@ -2307,10 +2355,6 @@ msgstr "آیا مطمئن هستید که می‌خواهید همه سفارش msgid "Are you sure you want to save this document?" msgstr "آیا مطمئن هستید که می‌خواهید این سند را ذخیره کنید؟" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "آیا مطمئن هستید که اکنون می‌خواهید این خبرنامه را ارسال کنید؟" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2343,16 +2387,16 @@ msgstr "طبق درخواست شما، حساب و داده های شما در { msgid "Assign Condition" msgstr "تعیین شرط" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "اختصاص دادن به" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "اختصاص دادن به" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "اختصاص به گروه کاربر" @@ -2504,7 +2548,7 @@ msgstr "حداقل یک فیلد از نوع سند والد اجباری است msgid "Attach" msgstr "پیوست" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "پیوست چاپ سند" @@ -2564,9 +2608,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "پیوست به نام باید یک رشته یا یک عدد صحیح باشد" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "پیوست" @@ -2593,20 +2635,17 @@ msgid "Attachment Removed" msgstr "پیوست حذف شد" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "پیوست ها" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "تلاش برای اتصال به سینی QZ..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "تلاش برای راه‌اندازی QZ Tray..." @@ -2614,11 +2653,6 @@ msgstr "تلاش برای راه‌اندازی QZ Tray..." msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "حضار" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2663,6 +2697,11 @@ msgstr "هنگام دریافت ایمیل از حساب ایمیل، احراز msgid "Author" msgstr "نویسنده" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2897,7 +2936,7 @@ msgstr "آواتار" msgid "Average" msgstr "میانگین" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "میانگین {0}" @@ -3002,7 +3041,7 @@ msgstr "B9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3045,7 +3084,7 @@ msgstr "تصویر پس زمینه" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "کارهای پس زمینه" @@ -3549,7 +3588,7 @@ msgstr "برون‌بُرد PDF انبوه" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Bulk Update" -msgstr "به روز رسانی انبوه" +msgstr "به‌روزرسانی انبوه" #: frappe/model/workflow.py:254 msgid "Bulk approval only support up to 500 documents." @@ -3651,7 +3690,7 @@ msgstr "لغو شده" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3774,10 +3813,8 @@ msgstr "عنوان پاسخ به تماس" msgid "Camera" msgstr "دوربین" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3844,7 +3881,7 @@ msgstr "نمی‌توان نام {0} را به {1} تغییر داد زیرا {0 msgid "Cancel" msgstr "لغو" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "لغو" @@ -3862,11 +3899,7 @@ msgstr "لغو همه" msgid "Cancel All Documents" msgstr "لغو تمام اسناد" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "لغو زمان‌بندی" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} سند لغو شود؟" @@ -3915,7 +3948,7 @@ msgstr "نمی‌توان حذف کرد" #: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" -msgstr "پس از ارسال امکان به روز رسانی وجود ندارد" +msgstr "پس از ارسال امکان به‌روزرسانی وجود ندارد" #: frappe/core/doctype/file/file.py:621 msgid "Cannot access file path {0}" @@ -3933,11 +3966,11 @@ msgstr "قبل از ارسال نمی‌توان لغو کرد. انتقال {0} msgid "Cannot cancel {0}." msgstr "نمی‌توان {0} را لغو کرد." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "نمی‌توان وضعیت docstatus را از 0 (پیش‌نویس) به 2 (لغو) تغییر داد" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "نمی‌توان وضعیت docstatus را از 1 (ارائه شده) به 0 (پیش‌نویس) تغییر داد" @@ -3965,7 +3998,7 @@ msgstr "نمی‌توان محیط کار خصوصی از سایر کاربرا msgid "Cannot delete Home and Attachments folders" msgstr "نمی‌توان پوشه‌های Home و Attachments را حذف کرد" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "نمی‌توان حذف یا لغو کرد زیرا {0} {1} با {2} {3} {4} پیوند داده شده است" @@ -4020,7 +4053,7 @@ msgstr "نمودارهای استاندارد را نمی‌توان ویرای msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "نمی‌توان یک گزارش استاندارد را ویرایش کرد. لطفا کپی کنید و یک گزارش جدید ایجاد کنید" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "نمی‌توان سند لغو شده را ویرایش کرد" @@ -4057,7 +4090,7 @@ msgstr "نمی‌توان چندین چاپگر را به یک قالب چاپی msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "پیوند سند لغو شده امکان پذیر نیست: {0}" @@ -4102,7 +4135,7 @@ msgstr "نمی‌توان {0} را به روز کرد" msgid "Cannot use sub-query in order by" msgstr "نمی‌توان از پرسمان فرعی به ترتیب استفاده کرد" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "نمی‌توان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد" @@ -4128,7 +4161,7 @@ msgstr "کارت" msgid "Card Break" msgstr "کارت شکستن" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "برچسب کارت" @@ -4159,10 +4192,6 @@ msgstr "توضیحات دسته" msgid "Category Name" msgstr "نام دسته" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "سنت" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4221,7 +4250,8 @@ msgstr "تغییر فرمت چاپ" #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +msgstr "شماره توالی شروع/فعلی یک سری موجود را تغییر دهید.
\n\n" +"هشدار: به‌روزرسانی نادرست شمارنده‌ها می‌تواند از ایجاد اسناد جلوگیری کند. " #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4270,7 +4300,7 @@ msgstr "پیکربندی نمودار" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "نام نمودار" @@ -4327,10 +4357,6 @@ msgstr "بررسی" msgid "Check Request URL" msgstr "URL درخواست را بررسی کنید" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "لینک های خراب را بررسی کنید" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "برای انتخاب، ستون‌ها را علامت بزنید، برای تنظیم ترتیب آن را بکشید." @@ -4354,10 +4380,6 @@ msgstr "اگر می‌خواهید کاربر را مجبور به انتخاب msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "بررسی لینک های خراب..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "یک لحظه چک کردن" @@ -4404,6 +4426,10 @@ msgstr "جدول فرزند {0} برای فیلد {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده می‌شوند" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "انتخاب کارت موجود یا ایجاد کارت جدید" @@ -4443,15 +4469,19 @@ msgstr "شهر/شهرک" msgid "Clear" msgstr "پاک کردن" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "پاک کردن و افزودن الگو" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "پاک کردن و افزودن الگو" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "همه را پاک کن" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "پاک کردن واگذاری" @@ -4477,7 +4507,7 @@ msgstr "پاک کردن لاگ ها پس از (بر حسب روز)" msgid "Clear User Permissions" msgstr "مجوزهای کاربر را پاک کنید" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "پیام ایمیل را پاک کنید و الگو را اضافه کنید" @@ -4493,10 +4523,6 @@ msgstr "روی Customize کلیک کنید تا اولین ویجت خود را msgid "Click here" msgstr "اینجا کلیک کنید" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "برای تایید اینجا را کلیک کنید" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4576,8 +4602,10 @@ msgid "Client Credentials" msgstr "اعتبار مشتری" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "شناسه مشتری" @@ -4593,6 +4621,12 @@ msgstr "شناسه مشتری" msgid "Client Information" msgstr "اطلاعات مشتری" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4605,13 +4639,32 @@ msgstr "اسکریپت کلاینت" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "راز مشتری" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4696,7 +4749,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "جمع شدن" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "جمع کردن همه" @@ -4721,7 +4774,7 @@ msgstr "تاشو بستگی دارد" #. Label of the collapsible_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" -msgstr "بسته به تاشو (JS)" +msgstr "تاشو بستگی دارد به (JS)" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the color (Data) field in DocType 'DocType' @@ -4751,7 +4804,7 @@ msgstr "بسته به تاشو (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4831,18 +4884,18 @@ msgstr "ستون {0}" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Columns" -msgstr "ستون ها" +msgstr "ستون‌ها" #. Label of the columns (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Columns / Fields" msgstr "ستون ها / فیلدها" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "ستون ها بر اساس" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -5001,7 +5054,7 @@ msgstr "کامل" msgid "Complete By" msgstr "تکمیل توسط" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "ثبت نام کامل" @@ -5091,6 +5144,12 @@ msgstr "توضیحات شرط" msgid "Conditions" msgstr "شرایط" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5127,7 +5186,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "تایید" @@ -5136,7 +5195,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "تایید" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "تأیید دسترسی" @@ -5149,7 +5208,7 @@ msgstr "حذف اکانت را تایید کنید" msgid "Confirm New Password" msgstr "گذرواژه جدید را تأیید کنید" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "گذرواژه را تایید کنید" @@ -5158,17 +5217,12 @@ msgstr "گذرواژه را تایید کنید" msgid "Confirm Request" msgstr "درخواست را تایید کنید" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "ایمیل خود را تایید کنید" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "الگوی ایمیل تایید" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "تایید شده" @@ -5195,8 +5249,8 @@ msgstr "برنامه متصل" msgid "Connected User" msgstr "کاربر متصل" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "به سینی QZ متصل شد!" @@ -5288,6 +5342,11 @@ msgstr "تنظیمات تماس با ما" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "گزینه‌های تماس، مانند «پرسمان فروش، درخواست پشتیبانی» و غیره هر کدام در یک خط جدید یا با کاما از هم جدا شده‌اند." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "مخاطب" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "حاوی {0} اصلاح امنیتی است" @@ -5299,8 +5358,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5308,8 +5365,7 @@ msgstr "حاوی {0} اصلاحات امنیتی است" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5333,10 +5389,8 @@ msgstr "محتوا (Markdown)" msgid "Content Hash" msgstr "هش محتوا" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5393,7 +5447,7 @@ msgstr "وضعیت مشارکت" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "در کلیپ بورد کپی شد." @@ -5409,7 +5463,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "کپی خطا در کلیپ بورد" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "کپی به کلیپ بورد" @@ -5434,7 +5488,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "به سرور ایمیل خروجی متصل نشد" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "{0} پیدا نشد" @@ -5442,6 +5496,10 @@ msgstr "{0} پیدا نشد" msgid "Could not map column {0} to field {1}" msgstr "ستون {0} به فیلد {1} نگاشت نشد" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "راه اندازی نشد: " @@ -5458,7 +5516,7 @@ msgstr "ذخیره نشد، لطفاً داده‌هایی را که وارد ک #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "شمردن" @@ -5482,7 +5540,7 @@ msgstr "" #. Label of the counter (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Counter" -msgstr "پیشخوان" +msgstr "شمارنده" #. Label of the country (Link) field in DocType 'Address' #. Label of the country (Link) field in DocType 'Address Template' @@ -5497,7 +5555,7 @@ msgstr "پیشخوان" msgid "Country" msgstr "کشور" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "کد کشور مورد نیاز است" @@ -5529,7 +5587,7 @@ msgstr "بس" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5543,13 +5601,13 @@ msgstr "ایجاد و ادامه" msgid "Create Address" msgstr "ایجاد آدرس" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "ایجاد کارت" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "نمودار ایجاد کنید" @@ -5628,11 +5686,6 @@ msgstr "ایجاد یک {0} جدید" msgid "Create a {0} Account" msgstr "یک حساب {0} ایجاد کنید" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "ایجاد و ارسال ایمیل برای گروه خاصی از مشترکین به صورت دوره ای." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "ایجاد یا ویرایش فرمت چاپ" @@ -5981,6 +6034,10 @@ msgstr "ترجمه سفارشی" msgid "Custom field renamed to {0} successfully." msgstr "فیلد سفارشی با موفقیت به {0} تغییر نام داد." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6014,12 +6071,12 @@ msgstr "سفارشی سازی برای {0} صادر شده به:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "شخصی سازی" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "شخصی سازی" @@ -6038,7 +6095,7 @@ msgstr "داشبورد را سفارشی کنید" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "سفارشی‌سازی فرم" @@ -6065,14 +6122,14 @@ msgstr "برش" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" -msgstr "فیروزه ای" +msgstr "فیروزه‌ای" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "DELETE" -msgstr "حذف" +msgstr "DELETE" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' @@ -6140,7 +6197,7 @@ msgstr "خطر" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Dark" -msgstr "تاریک" +msgstr "تیره" #. Label of the dark_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -6164,7 +6221,7 @@ msgstr "تم تیره" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "داشبورد" @@ -6331,7 +6388,6 @@ msgstr "نسخه پایگاه داده" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6395,6 +6451,11 @@ msgstr "روز" msgid "Day of Week" msgstr "روز هفته" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "روزها" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6629,11 +6690,11 @@ msgstr "مقدار پیش‌فرض" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "پیش‌فرض ها" +msgstr "پیش‌فرض‌ها" #: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" -msgstr "پیش‌فرض ها به روز شد" +msgstr "پیش‌فرض‌ها به روز شد" #. Description of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json @@ -6659,15 +6720,16 @@ msgstr "با تاخیر" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" @@ -6703,7 +6765,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "حذف تب" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "حذف و ایجاد جدید" @@ -6745,12 +6807,12 @@ msgstr "حذف تب" msgid "Delete this record to allow sending to this email address" msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" @@ -6974,6 +7036,7 @@ msgstr "تم پیشخوان" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7119,7 +7182,7 @@ msgstr "غیرفعال کردن پاورقی استاندارد ایمیل" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable System Update Notification" -msgstr "غیرفعال کردن اعلان به روز رسانی سیستم" +msgstr "غیرفعال کردن اعلان به‌روزرسانی سیستم" #. Label of the disable_user_pass_login (Check) field in DocType 'System #. Settings' @@ -7157,8 +7220,8 @@ msgstr "غیرفعال کردن ثبت نام ها" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "غیرفعال" @@ -7167,7 +7230,7 @@ msgstr "غیرفعال" msgid "Disabled Auto Reply" msgstr "پاسخ خودکار غیرفعال است" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7239,7 +7302,7 @@ msgstr "نمایش بستگی دارد" #. Label of the depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Display Depends On (JS)" -msgstr "نمایش بستگی به (JS) دارد" +msgstr "نمایش بستگی دارد به (JS)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 msgid "Divider" @@ -7325,6 +7388,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7570,7 +7634,7 @@ msgstr "شرایط قانون نامگذاری سند" msgid "Document Naming Settings" msgstr "تنظیمات نامگذاری سند" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "سند در صف قرار گرفت" @@ -7727,7 +7791,7 @@ msgid "Document Types and Permissions" msgstr "انواع اسناد و مجوزها" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "قفل سند باز شد" @@ -7864,7 +7928,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "حساب کاربری ندارید؟" @@ -7918,7 +7982,7 @@ msgstr "لینک دانلود" msgid "Download PDF" msgstr "دانلود PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "دانلود گزارش" @@ -8002,7 +8066,7 @@ msgid "Due Date Based On" msgstr "تاریخ سررسید بر اساس" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "تکرار کردن" @@ -8117,9 +8181,9 @@ msgstr "خروج" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8131,7 +8195,7 @@ msgstr "خروج" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "ویرایش" @@ -8166,11 +8230,11 @@ msgstr "ویرایش بلوک سفارشی" msgid "Edit Custom HTML" msgstr "ویرایش HTML سفارشی" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "ویرایش DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "ویرایش DocType" @@ -8345,10 +8409,9 @@ msgstr "انتخابگر عنصر" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8383,7 +8446,7 @@ msgstr "حساب ایمیل غیرفعال شد." msgid "Email Account Name" msgstr "نام حساب ایمیل" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "حساب ایمیل چندین بار اضافه شده است" @@ -8439,11 +8502,9 @@ msgstr "آدرس پاورقی ایمیل" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "گروه ایمیل" @@ -8492,7 +8553,7 @@ msgstr "صف ایمیل" msgid "Email Queue Recipient" msgstr "گیرنده صف ایمیل" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "فلاشینگ صف ایمیل به دلیل خرابی های زیاد متوقف شد." @@ -8516,18 +8577,11 @@ msgstr "محدودیت تلاش مجدد ایمیل" msgid "Email Rule" msgstr "قانون ایمیل" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "ایمیل ارسال شد" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "ایمیل ارسال شده در" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8563,7 +8617,7 @@ msgstr "گزینه همگام سازی ایمیل" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "قالب ایمیل" @@ -8595,7 +8649,7 @@ msgstr "ایمیل به سطل زباله منتقل شد" msgid "Email is mandatory to create User Email" msgstr "ایمیل برای ایجاد ایمیل کاربر الزامی است" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "ایمیل به {0} ارسال نشد (لغو اشتراک / غیرفعال)" @@ -8621,7 +8675,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "ایمیل ها بی صدا هستند" @@ -8634,10 +8688,18 @@ msgstr "ایمیل‌ها با اقدامات بعدی ممکن در گردش ک msgid "Embed code copied" msgstr "کد جاسازی کپی شد" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8673,6 +8735,12 @@ msgstr "اتصال خودکار در اسناد را فعال کنید" msgid "Enable Comments" msgstr "فعال کردن نظرات" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8832,8 +8900,8 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "فعال" @@ -8960,7 +9028,7 @@ msgstr "شناسه مشتری و Client Secret را در تنظیمات Google msgid "Enter Code displayed in OTP App." msgstr "کد نمایش داده شده در OTP App را وارد کنید." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "گیرنده(های) ایمیل را وارد کنید" @@ -9063,7 +9131,7 @@ msgstr "لاگ‌های خطا" msgid "Error Message" msgstr "پیام خطا" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "خطا در اتصال به برنامه QZ Tray...

برای استفاده از ویژگی Raw Print، باید برنامه QZ Tray را نصب و اجرا کنید.

برای دانلود و نصب QZ Tray اینجا را کلیک کنید.
برای اطلاعات بیشتر در مورد چاپ خام اینجا را کلیک کنید." @@ -9101,6 +9169,14 @@ msgstr "خطا در اعلان" msgid "Error in print format on line {0}: {1}" msgstr "خطا در قالب چاپ در خط {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "خطا هنگام اتصال به حساب ایمیل {0}" @@ -9266,7 +9342,7 @@ msgstr "" msgid "Executing..." msgstr "در حال اجرا..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "زمان اجرا: {0} ثانیه" @@ -9292,11 +9368,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "بسط دادن" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "گسترش همه" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "آزمایشی" @@ -9349,13 +9429,13 @@ msgstr "زمان انقضای صفحه تصویر کد QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "برون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "برون‌بُرد" @@ -9691,7 +9771,7 @@ msgstr "واکشی تصاویر پیوست شده از سند" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" -msgstr "Save if Empty را واکشی کنید" +msgstr "در صورت خالی بودن، هنگام ذخیره واکشی کنید" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." @@ -9713,8 +9793,8 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیش‌ف #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9785,7 +9865,7 @@ msgstr "زمینه برای پیگیری" msgid "Field type cannot be changed for {0}" msgstr "نوع فیلد برای {0} قابل تغییر نیست" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "فیلد {0} در {1} وجود ندارد" @@ -9828,7 +9908,7 @@ msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در msgid "Fieldname called {0} must exist to enable autonaming" msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})" @@ -9844,7 +9924,7 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا msgid "Fieldname {0} appears multiple times" msgstr "نام فیلد {0} چندین بار ظاهر می‌شود" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "نام فیلد {0} نمی‌تواند نویسه های خاصی مانند {1} داشته باشد" @@ -9896,6 +9976,10 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت msgid "Fields must be a list or tuple when as_list is enabled" msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10061,6 +10145,14 @@ msgstr "نام فیلتر" msgid "Filter Values" msgstr "مقادیر فیلتر" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "فیلتر..." @@ -10272,7 +10364,7 @@ msgid "Folio" msgstr "برگ برگ" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "دنبال کردن" @@ -10280,7 +10372,7 @@ msgstr "دنبال کردن" msgid "Followed by" msgstr "به دنبال" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "فیلترهای گزارش زیر دارای مقادیر گمشده هستند:" @@ -10304,10 +10396,6 @@ msgstr "فیلدهای زیر دارای مقادیر جا افتاده هستن msgid "Following fields have missing values:" msgstr "فیلدهای زیر مقادیر گمشده دارند:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "پیوندهای زیر در محتوای ایمیل خراب هستند: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10468,7 +10556,7 @@ msgstr "برای کاربر" msgid "For Value" msgstr "برای مقدار" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید." @@ -10513,7 +10601,7 @@ msgstr "برای چندین آدرس، آدرس را در خطوط مختلف و #: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "برای به روز رسانی، می‌توانید فقط ستون های انتخابی را به روز کنید." +msgstr "برای به‌روزرسانی، می‌توانید فقط ستون های انتخابی را به روز کنید." #: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" @@ -10724,15 +10812,13 @@ msgid "Friday" msgstr "جمعه" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "از" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "از" @@ -10748,7 +10834,7 @@ msgstr "از تاریخ" msgid "From Date Field" msgstr "از فیلد تاریخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "از نوع سند" @@ -10799,7 +10885,7 @@ msgstr "تمام عرض" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "تابع" @@ -10808,10 +10894,14 @@ msgstr "تابع" msgid "Function Based On" msgstr "عملکرد بر اساس" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "تابع {0} در لیست سفید قرار ندارد." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "گره های بیشتر را فقط می‌توان تحت گره های نوع «گروهی» ایجاد کرد" @@ -10823,7 +10913,7 @@ msgstr "Fw: {0}" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "GET" -msgstr "گرفتن" +msgstr "GET" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -10873,7 +10963,7 @@ msgstr "عمومی" msgid "Generate Keys" msgstr "ایجاد کلیدها" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "ایجاد گزارش جدید" @@ -10881,8 +10971,8 @@ msgstr "ایجاد گزارش جدید" msgid "Generate Random Password" msgstr "ایجاد گذرواژه تصادفی" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "ایجاد URL پیگیری" @@ -10997,7 +11087,7 @@ msgstr "میانبرهای سراسری" msgid "Global Unsubscribe" msgstr "لغو اشتراک سراسری" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "برو" @@ -11161,8 +11251,6 @@ msgstr "Google Contacts - مخاطب در Google Contacts {0} به‌روزرس msgid "Google Contacts Id" msgstr "شناسه مخاطبین Google" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "درایو گوگل" @@ -11199,6 +11287,7 @@ msgstr "خدمات Google" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11293,6 +11382,10 @@ msgstr "گروه بر اساس نوع" msgid "Group By field is required to create a dashboard chart" msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "گره گروه" @@ -11307,7 +11400,7 @@ msgstr "کلاس شیء گروهی" msgid "Group your custom doctypes under modules" msgstr "Doctype های سفارشی خود را در زیر ماژول ها گروه بندی کنید" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "گروه بندی بر اساس {0}" @@ -11341,7 +11434,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11355,11 +11447,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11588,7 +11679,7 @@ msgstr "هلوتیکا" msgid "Helvetica Neue" msgstr "هلوتیکا نو" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "در اینجا URL پیگیری شما است" @@ -11624,12 +11715,17 @@ msgstr "پنهان شده است" msgid "Hidden Fields" msgstr "فیلدهای پنهان" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "پنهان شدن" @@ -11736,7 +11832,7 @@ msgstr "نوار کناری، منو و نظرات را پنهان کنید" msgid "Hide Standard Menu" msgstr "مخفی کردن منوی استاندارد" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "پنهان کردن تگ‌ها" @@ -11791,7 +11887,7 @@ msgstr "ابتدا قانون اولویت بالاتر اعمال خواهد ش msgid "Highlight" msgstr "برجسته" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "نکته: نمادها، اعداد و حروف بزرگ را در گذرواژه قرار دهید" @@ -11864,20 +11960,30 @@ msgstr "تعمیر و نگهداری ساعتی" msgid "Hourly rate limit for generating password reset links" msgstr "محدودیت نرخ ساعتی برای ایجاد پیوندهای بازنشانی گذرواژه" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "ساعت ها" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "این ارز چگونه باید فرمت شود؟ اگر تنظیم نشود، از پیش‌فرض های سیستم استفاده می‌کند" +msgstr "این ارز چگونه باید فرمت شود؟ اگر تنظیم نشود، از پیش‌فرض‌های سیستم استفاده می‌کند" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12188,7 +12294,7 @@ msgstr "نادیده گرفتن مجوزهای کاربر" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "فیلتر XSS را نادیده بگیرید" +msgstr "نادیده گرفتن فیلتر XSS" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' @@ -12197,7 +12303,7 @@ msgstr "فیلتر XSS را نادیده بگیرید" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Ignore attachments over this size" -msgstr "پیوست های بیش از این اندازه را نادیده بگیرید" +msgstr "نادیده گرفتن پیوست های بیش از این اندازه" #. Label of the ignored_apps (Table) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -12282,7 +12388,7 @@ msgstr "فیلد تصویر باید از نوع Attach Image باشد" msgid "Image link '{0}' is not valid" msgstr "پیوند تصویر \"{0}\" معتبر نیست" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "تصویر بهینه شده است" @@ -12330,7 +12436,7 @@ msgstr "ضمنی" msgid "Import" msgstr "درون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "درون‌بُرد" @@ -12558,11 +12664,15 @@ msgstr "شامل تم از برنامه ها" msgid "Include Web View Link in Email" msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "شامل فیلترها" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "شامل تورفتگی" @@ -12629,11 +12739,11 @@ msgstr "کاربر یا گذرواژه نادرست" msgid "Incorrect Verification code" msgstr "کد تأیید نادرست" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "مقدار نادرست در ردیف {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "مقدار نادرست:" @@ -12647,7 +12757,7 @@ msgstr "مقدار نادرست:" #: frappe/public/js/frappe/model/model.js:124 #: frappe/public/js/frappe/views/reports/report_view.js:1005 msgid "Index" -msgstr "فهرست مطالب" +msgstr "شاخص" #. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -12720,7 +12830,7 @@ msgstr "درج در بالا" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "درج بعد" @@ -12785,11 +12895,11 @@ msgstr "دستورالعمل ها" msgid "Instructions Emailed" msgstr "دستورالعمل ها ایمیل شد" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "سطح مجوز ناکافی برای {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "مجوز ناکافی برای {0}" @@ -12911,7 +13021,7 @@ msgstr "بی اعتبار" msgid "Invalid \"depends_on\" expression" msgstr "عبارت \"depends_on\" نامعتبر است" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "عبارت \"depends_on\" نامعتبر تنظیم شده در فیلتر {0}" @@ -12939,7 +13049,7 @@ msgstr "شرایط نامعتبر: {}" msgid "Invalid Credentials" msgstr "گواهی نامه نامعتبر" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "تاریخ نامعتبر است" @@ -12947,7 +13057,7 @@ msgstr "تاریخ نامعتبر است" msgid "Invalid DocType" msgstr "DocType نامعتبر است" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "DocType نامعتبر: {0}" @@ -12959,6 +13069,11 @@ msgstr "نام فیلد نامعتبر است" msgid "Invalid File URL" msgstr "URL فایل نامعتبر است" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12971,7 +13086,7 @@ msgstr "مقدار فیلتر نامعتبر است" msgid "Invalid Home Page" msgstr "صفحه اصلی نامعتبر است" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "پیوند نامعتبر" @@ -13005,7 +13120,7 @@ msgstr "گزینه نامعتبر" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "سرور یا درگاه ایمیل خروجی نامعتبر: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "فرمت خروجی نامعتبر است" @@ -13017,13 +13132,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "پارامترهای نامعتبر" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "گذرواژه نامعتبر" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "شماره تلفن نامعتبر" @@ -13067,11 +13182,39 @@ msgstr "راز Webhook نامعتبر است" msgid "Invalid aggregate function" msgstr "تابع تجمیع نامعتبر است" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "ستون نامعتبر است" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "docstatus نامعتبر است" @@ -13083,10 +13226,30 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "نام فیلد نامعتبر {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" @@ -13095,11 +13258,26 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" msgid "Invalid file path: {0}" msgstr "مسیر فایل نامعتبر: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "فیلتر نامعتبر: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13121,10 +13299,22 @@ msgstr "محتوای نامعتبر یا خراب برای درون‌بُرد" msgid "Invalid redirect regex in row #{}: {}" msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "آرگومان های درخواست نامعتبر" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "فایل الگو برای درون‌بُرد نامعتبر است" @@ -13532,8 +13722,8 @@ msgstr "کار در حال اجرا نیست" msgid "Join video conference with {0}" msgstr "پیوستن به کنفرانس ویدیویی با {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "پرش به فیلد" @@ -13566,11 +13756,11 @@ msgstr "ستون نمودار کانبان" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "نام نمودار کانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "تنظیمات کانبان" @@ -13582,7 +13772,7 @@ msgstr "نمای کانبان" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json msgid "Keep track of all update feeds" -msgstr "تمام فیدهای به روز رسانی را پیگیری کنید" +msgstr "تمام فیدهای به‌روزرسانی را پیگیری کنید" #. Description of a DocType #: frappe/core/doctype/communication/communication.json @@ -13858,7 +14048,7 @@ msgstr "برچسب اجباری است" msgid "Landing Page" msgstr "صفحه فرود" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "افقی" @@ -14002,7 +14192,7 @@ msgstr "آخرین همگام سازی شد" #: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 #: frappe/public/js/frappe/model/model.js:130 msgid "Last Updated By" -msgstr "آخرین به روز رسانی توسط" +msgstr "آخرین به‌روزرسانی توسط" #: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 #: frappe/public/js/frappe/model/model.js:126 @@ -14154,7 +14344,7 @@ msgstr "نامه" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14282,6 +14472,10 @@ msgstr "دوست دارد" msgid "Limit" msgstr "حد" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14464,7 +14658,7 @@ msgstr "پیوندها" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "لیست" @@ -14494,7 +14688,7 @@ msgstr "فیلتر لیست" msgid "List Settings" msgstr "تنظیمات لیست" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "تنظیمات لیست" @@ -14545,6 +14739,7 @@ msgid "Load Balancing" msgstr "تعادل بار" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14565,7 +14760,7 @@ msgstr "بارگذاری بیشتر" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "بارگذاری" @@ -14777,6 +14972,11 @@ msgstr "ورود با نام کاربری و گذرواژه مجاز نمی با msgid "Login with {0}" msgstr "ورود با {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,9 +15161,9 @@ msgstr "اجباری بستگی دارد" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "اجباری وابسته به (JS)" +msgstr "اجباری بستگی دارد به (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "اطلاعات اجباری از دست رفته:" @@ -15063,11 +15263,9 @@ msgstr "علامت گذاری به عنوان هرزنامه" msgid "Mark as Unread" msgstr "به عنوان \"خوانده نشده\" علامت گذاری کن" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15188,7 +15386,7 @@ msgstr "معنی ارسال، لغو، اصلاح" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15256,7 +15454,6 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15269,11 +15466,10 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15284,16 +15480,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "پیام" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "پیام (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "پیام (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15320,7 +15506,7 @@ msgstr "پیام فرستاده شد" msgid "Message Type" msgstr "نوع پیام" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "پیام بریده شد" @@ -15398,6 +15584,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "عنوان متا برای سئو" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15417,7 +15609,7 @@ msgstr "عنوان متا برای سئو" msgid "Method" msgstr "روش" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15467,6 +15659,11 @@ msgstr "حداقل امتیاز گذرواژه" msgid "Minor" msgstr "جزئی" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "دقایق" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15506,7 +15703,7 @@ msgstr "فیلد جا افتاده" msgid "Missing Fields" msgstr "فیلدهای گمشده" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "فیلترهای از دست رفته مورد نیاز است" @@ -15514,7 +15711,7 @@ msgstr "فیلترهای از دست رفته مورد نیاز است" msgid "Missing Permission" msgstr "مجوز از دست رفته" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "مقدار از دست رفته" @@ -15580,7 +15777,7 @@ msgstr "تغییر داده شده توسط" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15862,7 +16059,7 @@ msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که msgid "Must be of type \"Attach Image\"" msgstr "باید از نوع «پیوست تصویر» باشد" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد." @@ -15880,7 +16077,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16022,12 +16219,12 @@ msgstr "الگوی نوار ناوبری" msgid "Navbar Template Values" msgstr "مقادیر الگوی نوار ناوبری" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "پیمایش لیست به پایین" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "پیمایش لیست به بالا" @@ -16046,10 +16243,14 @@ msgstr "تنظیمات ناوبری" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "مقدار منفی" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس بگیرید." @@ -16132,7 +16333,7 @@ msgstr "رویداد جدید" msgid "New Folder" msgstr "پوشه جدید" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "نمودار کانبان جدید" @@ -16155,10 +16356,6 @@ msgstr "پیام جدید از صفحه تماس وب سایت" msgid "New Name" msgstr "نام جدید" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "خبرنامه جدید" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "اعلان جدید" @@ -16171,7 +16368,7 @@ msgstr "کارت شماره جدید" msgid "New Onboarding" msgstr "آشناسازی جدید" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "گذرواژه جدید" @@ -16216,13 +16413,32 @@ msgstr "نام گردش کار جدید" msgid "New Workspace" msgstr "محیط کار جدید" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "گذرواژه جدید نمی‌تواند مشابه گذرواژه قدیمی باشد" #: frappe/utils/change_log.py:389 msgid "New updates are available" -msgstr "به روز رسانی های جدید در دسترس هستند" +msgstr "به‌روزرسانی های جدید در دسترس هستند" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' @@ -16240,7 +16456,7 @@ msgstr "مقدار جدیدی که باید تنظیم شود" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16248,19 +16464,19 @@ msgstr "مقدار جدیدی که باید تنظیم شود" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "{0} جدید" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "{0} جدید ایجاد شد" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "{0} {1} جدید به داشبورد {2} اضافه شد" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "{0} {1} جدید ایجاد شد" @@ -16272,52 +16488,17 @@ msgstr "{0} جدید: {1}" msgid "New {} releases for the following apps are available" msgstr "نسخه‌های جدید {} برای برنامه‌های زیر در دسترس هستند" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "خبرنامه" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "پیوست خبرنامه" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "گروه ایمیل خبرنامه" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "مدیر خبرنامه" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "خبرنامه قبلا ارسال شده است" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "برای ارسال لینک مشاهده وب در ایمیل، خبرنامه باید منتشر شود" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "خبرنامه باید حداقل یک گیرنده داشته باشد" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "خبرنامه ها" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16434,7 +16615,7 @@ msgstr "بعد روی کلیک کنید" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "خیر" @@ -16463,7 +16644,7 @@ msgid "No Copy" msgstr "بدون کپی" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16575,11 +16756,11 @@ msgstr "هیچ نتیجه ای" msgid "No Results found" msgstr "نتیجه ای پیدا نشد" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "هیچ نقشی مشخص نشده است" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "فیلد انتخابی یافت نشد" @@ -16607,10 +16788,6 @@ msgstr "هیچ هشداری برای امروز وجود ندارد" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "هیچ پیوند شکسته ای در محتوای ایمیل یافت نشد" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "بدون تغییر در سند" @@ -16629,7 +16806,7 @@ msgstr "هیچ تغییری برای همگام سازی وجود ندارد" #: frappe/core/doctype/data_import/importer.py:298 msgid "No changes to update" -msgstr "هیچ تغییری برای به روز رسانی وجود ندارد" +msgstr "هیچ تغییری برای به‌روزرسانی وجود ندارد" #: frappe/website/doctype/blog_post/blog_post.py:378 msgid "No comments yet" @@ -16647,7 +16824,7 @@ msgstr "هنوز مخاطبی اضافه نشده است." msgid "No contacts linked to document" msgstr "هیچ مخاطبی به سند پیوند داده نشده است" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "داده ای برای برون‌بُرد نیست" @@ -16667,7 +16844,7 @@ msgstr "هیچ حساب ایمیلی با کاربر مرتبط نیست. لطف msgid "No failed logs" msgstr "هیچ لاگ ناموفقی نیست" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید." @@ -16726,7 +16903,7 @@ msgstr "تعداد ردیف (حداکثر 500)" msgid "No of Sent SMS" msgstr "شماره پیامک ارسالی" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "بدون مجوز برای {0}" @@ -16757,7 +16934,7 @@ msgstr "هیچ رکوردی برچسب گذاری نشده است." #: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" -msgstr "هیچ رکوردی صادر نخواهد شد" +msgstr "هیچ رکوردی برون‌بُرد نخواهد شد" #: frappe/public/js/frappe/form/grid.js:66 msgid "No rows" @@ -16819,6 +16996,12 @@ msgstr "غیر منفی" msgid "Non-Conforming" msgstr "ناسازگار" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "هیچ کدام" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "هیچ: پایان گردش کار" @@ -16833,7 +17016,7 @@ msgstr "کپی های عادی شده" msgid "Normalized Query" msgstr "پرسمان عادی شده" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "مجاز نیست" @@ -16854,7 +17037,7 @@ msgstr "نه فرزندان" msgid "Not Equals" msgstr "برابر نیست" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "پیدا نشد" @@ -16880,16 +17063,16 @@ msgstr "به هیچ رکوردی مرتبط نیست" msgid "Not Nullable" msgstr "غیرقابل تهی" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "غیر مجاز" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "خواندن {0} مجاز نیست" @@ -16899,8 +17082,8 @@ msgstr "خواندن {0} مجاز نیست" msgid "Not Published" msgstr "منتشر نشده" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16917,7 +17100,6 @@ msgstr "دیده نشد" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "فرستاده نشد" @@ -16934,7 +17116,7 @@ msgstr "تنظیم نشده" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "یک مقدار جدا شده با کاما معتبر نیست (فایل CSV)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "تصویر کاربر معتبری نیست." @@ -16950,7 +17132,7 @@ msgstr "کاربر معتبری نیست" msgid "Not active" msgstr "غیر فعال" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "برای {0} مجاز نیست: {1}" @@ -16991,7 +17173,7 @@ msgstr "در حالت توسعه دهنده نیست! در site_config.json تن #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غیر مجاز" @@ -17071,7 +17253,7 @@ msgstr "چیزی برای نشان دادن نیست" #: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" -msgstr "چیزی برای به روز رسانی نیست" +msgstr "چیزی برای به‌روزرسانی نیست" #. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace @@ -17157,19 +17339,19 @@ msgstr "از طریق ایمیل اطلاع دهید" #. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "در صورت عدم پاسخگویی اطلاع دهید" +msgstr "اطلاع دادن در صورت عدم پاسخگویی" #. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "در صورت عدم پاسخگویی (بر حسب دقیقه) اطلاع دهید" +msgstr "اطلاع دادن در صورت عدم پاسخگویی (بر حسب دقیقه)" #. Label of the notify_on_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" msgstr "هنگام ورود کاربران با یک پنجره بازشو به آنها اطلاع دهید" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "اکنون" @@ -17312,6 +17494,11 @@ msgstr "تنظیمات ارائه دهنده OAuth" msgid "OAuth Scope" msgstr "محدوده OAuth" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth فعال شده است اما مجاز نیست. لطفاً از دکمه \"Authorise API Access\" برای انجام همین کار استفاده کنید." @@ -17384,6 +17571,10 @@ msgstr "افست X" msgid "Offset Y" msgstr "افست Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "گذرواژه قدیمی" @@ -17455,7 +17646,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "در {0}، {1} نوشت:" @@ -17531,7 +17722,7 @@ msgstr "فقط ادمین می‌تواند ویرایش کند" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "فقط مدیر می‌تواند یک گزارش استاندارد را ذخیره کند. لطفا نام را تغییر دهید و ذخیره کنید." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "فقط مدیر مجاز به استفاده از Recorder است" @@ -17557,7 +17748,7 @@ msgstr "فقط Workspace Manager می‌تواند فضاهای کاری عمو msgid "Only allowed to export customizations in developer mode" msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "فقط پیش‌نویس اسناد را می‌توان دور انداخت" @@ -17588,7 +17779,7 @@ msgstr "فقط گزارش‌هایی از نوع Report Builder قابل ویر msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشی‌سازی فرم هستند." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17596,7 +17787,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "فقط گیرنده می‌تواند این کار را انجام دهد." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "فقط {0} گزارش ایمیل شده برای هر کاربر مجاز است." @@ -17684,7 +17875,7 @@ msgstr "" msgid "Open in a new tab" msgstr "باز کردن در یک تب جدید" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "مورد فهرست را باز کنید" @@ -17729,7 +17920,7 @@ msgstr "باز شد" msgid "Operation" msgstr "عملیات" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "اپراتور باید یکی از {0} باشد" @@ -17739,7 +17930,7 @@ msgstr "اپراتور باید یکی از {0} باشد" msgid "Optimize" msgstr "بهینه‌سازی" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "بهینه سازی تصویر..." @@ -17828,6 +18019,10 @@ msgstr "نارنجی" msgid "Order" msgstr "سفارش" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17840,7 +18035,7 @@ msgstr "تاریخچه سازمان" msgid "Org History Heading" msgstr "عنوان تاریخچه سازمان" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "جهت" @@ -17922,9 +18117,11 @@ msgstr "مالک" msgid "PATCH" msgstr "پچ" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -17983,7 +18180,7 @@ msgstr "PID" #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "POST" -msgstr "پست" +msgstr "POST" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' @@ -18219,11 +18416,11 @@ msgstr "نوع سند والد برای ایجاد نمودار داشبورد msgid "Parent is the name of the document to which the data will get added to." msgstr "والد نام سندی است که داده ها به آن اضافه می‌شوند." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "فیلد والد در {0} مشخص نشده است: {1}" @@ -18283,11 +18480,11 @@ msgstr "منفعل" msgid "Password" msgstr "گذرواژه" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "گذرواژه ایمیل ارسال شد" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "بازنشانی گذرواژه" @@ -18321,11 +18518,11 @@ msgstr "گذرواژه در حساب ایمیل جا افتاده است" msgid "Password not found for {0} {1} {2}" msgstr "گذرواژه برای {0} {1} {2} یافت نشد" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "تنظیم گذرواژه" @@ -18333,11 +18530,11 @@ msgstr "تنظیم گذرواژه" msgid "Password size exceeded the maximum allowed size" msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "گذرواژه‌ها مطابقت ندارند" @@ -18345,10 +18542,6 @@ msgstr "گذرواژه‌ها مطابقت ندارند" msgid "Passwords do not match!" msgstr "گذرواژه‌ها مطابقت ندارند!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "تاریخ‌های گذشته برای زمان‌بندی مجاز نیستند." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "چسباندن" @@ -18494,7 +18687,7 @@ msgstr "برای همیشه {0} ارسال شود؟" msgid "Permanently delete {0}?" msgstr "{0} برای همیشه حذف شود؟" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "خطای مجوز" @@ -18646,11 +18839,11 @@ msgstr "تلفن" msgid "Phone No." msgstr "شماره تلفن" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18708,7 +18901,7 @@ msgstr "لطفاً این تم وب سایت را برای سفارشی سازی msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "لطفاً برای استفاده از قابلیت ldap کتابخانه ldap3 را از طریق پیپ نصب کنید." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "لطفا نمودار را تنظیم کنید" @@ -18724,7 +18917,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید" msgid "Please add a valid comment." msgstr "لطفا یک نظر معتبر اضافه کنید." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18756,7 +18949,7 @@ msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودا msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "لطفا ایمیل خود را برای تایید بررسی کنید" @@ -18821,7 +19014,7 @@ msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتما #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "لطفا پنجره های بازشو را فعال کنید" @@ -18838,23 +19031,23 @@ msgstr "لطفاً قبل از ادامه {} را فعال کنید." msgid "Please ensure that your profile has an email address" msgstr "لطفا مطمئن شوید که نمایه شما دارای یک آدرس ایمیل است" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "لطفا URL توکن دسترسی را وارد کنید" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "لطفاً URL مجوز را وارد کنید" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "لطفا URL پایه را وارد کنید" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتماعی، شناسه مشتری را وارد کنید" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتماعی، Client Secret را وارد کنید" @@ -18862,7 +19055,7 @@ msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتم msgid "Please enter OpenID Configuration URL" msgstr "لطفاً URL پیکربندی OpenID را وارد کنید" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "لطفا URL تغییر مسیر را وارد کنید" @@ -18874,7 +19067,7 @@ msgstr "لطفا یک آدرس ایمیل معتبر وارد کنید." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "لطفا گذرواژه را وارد کنید" @@ -18887,11 +19080,11 @@ msgstr "لطفا گذرواژه را برای: {0} وارد کنید" msgid "Please enter valid mobile nos" msgstr "لطفا شماره تلفن همراه معتبر را وارد کنید" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "لطفا گذرواژه جدید خود را وارد کنید." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "لطفا گذرواژه قدیمی خود را وارد کنید." @@ -18907,7 +19100,7 @@ msgstr "لطفا برای ارسال نظر وارد شوید." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع به صورت دایره ای پیوند داده نشده اند." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید." @@ -18919,10 +19112,6 @@ msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر ح msgid "Please save before attaching." msgstr "لطفا قبل از پیوست ذخیره کنید." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "لطفا قبل از ارسال خبرنامه را ذخیره کنید" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "لطفاً سند را قبل از تخصیص ذخیره کنید" @@ -18951,11 +19140,11 @@ msgstr "لطفا ابتدا Entity Type را انتخاب کنید" msgid "Please select Minimum Password Score" msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "لطفاً فیلدهای X و Y را انتخاب کنید" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید." @@ -18971,7 +19160,7 @@ msgstr "لطفاً یک فایل یا آدرس اینترنتی را انتخا msgid "Please select a valid csv file with data" msgstr "لطفاً یک فایل csv معتبر با داده انتخاب کنید" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" @@ -18979,7 +19168,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" msgid "Please select applicable Doctypes" msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "لطفاً حداقل 1 ستون از {0} برای مرتب‌سازی/گروه‌بندی انتخاب کنید" @@ -19009,11 +19198,11 @@ msgstr "لطفا آدرس ایمیل را تنظیم کنید" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "لطفا فیلترها را تنظیم کنید" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "لطفاً مقدار فیلترها را در جدول گزارش فیلتر تنظیم کنید." @@ -19037,7 +19226,7 @@ msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک ر msgid "Please setup a message first" msgstr "لطفا ابتدا یک پیام تنظیم کنید" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "لطفاً حساب ایمیل خروجی پیش‌فرض را از تنظیمات > حساب ایمیل تنظیم کنید" @@ -19049,7 +19238,7 @@ msgstr "" msgid "Please specify" msgstr "لطفا مشخص کنید" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید" @@ -19086,14 +19275,19 @@ msgstr "لطفاً قبل از ادامه {} را به روز کنید." msgid "Please use a valid LDAP search filter" msgstr "لطفاً از یک فیلتر جستجوی معتبر LDAP استفاده کنید" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "لطفا آدرس ایمیل خود را تایید کنید" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "لطفاً برای اطلاعات بیشتر به https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key مراجعه کنید." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19120,7 +19314,7 @@ msgstr "Popover یا Modal Description" #: frappe/email/doctype/email_domain/email_domain.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "بندر" +msgstr "پورت" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json @@ -19139,7 +19333,7 @@ msgstr "آیتم منوی پورتال" msgid "Portal Settings" msgstr "تنظیمات پورتال" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "عمودی" @@ -19183,6 +19377,10 @@ msgstr "پست های {0}" msgid "Posts filed under {0}" msgstr "پست های ثبت شده تحت {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19242,15 +19440,15 @@ msgstr "" msgid "Prepared Report User" msgstr "کاربر گزارش آماده شده" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "ارائه گزارش آماده انجام نشد" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "تهیه گزارش" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "الگو را برای پیام ایمیل آماده کنید" @@ -19271,8 +19469,6 @@ msgstr "برای ذخیره Enter را فشار دهید" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19317,7 +19513,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "پیش نمایش:" @@ -19388,16 +19584,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "چاپ" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "چاپ" @@ -19452,6 +19648,11 @@ msgstr "خطای فرمت چاپ" msgid "Print Format Field Template" msgstr "قالب فیلد قالب چاپ" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19462,6 +19663,10 @@ msgstr "راهنما قالب چاپ" msgid "Print Format Type" msgstr "نوع فرمت چاپ" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "قالب چاپ {0} غیرفعال است" @@ -19493,11 +19698,11 @@ msgstr "چاپ پنهان" msgid "Print Hide If No Value" msgstr "اگر مقدار نداشت در پرینت نمایش داده نشود" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "زبان چاپ" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "چاپ برای چاپگر ارسال شد!" @@ -19515,7 +19720,7 @@ msgstr "سرور چاپ" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "تنظیمات چاپ" @@ -19625,6 +19830,10 @@ msgstr "خصوصی" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19635,7 +19844,7 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند، msgid "Proceed" msgstr "ادامه دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "در هر صورت انجام شود" @@ -19660,7 +19869,7 @@ msgstr "نمایه" msgid "Progress" msgstr "پیشرفت" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "پروژه" @@ -19747,6 +19956,10 @@ msgstr "عمومی" msgid "Public Files (MB)" msgstr "فایل های عمومی (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19755,14 +19968,7 @@ msgstr "فایل های عمومی (MB)" msgid "Publish" msgstr "انتشار" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "به عنوان یک صفحه وب منتشر کنید" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19770,7 +19976,6 @@ msgstr "به عنوان یک صفحه وب منتشر کنید" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19894,7 +20099,7 @@ msgstr "کد QR" msgid "QR Code for Login Verification" msgstr "کد QR برای تأیید ورود" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr " سینی QZ ناموفق بود:" @@ -19991,7 +20196,6 @@ msgstr "صف(های)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "در صف" @@ -20014,18 +20218,10 @@ msgstr "در صف ارسال می‌توانید پیشرفت را در {0} دن msgid "Queued for backup. You will receive an email with the download link" msgstr "در صف پشتیبان گیری یک ایمیل با لینک دانلود دریافت خواهید کرد" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "{0} ایمیل در صف" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "در صف ایمیل..." +msgstr "صف‌ها" #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" @@ -20116,7 +20312,7 @@ msgstr "رتبه بندی" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "دستورات خام" @@ -20151,7 +20347,7 @@ msgstr "پاسخ:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "پاسخ: {0}" @@ -20195,12 +20391,12 @@ msgstr "فقط خواندنی" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only Depends On" -msgstr "خواندن فقط به آن بستگی دارد" +msgstr "فقط خواندنی بستگی دارد به" #. Label of the read_only_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" -msgstr "فقط خواندن به آن بستگی دارد (JS)" +msgstr "فقط خواندن بستگی دارد به (JS)" #: frappe/public/js/frappe/ui/toolbar/navbar.html:16 #: frappe/templates/includes/navbar/navbar_items.html:97 @@ -20227,7 +20423,7 @@ msgstr "خوانده شده توسط گیرنده روشن" msgid "Read mode" msgstr "حالت خواندن" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "برای دانستن بیشتر مستندات را بخوانید" @@ -20247,7 +20443,7 @@ msgstr "" msgid "Reason" msgstr "دلیل" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "بازسازی" @@ -20393,12 +20589,12 @@ msgstr "تغییر مسیرها" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "سرور کش Redis اجرا نمی‌شود. لطفا با ادمین / پشتیبانی فنی تماس بگیرید" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "انجام دوباره" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "انجام دوباره آخرین کنش" @@ -20612,11 +20808,11 @@ msgid "Referrer" msgstr "ارجاع دهنده" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20655,7 +20851,7 @@ msgstr "تازه کردن" msgid "Refreshing..." msgstr "تازه کردن..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "ثبت شده اما غیرفعال است" @@ -20704,7 +20900,7 @@ msgstr "دوباره پیوند داده شد" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "بارگذاری مجدد" @@ -20727,7 +20923,7 @@ msgstr "بارگذاری مجدد گزارش" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "آخرین مقدار انتخاب شده را به خاطر بسپارید" +msgstr "به خاطر سپردن آخرین مقدار انتخاب شده" #. Label of the remind_at (Datetime) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json @@ -20735,7 +20931,7 @@ msgstr "آخرین مقدار انتخاب شده را به خاطر بسپار msgid "Remind At" msgstr "یادآوری در" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "به من یادآوری کن" @@ -20817,7 +21013,7 @@ msgstr "حذف شد" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20845,7 +21041,7 @@ msgstr "" msgid "Reopen" msgstr "باز کردن دوباره" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "تکرار" @@ -20945,6 +21141,8 @@ msgstr "پاسخ به همه" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20960,8 +21158,11 @@ msgstr "پاسخ به همه" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "گزارش" @@ -21005,7 +21206,7 @@ msgstr "گزارش فیلترها" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "گزارش پنهان کردن" +msgstr "پنهان کردن گزارش" #. Label of the report_information_section (Section Break) field in DocType #. 'Access Log' @@ -21030,7 +21231,7 @@ msgstr "مدیر گزارش" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "نام گزارش" @@ -21082,11 +21283,11 @@ msgstr "گزارش داده ای ندارد، لطفاً فیلترها را ت msgid "Report has no numeric fields, please change the Report Name" msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "به حد مجاز گزارش رسیده است" @@ -21094,7 +21295,7 @@ msgstr "به حد مجاز گزارش رسیده است" msgid "Report timed out." msgstr "زمان گزارش تمام شد." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "گزارش با موفقیت به روز شد" @@ -21102,7 +21303,7 @@ msgstr "گزارش با موفقیت به روز شد" msgid "Report was not saved (there were errors)" msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد." @@ -21115,7 +21316,7 @@ msgstr "گزارش {0}" msgid "Report {0} deleted" msgstr "گزارش {0} حذف شد" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "گزارش {0} غیرفعال است" @@ -21138,7 +21339,7 @@ msgstr "گزارش ها" msgid "Reports & Masters" msgstr "گزارش ها و مستندات" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "گزارش‌ها از قبل در صف هستند" @@ -21323,6 +21524,31 @@ msgstr "بازنشانی به حالت پیش‌فرض" msgid "Reset your password" msgstr "گذرواژه خود را بازنشانی کنید" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21448,10 +21674,8 @@ msgstr "لغو" msgid "Revoked" msgstr "لغو شد" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21554,7 +21778,7 @@ msgstr "مجوزهای نقش" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" @@ -21588,7 +21812,7 @@ msgstr "" msgid "Role and Level" msgstr "نقش و سطح" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است" @@ -21662,7 +21886,6 @@ msgstr "روش گرد کردن" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21676,7 +21899,6 @@ msgstr "روش گرد کردن" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21703,7 +21925,7 @@ msgstr "تغییر مسیرها" msgid "Route: Example \"/app\"" msgstr "مسیر: مثال \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "ردیف" @@ -21794,7 +22016,7 @@ msgstr "قانون" msgid "Rule Conditions" msgstr "شرایط قانون" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "قانون برای این ترکیب doctype، role، permlevel و if-owner از قبل وجود دارد." @@ -21983,12 +22205,12 @@ msgstr "شنبه" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22015,7 +22237,7 @@ msgstr "ذخیره به عنوان" msgid "Save Customizations" msgstr "سفارشی سازی ها را ذخیره کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "ذخیره گزارش" @@ -22034,7 +22256,7 @@ msgstr "سند را ذخیره کنید." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22079,32 +22301,17 @@ msgstr "کد QR را اسکن کرده و کد نمایش داده شده را #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "زمان‌بندی" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "زمان‌بندی خبرنامه" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "زمان‌بندی ارسال در" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "زمان‌بندی ارسال" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "برای ارسال در زمان دیگری زمان‌بندی کنید" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "زمان‌بندی شده است" @@ -22138,17 +22345,6 @@ msgstr "نوع کار زمان‌بندی شده" msgid "Scheduled Jobs Logs" msgstr "لاگ کارهای زمان‌بندی شده" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "ارسال زمان‌بندی شده" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "زمان‌بندی شده برای ارسال" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "اجرای زمان‌بندی شده برای اسکریپت {0} به روز شده است" @@ -22217,6 +22413,11 @@ msgstr "محدوده" msgid "Scopes" msgstr "محدوده ها" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22360,6 +22561,11 @@ msgstr "جستجو کردن..." msgid "Searching ..." msgstr "جستجوکردن ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22407,7 +22613,7 @@ msgstr "تنظیمات امنیتی" msgid "See all Activity" msgstr "مشاهده تمام فعالیت ها" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "مشاهده تمام گزارش های گذشته" @@ -22475,8 +22681,8 @@ msgstr "انتخاب کردن" msgid "Select All" msgstr "انتخاب همه" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22492,7 +22698,7 @@ msgid "Select Column" msgstr "ستون را انتخاب کنید" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "ستون ها را انتخاب کنید" @@ -22542,7 +22748,7 @@ msgstr "برای تعیین اینکه کدام مجوزهای کاربر برا #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "فیلد را انتخاب کنید" @@ -22559,11 +22765,11 @@ msgstr "فیلدها را انتخاب کنید" #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" -msgstr "فیلدهایی را برای درج انتخاب کنید" +msgstr "انتخاب فیلدها برای درج" #: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" -msgstr "فیلدهای به روز رسانی را انتخاب کنید" +msgstr "فیلدهای به‌روزرسانی را انتخاب کنید" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" @@ -22613,7 +22819,7 @@ msgid "Select Page" msgstr "Page را انتخاب کنید" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Print Format را انتخاب کنید" @@ -22665,7 +22871,7 @@ msgstr "یک DocType را برای ایجاد یک قالب جدید انتخا #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "" +msgstr "یک فیلد را برای ویرایش ویژگی‌های آن انتخاب کنید." #: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." @@ -22705,13 +22911,13 @@ msgstr "حداقل 1 رکورد برای چاپ انتخاب کنید" msgid "Select atleast 2 actions" msgstr "حداقل 2 عمل را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "مورد فهرست را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "چندین مورد از فهرست را انتخاب کنید" @@ -22749,9 +22955,7 @@ msgstr "انتخاب {0}" msgid "Self approval is not allowed" msgstr "تایید خود مجاز نیست" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "ارسال" @@ -22782,11 +22986,6 @@ msgstr "ارسال هشدار در" msgid "Send Email Alert" msgstr "ارسال هشدار ایمیل" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "ارسال ایمیل در" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22834,7 +23033,7 @@ msgstr "در حال حاضر ارسال" msgid "Send Print as PDF" msgstr "ارسال چاپ به صورت PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "ارسال رسید خواندن" @@ -22844,38 +23043,16 @@ msgstr "ارسال رسید خواندن" msgid "Send System Notification" msgstr "ارسال اعلان سیستم" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "ارسال ایمیل آزمایشی" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "ارسال برای تمامی افراد واگذار شده" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "ارسال لینک لغو اشتراک" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "ارسال لینک مشاهده وب" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "ارسال ایمیل خوش آمدگویی" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "یک ایمیل آزمایشی ارسال کنید" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "دوباره بفرست" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22919,14 +23096,10 @@ msgstr "سوالات خود را به این آدرس ایمیل ارسال کن msgid "Send login link" msgstr "ارسال لینک ورود" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "یک کپی برای من بفرست" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "در حال حاضر ارسال" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22942,19 +23115,15 @@ msgstr "ارسال پیام لغو اشتراک در ایمیل" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "فرستنده" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "ایمیل فرستنده" @@ -22971,9 +23140,7 @@ msgid "Sender Field should have Email in options" msgstr "فیلد فرستنده باید گزینه‌های ایمیل را داشته باشد" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "نام فرستنده" @@ -22993,18 +23160,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "در حال ارسال" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "ارسال ایمیل" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "در حال ارسال..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23012,8 +23170,6 @@ msgstr "در حال ارسال..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "ارسال شد" @@ -23057,7 +23213,7 @@ msgstr "جداکننده" #. Label of the sequence_id (Float) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Sequence Id" -msgstr "شناسه دنباله" +msgstr "شناسه توالی" #. Label of the naming_series_options (Text) field in DocType 'Document Naming #. Settings' @@ -23083,7 +23239,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است" msgid "Server Action" msgstr "اقدام سرور" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطای سرور" @@ -23102,7 +23258,7 @@ msgstr "IP سرور" msgid "Server Script" msgstr "اسکریپت سرور" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید." @@ -23141,15 +23297,15 @@ msgstr "تنظیمات پیش‌فرض نشست" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "پیش‌فرض‌های نشست" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "پیش‌فرض‌های نشست ذخیره شد" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "نشست منقضی شده" @@ -23181,7 +23337,7 @@ msgstr "تنظیم" msgid "Set Banner from Image" msgstr "تنظیم بنر از تصویر" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "تنظیم نمودار" @@ -23207,7 +23363,7 @@ msgstr "فیلترها را تنظیم کنید" msgid "Set Filters for {0}" msgstr "تنظیم فیلترها برای {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23379,7 +23535,7 @@ msgstr "راه‌اندازی سیستم شما" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23425,7 +23581,7 @@ msgstr "راه‌اندازی > کاربر" msgid "Setup > User Permissions" msgstr "راه‌اندازی > مجوزهای کاربر" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "تنظیم ایمیل خودکار" @@ -23514,6 +23670,8 @@ msgstr "میانبرها" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "نمایش دهید" @@ -23540,6 +23698,12 @@ msgstr "نمایش مقادیر مطلق" msgid "Show All" msgstr "نمایش همه" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "نمایش تقویم" @@ -23620,7 +23784,7 @@ msgstr "نمایش انتخابگر زبان" msgid "Show Line Breaks after Sections" msgstr "نمایش خطوط شکسته بعد از بخش ها" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23657,6 +23821,12 @@ msgstr "نمایش پنجره پیش نمایش" msgid "Show Processlist" msgstr "نمایش لیست فرآیندها" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "نمایش خطاهای مرتبط" @@ -23683,8 +23853,14 @@ msgstr "نمایش سرفصل های بخش" msgid "Show Sidebar" msgstr "نمایش نوار کناری" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "نمایش برچسب ها" @@ -23713,6 +23889,12 @@ msgstr "نمایش تور" msgid "Show Traceback" msgstr "نمایش ردیابی" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "نمایش هشدارها" @@ -23766,6 +23948,12 @@ msgstr "نمایش فرم کامل به جای مدال ثبت سریع" msgid "Show in Module Section" msgstr "نمایش در بخش ماژول" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23846,12 +24034,12 @@ msgstr "نوار کناری و نظرات" msgid "Sign Up and Confirmation" msgstr "ثبت نام و تایید" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "ثبت نام غیرفعال است" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "ثبت نام" @@ -23918,7 +24106,7 @@ msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی #: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." -msgstr "سایت در حالت فقط خواندنی برای نگهداری یا به روز رسانی سایت در حال اجرا است، این عمل در حال حاضر قابل انجام نیست. لطفاً بعداً دوباره امتحان کنید." +msgstr "سایت در حالت فقط خواندنی برای نگهداری یا به‌روزرسانی سایت در حال اجرا است، این عمل در حال حاضر قابل انجام نیست. لطفاً بعداً دوباره امتحان کنید." #: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Size" @@ -23937,8 +24125,10 @@ msgstr "پرش کنید" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "رد شدن از مجوز" @@ -24102,6 +24292,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "برخی از ستون ها ممکن است هنگام چاپ به PDF قطع شوند. سعی کنید تعداد ستون ها کمتر از 10 باشد." @@ -24169,7 +24369,7 @@ msgstr "فیلد مرتب سازی {0} باید یک نام فیلد معتبر #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24259,7 +24459,7 @@ msgstr "ردیابی پشته" msgid "Standard" msgstr "استاندارد" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "DocType استاندارد را نمی‌توان حذف کرد." @@ -24275,7 +24475,7 @@ msgstr "استاندارد تنظیم نشده است" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "قالب استاندارد چاپ را نمی‌توان به روز کرد" @@ -24462,7 +24662,6 @@ msgstr "فاصله زمانی آمار" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24487,7 +24686,6 @@ msgstr "فاصله زمانی آمار" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24498,7 +24696,7 @@ msgstr "فاصله زمانی آمار" msgid "Status" msgstr "وضعیت" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "وضعیت به روز شد" @@ -24628,8 +24826,6 @@ msgstr "زیر دامنه" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24638,10 +24834,9 @@ msgstr "زیر دامنه" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "موضوع" @@ -24680,7 +24875,7 @@ msgstr "صف ارسال" msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ارسال" @@ -24738,7 +24933,7 @@ msgstr "برای تکمیل این مرحله این سند را ارسال کن msgid "Submit this document to confirm" msgstr "برای تایید این سند را ارسال کنید" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} سند ارسال شود؟" @@ -24832,7 +25027,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "موفقیت! شما خوب هستید که بروید 👍" @@ -24887,7 +25082,7 @@ msgstr "پیشنهاد بهینه‌سازی" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "نام کاربری پیشنهادی: {0}" @@ -24900,7 +25095,7 @@ msgstr "نام کاربری پیشنهادی: {0}" msgid "Sum" msgstr "مجموع" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "مجموع {0}" @@ -25009,7 +25204,7 @@ msgstr "در حال همگام سازی" msgid "Syncing {0} of {1}" msgstr "در حال همگام سازی {0} از {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "اشتباه نوشتاری" @@ -25187,6 +25382,7 @@ msgstr "لاگ های سیستم" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25246,6 +25442,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25316,7 +25517,7 @@ msgstr "جدول بریده شده" msgid "Table updated" msgstr "جدول به روز شد" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "جدول {0} نمی‌تواند خالی باشد" @@ -25424,7 +25625,7 @@ msgstr "هشدارهای الگو" msgid "Templates" msgstr "قالب ها" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "موقتا غیر فعال می باشد" @@ -25443,10 +25644,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "ایمیل آزمایشی به {0} ارسال شد" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test_Folder" @@ -25512,10 +25709,6 @@ msgstr "ممنون برای ایمیلت" msgid "Thank you for your feedback!" msgstr "با تشکر از شما برای بازخورد شما!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "از علاقه شما به اشتراک در به روز رسانی های ما سپاسگزاریم" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "ممنون از پیام شما" @@ -25580,7 +25773,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "پیوند بازنشانی گذرواژه منقضی شده است" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "منبع مورد نظر شما در دسترس نیست" @@ -25716,9 +25909,9 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد." msgid "The selected document {0} is not a {1}." msgstr "سند انتخاب شده {0} یک {1} نیست." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." -msgstr "سیستم در حال به روز رسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید." +msgstr "سیستم در حال به‌روزرسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید." #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." @@ -25748,7 +25941,7 @@ msgstr "{0} قبلاً روی تکرار خودکار است {1}" #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme" -msgstr "موضوع" +msgstr "پوسته" #: frappe/public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" @@ -25777,7 +25970,7 @@ msgstr "هیچ رویداد پیش رویی برای شما وجود ندارد. msgid "There are no {0} for this {1}, why don't you start one!" msgstr "هیچ {0} برای این {1} وجود ندارد، چرا یکی را شروع نمی‌کنید!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" @@ -25806,7 +25999,7 @@ msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما msgid "There is some problem with the file url: {0}" msgstr "آدرس فایل مشکلی دارد: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" @@ -25830,7 +26023,7 @@ msgstr "خطاهایی وجود داشت" msgid "There were errors while creating the document. Please try again." msgstr "هنگام ایجاد سند خطاهایی وجود داشت. لطفا دوباره تلاش کنید." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "هنگام ارسال ایمیل خطاهایی وجود داشت. لطفا دوباره تلاش کنید." @@ -25844,6 +26037,12 @@ msgstr "برخی از خطاها در تنظیم نام وجود دارد، لط msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25869,7 +26068,7 @@ msgstr "احراز هویت شخص ثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "این نمودار کانبان خصوصی خواهد بود" @@ -25893,7 +26092,7 @@ msgstr "امسال" msgid "This action is irreversible. Do you wish to continue?" msgstr "این عمل برگشت‌ناپذیر است. آیا مایل هستید ادامه دهید؟" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "این عمل فقط برای {} مجاز است" @@ -25920,7 +26119,7 @@ msgstr "این doctype هیچ زمینه یتیمی برای اصلاح ندار msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "این سند در حال حاضر قابل حذف نیست زیرا توسط کاربر دیگری در حال تغییر است. لطفا بعد از مدتی دوباره امتحان کنید." @@ -25936,7 +26135,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "این سند قبلاً اصلاح شده است، شما نمی‌توانید دوباره آن را اصلاح کنید" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "این سند در حال حاضر قفل شده و در صف اجرا قرار دارد. لطفا بعد از مدتی دوباره امتحان کنید." @@ -25997,7 +26196,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ msgid "This goes above the slideshow." msgstr "این بالاتر از نمایش اسلاید است." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید." @@ -26053,15 +26252,7 @@ msgstr "این ممکن است در چندین صفحه چاپ شود" msgid "This month" msgstr "این ماه" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "این خبرنامه قرار است در تاریخ {0} ارسال شود" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "این خبرنامه قرار بود در تاریخ بعدی ارسال شود. آیا مطمئن هستید که می‌خواهید آن را اکنون ارسال کنید؟" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26069,7 +26260,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "این گزارش در {0} ایجاد شد" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "این گزارش در {0} ایجاد شد." @@ -26135,7 +26326,7 @@ msgstr "با این کار این تور بازنشانی می‌شود و به msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr " این کار بلافاصله کار را خاتمه می دهد و ممکن است خطرناک باشد، مطمئن هستید؟" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "گاز گرفت" @@ -26173,7 +26364,6 @@ msgstr "پنج‌شنبه" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "زمان" @@ -26399,10 +26589,8 @@ msgid "Title of the page" msgstr "عنوان صفحه" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "به" @@ -26450,7 +26638,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "برای مجاز کردن محدودیت به‌روزرسانی گزارش‌های بیشتر در تنظیمات سیستم." @@ -26486,7 +26674,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن msgid "To generate password click {0}" msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید." @@ -26561,7 +26749,7 @@ msgstr "تغییر نمای شبکه‌ای" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" @@ -26582,6 +26770,12 @@ msgstr "توکن" msgid "Token Cache" msgstr "کش توکن" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26609,7 +26803,7 @@ msgstr "اسناد بسیار زیاد" msgid "Too Many Requests" msgstr "درخواست های خیلی زیاد" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "تغییرات بسیار زیادی در پایگاه داده در یک اقدام واحد." @@ -26617,7 +26811,7 @@ msgstr "تغییرات بسیار زیادی در پایگاه داده در ی msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید" @@ -26679,9 +26873,9 @@ msgstr "بالا سمت راست" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "جمع" @@ -26707,16 +26901,8 @@ msgstr "مجموع تصاویر" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "کل گیرندگان" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "کل مشترکین" @@ -26725,11 +26911,6 @@ msgstr "کل مشترکین" msgid "Total Users" msgstr "مجموع کاربران" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "کل بازدیدها" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26817,7 +26998,7 @@ msgstr "ردیابی نقاط عطف برای هر سند" msgid "Tracking" msgstr "رهگیری" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "URL ردیابی تولید و در کلیپ بورد کپی شد" @@ -26864,7 +27045,7 @@ msgstr "انتقال ها" msgid "Translatable" msgstr "قابل ترجمه" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26897,6 +27078,11 @@ msgstr "ترجمه" msgid "Translations" msgstr "ترجمه ها" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27118,33 +27304,65 @@ msgstr "URL برای مستندات یا کمک" msgid "URL must start with http:// or https://" msgstr "URL باید با http:// یا https:// شروع شود" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "آدرس صفحه" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL برای رفتن با کلیک بر روی تصویر نمایش اسلاید" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27177,7 +27395,7 @@ msgstr "فایل پیوست باز نمی‌شود. آیا آن را به عنو msgid "Unable to read file format for {0}" msgstr "امکان خواندن فرمت فایل برای {0} وجود ندارد" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "به دلیل وجود حساب ایمیل از دست رفته امکان ارسال نامه وجود ندارد. لطفاً حساب ایمیل پیش‌فرض را از تنظیمات > حساب ایمیل تنظیم کنید" @@ -27194,7 +27412,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد msgid "Unassign Condition" msgstr "شرط لغو اختصاص" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27202,16 +27420,20 @@ msgstr "" msgid "Unchanged" msgstr "بدون تغییر" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "واگرد" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "واگرد آخرین اقدام" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "لغو دنبال کردن" @@ -27232,7 +27454,14 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Unique" -msgstr "منحصر بفرد" +msgstr "یکتا" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" @@ -27242,7 +27471,7 @@ msgstr "ناشناخته" msgid "Unknown Column: {0}" msgstr "ستون ناشناخته: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "روش گرد کردن نامشخص: {}" @@ -27289,7 +27518,7 @@ msgstr "همه را لغو انتخاب کنید" msgid "Unshared" msgstr "اشتراک گذاری نشده است" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "لغو اشتراک" @@ -27309,10 +27538,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "لغو اشتراک شده" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "ستون بدون عنوان" @@ -27345,24 +27579,24 @@ msgstr "رویدادهای آینده برای امروز" #: frappe/printing/page/print_format_builder/print_format_builder.js:765 #: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" -msgstr "به روز رسانی" +msgstr "به‌روزرسانی" #. Label of the update_amendment_naming (Button) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "به روز رسانی اصلاحیه نامگذاری" +msgstr "به‌روزرسانی اصلاحیه نامگذاری" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Update Existing Records" -msgstr "به روز رسانی رکوردهای موجود" +msgstr "به‌روزرسانی رکوردهای موجود" #. Label of the update_field (Select) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Field" -msgstr "فیلد به روز رسانی" +msgstr "فیلد به‌روزرسانی" #: frappe/core/doctype/installed_applications/installed_applications.js:6 #: frappe/core/doctype/installed_applications/installed_applications.js:13 @@ -27371,7 +27605,7 @@ msgstr "به‌روزرسانی ترتیب حل هوک‌ها" #: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" -msgstr "سفارش به روز رسانی" +msgstr "سفارش به‌روزرسانی" #: frappe/desk/page/setup_wizard/setup_wizard.js:494 msgid "Update Password" @@ -27381,33 +27615,33 @@ msgstr "به‌روزرسانی گذرواژه" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "به روز رسانی شمارنده سری" +msgstr "به‌روزرسانی شمارنده سری" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "به روز رسانی شماره سری" +msgstr "به‌روزرسانی شماره سری" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Update Settings" -msgstr "به روز رسانی تنظیمات" +msgstr "به‌روزرسانی تنظیمات" #: frappe/public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" -msgstr "به روز رسانی ترجمه ها" +msgstr "به‌روزرسانی ترجمه ها" #. Label of the update_value (Small Text) field in DocType 'Bulk Update' #. Label of the update_value (Data) field in DocType 'Workflow Document State' #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Value" -msgstr "به روز رسانی مقدار" +msgstr "به‌روزرسانی مقدار" #: frappe/utils/change_log.py:381 msgid "Update from Frappe Cloud" -msgstr "به روز رسانی از Frappe Cloud" +msgstr "به‌روزرسانی از Frappe Cloud" #: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" @@ -27435,7 +27669,7 @@ msgstr "به‌روزرسانی به نسخه جدید 🎉" msgid "Updated successfully" msgstr "با موفقیت به روز شد" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "در حال بروز رسانی" @@ -27446,7 +27680,7 @@ msgstr "در حال بروز رسانی" #: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." -msgstr "به روز رسانی وضعیت های صف ایمیل. ایمیل ها در اجرای زمان‌بندی شده بعدی دریافت خواهند شد." +msgstr "به‌روزرسانی وضعیت های صف ایمیل. ایمیل ها در اجرای زمان‌بندی شده بعدی دریافت خواهند شد." #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" @@ -27454,7 +27688,7 @@ msgstr "اگر به‌درستی انجام نشود، به‌روزرسانی #: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" -msgstr "به روز رسانی تنظیمات جهانی" +msgstr "به‌روزرسانی تنظیمات جهانی" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" @@ -27462,15 +27696,15 @@ msgstr "در حال به‌روزرسانی گزینه‌های سری نام‌ #: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." -msgstr "به روز رسانی فیلدهای مرتبط..." +msgstr "به‌روزرسانی فیلدهای مرتبط..." #: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" -msgstr "در حال به روز رسانی {0}" +msgstr "در حال به‌روزرسانی {0}" #: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" -msgstr "در حال به روز رسانی {0} از {1}، {2}" +msgstr "در حال به‌روزرسانی {0} از {1}، {2}" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" @@ -27519,25 +27753,25 @@ msgstr "از % برای هر مقدار غیر خالی استفاده کنید. #. Label of the ascii_encode_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "از رمزگذاری ASCII برای گذرواژه استفاده کنید" +msgstr "استفاده از رمزگذاری ASCII برای گذرواژه" #. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Use First Day of Period" -msgstr "از اولین روز دوره استفاده کنید" +msgstr "استفاده از اولین روز دوره" #. Label of the use_html (Check) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" -msgstr "از HTML استفاده کنید" +msgstr "استفاده از HTML" #. Label of the use_imap (Check) field in DocType 'Email Account' #. Label of the use_imap (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use IMAP" -msgstr "از IMAP استفاده کنید" +msgstr "استفاده از IMAP" #. Label of the use_number_format_from_currency (Check) field in DocType #. 'System Settings' @@ -27562,21 +27796,21 @@ msgstr "استفاده از نمودار گزارش" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use SSL" -msgstr "از SSL استفاده کنید" +msgstr "استفاده از SSL" #. Label of the use_starttls (Check) field in DocType 'Email Account' #. Label of the use_starttls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" -msgstr "از STARTTLS استفاده کنید" +msgstr "استفاده از STARTTLS" #. Label of the use_tls (Check) field in DocType 'Email Account' #. Label of the use_tls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use TLS" -msgstr "از TLS استفاده کنید" +msgstr "استفاده از TLS" #: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." @@ -27713,14 +27947,14 @@ msgstr "کاربر نمی‌تواند ایجاد کند" msgid "User Cannot Search" msgstr "کاربر نمی‌تواند جستجو کند" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" #. Label of the defaults (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "پیش‌فرض های کاربر" +msgstr "پیش‌فرض‌های کاربر" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -27819,12 +28053,12 @@ msgstr "مجوز کاربر" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "مجوزهای کاربر" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "مجوزهای کاربر" @@ -27925,15 +28159,15 @@ msgstr "کاربری با آدرس ایمیل {0} وجود ندارد" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "کاربر با ایمیل: {0} در سیستم وجود ندارد. لطفاً از «ادمین سیستم» بخواهید که کاربر را برای شما ایجاد کند." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "کاربر {0} قابل حذف نیست" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "کاربر {0} را نمی‌توان غیرفعال کرد" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "کاربر {0} را نمی‌توان تغییر نام داد" @@ -27954,7 +28188,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "کاربر {0} درخواست حذف داده ها را داده است" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "کاربر {0} جعل هویت به عنوان {1}" @@ -27983,7 +28217,7 @@ msgstr "URI اطلاعات کاربر" msgid "Username" msgstr "نام کاربری" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "نام کاربری {0} از قبل وجود دارد" @@ -28005,7 +28239,7 @@ msgstr "کاربران" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." -msgstr "" +msgstr "کاربران فقط در صورتی می‌توانند فایل‌های پیوست شده را حذف کنند که سند در حالت پیش‌نویس باشد یا لغو شده باشد و همچنین می‌توانند سند را حذف کنند." #: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" @@ -28123,15 +28357,15 @@ msgstr "ارزش تغییر کرد" msgid "Value To Be Set" msgstr "ارزش تنظیم شود" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "مقدار برای {0} قابل تغییر نیست" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "ارزش نمی‌تواند منفی باشد" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "مقدار نمی‌تواند برای {0} منفی باشد: {1}" @@ -28157,6 +28391,12 @@ msgstr "مقدار از این فیلد به عنوان سررسید در لیس msgid "Value must be one of {0}" msgstr "مقدار باید یکی از {0} باشد" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28170,7 +28410,7 @@ msgstr "ارزش خیلی بزرگ است" msgid "Value {0} missing for {1}" msgstr "مقدار {0} برای {1} وجود ندارد" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "مقدار {0} باید در قالب مدت زمان معتبر باشد: dhms" @@ -28250,7 +28490,7 @@ msgstr "نما" msgid "View All" msgstr "مشاهده همه" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28494,7 +28734,7 @@ msgstr "صفحه وب" msgid "Web Page Block" msgstr "مسدود کردن صفحه وب" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL صفحه وب" @@ -28537,6 +28777,7 @@ msgstr "نمایش وب" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28595,7 +28836,6 @@ msgstr "آدرس وب هوک" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28603,9 +28843,7 @@ msgid "Website" msgstr "سایت اینترنتی" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "تجزیه و تحلیل وب سایت" @@ -28805,11 +29043,11 @@ msgstr "URL خوش آمدید" msgid "Welcome Workspace" msgstr "محیط کار خوش آمدید" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "ایمیل خوش آمدگویی ارسال شد" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "به {0} خوش آمدید" @@ -28895,7 +29133,7 @@ msgstr "فقط در صورتی نشان داده می‌شود که سرفصل msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "برای سایت‌های غیرفعال، کارهای زمان‌بندی‌شده فقط یک‌بار در روز اجرا خواهند شد. برای جلوگیری از غیرفعال شدن خودکار زمان‌بندی، مقدار آن را روی 0 تنظیم کنید." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "با سربرگ" @@ -28930,7 +29168,7 @@ msgstr "عمل گردش کار" #. Description of a DocType #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "استاد اکشن گردش کار" +msgstr "مدیر اکشن گردش کار" #. Label of the workflow_action_name (Data) field in DocType 'Workflow Action #. Master' @@ -29036,12 +29274,12 @@ msgstr "گردش کار با موفقیت به روز شد" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "فضای کار" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "محیط کار {0} وجود ندارد" @@ -29163,7 +29401,7 @@ msgstr "فیلدهای محور Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "فیلد Y" @@ -29224,7 +29462,7 @@ msgstr "زرد" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "بله" @@ -29264,11 +29502,11 @@ msgstr "شما در حال جعل هویت به عنوان کاربر دیگری msgid "You are not allowed to access this resource" msgstr "شما اجازه دسترسی به این منبع را ندارید" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} '{2}' در فیلد {3} پیوند داده شده است." -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} \"{2}\" در ردیف {3}، فیلد {4} پیوند داده شده است." @@ -29291,7 +29529,7 @@ msgstr "شما مجاز به ویرایش گزارش نیستید." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "شما مجاز به برون‌بُرد {} doctype نیستید" @@ -29299,13 +29537,13 @@ msgstr "شما مجاز به برون‌بُرد {} doctype نیستید" msgid "You are not allowed to print this report" msgstr "شما مجاز به چاپ این گزارش نیستید" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" -msgstr "شما مجاز به به روز رسانی این سند فرم وب نیستید" +msgstr "شما مجاز به به‌روزرسانی این سند فرم وب نیستید" #: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." @@ -29319,15 +29557,15 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص msgid "You are not permitted to access this page." msgstr "شما اجازه دسترسی به این صفحه را ندارید." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" #: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." -msgstr "شما اکنون این سند را دنبال می‌کنید. به روز رسانی های روزانه را از طریق ایمیل دریافت خواهید کرد. می‌توانید این مورد را در تنظیمات کاربر تغییر دهید." +msgstr "شما اکنون این سند را دنبال می‌کنید. به‌روزرسانی های روزانه را از طریق ایمیل دریافت خواهید کرد. می‌توانید این مورد را در تنظیمات کاربر تغییر دهید." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "شما فقط مجاز به به‌روزرسانی سفارش هستید، برنامه‌ها را حذف یا اضافه نکنید." @@ -29372,7 +29610,7 @@ msgstr "می‌توانید خط مشی حفظ را از {0} تغییر دهید msgid "You can continue with the onboarding after exploring this page" msgstr "پس از کاوش در این صفحه می‌توانید به آشناسازی ادامه دهید" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "می‌توانید به جای حذف این {0} آن را غیرفعال کنید." @@ -29414,7 +29652,7 @@ msgstr "می‌توانید یکی از موارد زیر را انتخاب کن msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "اگر چندین کاربر از یک شبکه وارد سیستم شوند، می‌توانید مقدار بالایی را در اینجا تنظیم کنید." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "می‌توانید فیلترهای گزارش خود را تغییر دهید." @@ -29491,11 +29729,15 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "شما مجوز کافی برای تکمیل عمل را ندارید" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "شما اجازه دسترسی به {0}: {1} را ندارید." @@ -29503,19 +29745,19 @@ msgstr "شما اجازه دسترسی به {0}: {1} را ندارید." msgid "You do not have permissions to cancel all linked documents." msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "شما به گزارش دسترسی ندارید: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "شما اجازه دسترسی به {0} DocType را ندارید." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "شما اجازه دسترسی به این فایل را ندارید" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "شما مجوز دریافت گزارش در مورد: {0} را ندارید" @@ -29580,15 +29822,15 @@ msgstr "شما آخرین بار این را ویرایش کردید" msgid "You must add atleast one link." msgstr "شما باید حداقل یک لینک اضافه کنید." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "برای استفاده از این فرم باید وارد سیستم شوید." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "برای ارسال این فرم باید وارد شوید" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "برای انجام این عمل به مجوز \"{0}\" در {1} {2} نیاز دارید." @@ -29608,7 +29850,7 @@ msgstr "برای دسترسی به این صفحه باید کاربر سیست msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "برای ویرایش یک فرم وب استاندارد، باید در حالت توسعه دهنده باشید" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "برای اینکه بتوانید به نسخه‌های پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید." @@ -29691,13 +29933,13 @@ msgstr "شما این سند را لغو دنبال کردید" msgid "You viewed this" msgstr "شما این را مشاهده کردید" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." -msgstr "" +msgstr "فایل CSV شما در حال تولید است و به محض آماده شدن در بخش پیوست‌ها نمایش داده خواهد شد. علاوه بر این، هنگامی که فایل برای دانلود در دسترس قرار گرفت، به شما اطلاع داده خواهد شد." #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" @@ -29732,11 +29974,11 @@ msgstr "حساب شما قفل شده است و پس از {0} ثانیه از س msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "تخصیص شما در {0} {1} توسط {2} حذف شده است" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "مرورگر شما از عنصر صدا پشتیبانی نمی‌کند." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "مرورگر شما از عنصر ویدیو پشتیبانی نمی‌کند." @@ -29756,11 +29998,11 @@ msgstr "فرم شما با موفقیت به روز شد" msgid "Your login id is" msgstr "شناسه ورود شما است" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "گذرواژه جدید شما با موفقیت تنظیم شد." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "گذرواژه قدیمی شما نادرست است." @@ -29774,19 +30016,19 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل. msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید." #: frappe/public/js/frappe/ui/toolbar/navbar.html:15 msgid "Your site is undergoing maintenance or being updated." -msgstr "سایت شما در حال تعمیر یا به روز رسانی است." +msgstr "سایت شما در حال تعمیر یا به‌روزرسانی است." #: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" msgstr "کد تأیید شما {0} است" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "صفر" @@ -29810,7 +30052,7 @@ msgstr "_doctype" msgid "_report" msgstr "_گزارش" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "«as_iterator» فقط با «as_list=True» یا «as_dict=True» کار می‌کند" @@ -29833,7 +30075,7 @@ msgstr "after_insert" msgid "amend" msgstr "اصلاح" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "و" @@ -29888,10 +30130,10 @@ msgstr "ایجاد كردن" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "cyan" -msgstr "فیروزه ای" +msgstr "فیروزه‌ای" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "د" @@ -30005,7 +30247,7 @@ msgstr "ایمیل" msgid "email inbox" msgstr "صندوق ورودی ایمیل" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "خالی" @@ -30057,8 +30299,8 @@ msgstr "خاکستری" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip در PATH یافت نشد! این برای تهیه نسخه پشتیبان لازم است." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "ساعت" @@ -30076,7 +30318,7 @@ msgstr "آیکون" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "درون‌ریزی" +msgstr "درون‌بُرد" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -30091,7 +30333,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "همین الان" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "برچسب" @@ -30131,8 +30373,8 @@ msgstr "login_required" msgid "long" msgstr "طولانی" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "متر" @@ -30321,8 +30563,8 @@ msgstr "واکنش" msgid "restored {0} as {1}" msgstr "{0} به عنوان {1} بازیابی شد" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "س" @@ -30451,7 +30693,7 @@ msgstr "از طریق قانون واگذاری" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "via Auto Repeat" -msgstr "" +msgstr "از طریق تکرار خودکار" #: frappe/core/doctype/data_import/importer.py:271 #: frappe/core/doctype/data_import/importer.py:292 @@ -30615,7 +30857,7 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} msgid "{0} Report" msgstr "گزارش {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} گزارش ها" @@ -30656,7 +30898,7 @@ msgstr "{0} قبلاً اشتراک خود را لغو کرده است" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} قبلاً اشتراک {1} {2} را لغو کرده است" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} و {1}" @@ -30664,7 +30906,7 @@ msgstr "{0} و {1}" msgid "{0} are currently {1}" msgstr "{0} در حال حاضر {1} هستند" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} مورد نیاز است" @@ -30694,7 +30936,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} این سند را لغو کرد {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30743,7 +30985,7 @@ msgstr "{0} این را ایجاد کرد" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 msgctxt "Form timeline" msgid "{0} created this document {1}" -msgstr "" +msgstr "{0} این سند را ایجاد کرد {1}" #: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" @@ -30762,7 +31004,11 @@ msgstr "{0} در ردیف {1} وجود ندارد" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "فیلد {0} را نمی‌توان در {1} منحصربه‌فرد تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فردی وجود دارد" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "قالب {0} را نمی‌توان از مقادیر این ستون تعیین کرد. پیش‌فرض {1}." @@ -30782,11 +31028,7 @@ msgstr "{0} ساعت" msgid "{0} has already assigned default value for {1}." msgstr "{0} قبلاً مقدار پیش‌فرض را برای {1} اختصاص داده است." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} با موفقیت به گروه ایمیل اضافه شد." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} مکالمه را در {1} {2} ترک کرده است" @@ -30856,6 +31098,10 @@ msgstr "{0} مانند {1} است" msgid "{0} is mandatory" msgstr "{0} اجباری است" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} یک فیلد از نوع doctype نیست {1}" @@ -30877,7 +31123,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} یک DocType معتبر برای پیوند پویا نیست" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} یک آدرس ایمیل معتبر نیست" @@ -30885,11 +31131,11 @@ msgstr "{0} یک آدرس ایمیل معتبر نیست" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} یک کد ISO 3166 ALPHA-2 معتبر نیست." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} یک نام معتبر نیست" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} یک شماره تلفن معتبر نیست" @@ -30897,15 +31143,15 @@ msgstr "{0} یک شماره تلفن معتبر نیست" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} یک DocType والد معتبر برای {1} نیست" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} یک فیلد والد معتبر برای {1} نیست" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش باید یکی از موارد زیر باشد {1}" @@ -30929,7 +31175,7 @@ msgstr "{0} یکی از {1} نیست" msgid "{0} is not set" msgstr "{0} تنظیم نشده است" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} اکنون قالب چاپ پیش‌فرض برای {1} doctype است" @@ -30939,7 +31185,8 @@ msgstr "{0} یکی از {1} است" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} مورد نیاز است" @@ -30952,11 +31199,11 @@ msgstr "{0} تنظیم شده است" msgid "{0} is within {1}" msgstr "{0} در محدوده {1} است" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} مورد انتخاب شد" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}" @@ -30989,23 +31236,23 @@ msgstr "{0} دقیقه قبل" msgid "{0} months ago" msgstr "{0} ماه پیش" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} باید بعد از {1} باشد" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} باید با '{1}' شروع شود" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} باید برابر با '{1}' باشد" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} نباید هیچ یک از {1} باشد" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} باید یکی از {1} باشد" @@ -31017,7 +31264,7 @@ msgstr "ابتدا باید {0} تنظیم شود" msgid "{0} must be unique" msgstr "{0} باید منحصر به فرد باشد" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} باید {1} {2} باشد" @@ -31046,16 +31293,12 @@ msgstr "{0} از {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} از {1} ({2} ردیف با فرزندان)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} از {1} ارسال شد" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "فقط {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} یا {1}" @@ -31077,7 +31320,7 @@ msgstr "{0} رکورد حذف شد" #: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" -msgstr "{0} رکورد صادر خواهد شد" +msgstr "{0} رکورد برون‌بُرد خواهد شد" #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" @@ -31092,11 +31335,11 @@ msgstr "{0} تخصیص خود را حذف کرد." msgid "{0} role does not have permission on any doctype" msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} ردیف #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} با موفقیت ذخیره شد" @@ -31138,7 +31381,7 @@ msgstr "{0} این سند را ارسال کرد {1}" msgid "{0} subscribers added" msgstr "{0} مشترک اضافه شد" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} دریافت ایمیل هایی از این نوع را متوقف کنید" @@ -31208,11 +31451,11 @@ msgstr "{0} {1} وجود ندارد، یک هدف جدید را برای ادغ msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده است: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} یافت نشد" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: رکورد ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو {3} کنید." @@ -31325,7 +31568,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} روی حالت {2} تنظیم شده است" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} در مقابل {2}" @@ -31361,11 +31604,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{ msgid "{} Complete" msgstr "{} کامل" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} کد پایتون نامعتبر در خط {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}" @@ -31387,7 +31630,7 @@ msgstr "فیلد {} نمی‌تواند خالی باشد." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} غیر فعال شده است. فقط در صورتی می‌توان آن را فعال کرد که {} علامت زده شود." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} یک رشته تاریخ معتبر نیست." diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index 4f16dfb066..0bd967bb70 100644 --- a/frappe/locale/fr.po +++ b/frappe/locale/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:49\n" "Last-Translator: developers@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne { msgid "'Recipients' not specified" msgstr "«Destinataires» non spécifiés" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' n'est pas une URL valide" @@ -141,7 +141,7 @@ msgstr "1 jour" msgid "1 Google Calendar Event synced." msgstr "1 événement Google Agenda synchronisé." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "1 comment" msgstr "1 commentaire" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "Il y a 1 jour" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "Il y a 1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "Il y a 1 minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "Il y a 1 mois" @@ -180,37 +180,37 @@ msgstr "" msgid "1 record will be exported" msgstr "1 enregistrement sera exporté" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "Il y a 1 seconde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "Il ya 1 semaine" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "Il y a 1 an" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "Il y a 2 heures" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "Il y a 2 mois" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "Il y a 2 semaines" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "Il y a 2 ans" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "Il y a 3 minutes" @@ -226,7 +226,7 @@ msgstr "4 heures" msgid "5 Records" msgstr "5 enregistrements" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -627,11 +627,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Rapports et Pages principales" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -658,6 +653,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Un article en vedette doit avoir une image de couverture" @@ -692,6 +692,13 @@ msgstr "Un symbole pour cette monnaie. Par exemple $" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Un mot unique est facile à deviner." @@ -936,7 +943,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -953,7 +959,7 @@ msgstr "Action / Route" msgid "Action Complete" msgstr "Action terminée" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Échec de l'action" @@ -1002,10 +1008,10 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Actions" @@ -1067,8 +1073,8 @@ msgstr "Historique d'activité" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Ajouter" @@ -1085,7 +1091,7 @@ msgstr "Ajouter / Mettre à jour" msgid "Add A New Rule" msgstr "Ajouter une nouvelle règle" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Ajouter une pièce jointe" @@ -1109,7 +1115,7 @@ msgstr "Ajouter une bordure en haut" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Ajouter un graphique au tableau de bord" @@ -1118,8 +1124,8 @@ msgid "Add Child" msgstr "Ajouter une Sous-Catégorie" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1155,7 +1161,7 @@ msgid "Add Gray Background" msgstr "Ajouter un fond gris" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Ajouter un groupe" @@ -1180,7 +1186,7 @@ msgstr "Ajouter des participants" msgid "Add Query Parameters" msgstr "Ajouter des paramètres de requête" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1190,7 +1196,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Ajouter une Signature" @@ -1213,12 +1219,12 @@ msgstr "Ajouter des Abonnés" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1325,7 +1331,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Ajouter au tableau de bord" @@ -1353,7 +1359,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Added" -msgstr "Ajouté" +msgstr "" #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' @@ -1480,11 +1486,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administrateur" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrateur Connecté" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}." @@ -1592,6 +1598,14 @@ msgstr "Alerte" msgid "Alerts and Notifications" msgstr "Alertes et notifications" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1632,7 +1646,6 @@ msgstr "Aligner la Valeur" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1963,6 +1976,12 @@ msgstr "Autorisé dans les mentions" msgid "Allowed Modules" msgstr "Modules autorisés" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1979,7 +1998,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "Autorisation de DocType, DocType. Soyez prudent !" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Déjà Inscrit" @@ -2070,7 +2125,7 @@ msgstr "Nouv. version en cours" msgid "Amendment Naming Override" msgstr "Surcharge de nommage de l'amendement" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -2078,7 +2133,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "Règles de nommage mises à jour." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut." @@ -2159,16 +2214,6 @@ msgstr "" msgid "App" msgstr "Application" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "ID Client de l'App" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Secret Client de l'App" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2182,21 +2227,24 @@ msgstr "Logo de l'application" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Nom de l'App" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "Application introuvable pour le module : {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} n'est pas installée" @@ -2261,7 +2309,7 @@ msgstr "Appliqué sur" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Appliquer la règle d'assignation" @@ -2342,7 +2390,7 @@ msgstr "Archivé" msgid "Archived Columns" msgstr "Colonnes Archivées" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2374,7 +2422,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2410,10 +2458,6 @@ msgstr "Voulez-vous vraiment réinitialiser toutes les personnalisations?" msgid "Are you sure you want to save this document?" msgstr "Êtes-vous sûr de vouloir enregistrer ce document ?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Etes-vous sûr de vouloir envoyer cette newsletter maintenant ?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2446,16 +2490,16 @@ msgstr "" msgid "Assign Condition" msgstr "Attribuer une condition" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Attribuer À" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Attribuer À" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Affecter au groupe d'utilisateurs" @@ -2607,7 +2651,7 @@ msgstr "" msgid "Attach" msgstr "Attacher" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Joindre l'Impression de Document" @@ -2667,9 +2711,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Le nom joint à un nom doit être une chaîne ou un entier" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Pièce jointe" @@ -2696,20 +2738,17 @@ msgid "Attachment Removed" msgstr "Pièce jointe retirée" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Pièces jointes" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Tentative de connexion au bac QZ ..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Tenter de lancer QZ Tray ..." @@ -2717,11 +2756,6 @@ msgstr "Tenter de lancer QZ Tray ..." msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Audience" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2766,6 +2800,11 @@ msgstr "L'authentification a échoué lors de la réception des e-mails du c msgid "Author" msgstr "Auteur" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3000,7 +3039,7 @@ msgstr "" msgid "Average" msgstr "Moyenne" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Moyenne de {0}" @@ -3105,7 +3144,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "Cci" @@ -3148,7 +3187,7 @@ msgstr "Image d'arrière-plan" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Travaux en Arrière-plan" @@ -3753,7 +3792,7 @@ msgstr "ANNULÉ" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3876,10 +3915,8 @@ msgstr "Titre de rappel" msgid "Camera" msgstr "Caméra" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3946,7 +3983,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annuler" @@ -3964,11 +4001,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "Annuler tous les documents" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annuler les documents {0}?" @@ -4035,11 +4068,11 @@ msgstr "Impossible d'annuler avant de valider. Voir Transition {0}" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4067,7 +4100,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "Impossible de supprimer les dossiers d’accueil et les pièces jointes" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Impossible de supprimer ou d'annuler, car {0} {1} est associé à {2} {3} {4}" @@ -4122,7 +4155,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Impossible de modifier un document annulé" @@ -4159,7 +4192,7 @@ msgstr "Impossible d'imprimer plusieurs imprimantes sur un seul format d' msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Impossible de lier le document annulé : {0}" @@ -4204,7 +4237,7 @@ msgstr "Impossible de mettre à jour {0}" msgid "Cannot use sub-query in order by" msgstr "Impossible d'utiliser la sous-requête dans l'ordre demandé" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4230,7 +4263,7 @@ msgstr "Carte" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Étiquette de la carte" @@ -4261,10 +4294,6 @@ msgstr "Description de la Catégorie" msgid "Category Name" msgstr "Nom de la Catégorie" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Centime" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4373,7 +4402,7 @@ msgstr "Configuration du graphique" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Nom du graphique" @@ -4430,10 +4459,6 @@ msgstr "Vérifier" msgid "Check Request URL" msgstr "Vérifier l'URL de Demande" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4457,10 +4482,6 @@ msgstr "Cochez cette case si vous voulez forcer l'utilisateur à sélectionner u msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Vérification un moment" @@ -4507,6 +4528,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Choisissez une carte existante ou créez une nouvelle carte" @@ -4546,15 +4571,19 @@ msgstr "Ville" msgid "Clear" msgstr "Nettoyer" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Tout effacer" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4580,7 +4609,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "Effacer les autorisations utilisateur" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4596,10 +4625,6 @@ msgstr "" msgid "Click here" msgstr "Cliquez ici" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Cliquez ici pour vérifier" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4679,8 +4704,10 @@ msgid "Client Credentials" msgstr "Identifiants du Client" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "ID Client" @@ -4696,6 +4723,12 @@ msgstr "" msgid "Client Information" msgstr "Informations sur le client" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4708,13 +4741,32 @@ msgstr "Script client" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Secret Client" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4799,7 +4851,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Réduire" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tout réduire" @@ -4854,7 +4906,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4941,11 +4993,11 @@ msgstr "Colonnes" msgid "Columns / Fields" msgstr "Colonnes / Champs" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Colonnes basées sur" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "La combinaison du type de subvention ( {0} ) et du type de réponse ( {1} ) n'est pas autorisée" @@ -5104,7 +5156,7 @@ msgstr "Terminé" msgid "Complete By" msgstr "Terminé par" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Terminer l'Inscription" @@ -5194,6 +5246,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5232,7 +5290,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmer" @@ -5241,7 +5299,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Confirmer" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5254,7 +5312,7 @@ msgstr "" msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5263,17 +5321,12 @@ msgstr "" msgid "Confirm Request" msgstr "Confirmer la requête" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Confirmez Votre Email" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Modèle de courriel de confirmation" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Confirmé" @@ -5300,8 +5353,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Connecté à QZ Tray!" @@ -5393,6 +5446,11 @@ msgstr "Paramètres du Formulaire de Contact" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Les options de contact, comme \"Demande de Ventes, Demande d'Aide\" etc., doivent être chacune sur une nouvelle ligne ou séparées par des virgules." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Contacts" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5404,8 +5462,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5413,8 +5469,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5438,10 +5493,8 @@ msgstr "Contenu (Markdown)" msgid "Content Hash" msgstr "Hash du Contenu" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5498,7 +5551,7 @@ msgstr "Statut de la contribution" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Copié dans le presse-papier." @@ -5514,7 +5567,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Copier vers le presse-papiers" @@ -5539,7 +5592,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "Impossible de se connecter au serveur de messagerie sortant" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Impossible de trouver {0}" @@ -5547,6 +5600,10 @@ msgstr "Impossible de trouver {0}" msgid "Could not map column {0} to field {1}" msgstr "Impossible de mapper la colonne {0} au champ {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5563,7 +5620,7 @@ msgstr "Impossible d'enregistrer, veuillez vérifier les données que vous a #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Compter" @@ -5602,7 +5659,7 @@ msgstr "Compteur" msgid "Country" msgstr "Pays" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5634,7 +5691,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5648,13 +5705,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Créer une carte" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Créer un graphique" @@ -5733,11 +5790,6 @@ msgstr "Créer un(e) nouveau(elle) {0}" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -6086,6 +6138,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6119,12 +6175,12 @@ msgstr "Personnalisations pour {0} exportées vers:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Personnaliser" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personnaliser" @@ -6143,7 +6199,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Personnaliser le formulaire" @@ -6269,7 +6325,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Tableau de bord" @@ -6436,7 +6492,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6500,6 +6555,11 @@ msgstr "Jour" msgid "Day of Week" msgstr "Jour de la semaine" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Journées" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6764,15 +6824,16 @@ msgstr "Différé" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Supprimer" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Supprimer" @@ -6808,7 +6869,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6850,12 +6911,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Supprimer {0} éléments de façon permanente?" @@ -7079,6 +7140,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7262,8 +7324,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Desactivé" @@ -7272,7 +7334,7 @@ msgstr "Desactivé" msgid "Disabled Auto Reply" msgstr "Réponse automatique désactivée" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7430,6 +7492,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7675,7 +7738,7 @@ msgstr "Condition de règle de dénomination de document" msgid "Document Naming Settings" msgstr "Masque de numérotation des documents" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "Document en Attente" @@ -7832,7 +7895,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7969,7 +8032,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "Vous n'avez pas de compte?" @@ -8023,7 +8086,7 @@ msgstr "Lien de téléchargement" msgid "Download PDF" msgstr "Télécharger au Format PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Télécharger le rapport" @@ -8107,7 +8170,7 @@ msgid "Due Date Based On" msgstr "Date d'échéance basée sur" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Dupliquer" @@ -8222,9 +8285,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8236,7 +8299,7 @@ msgstr "" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "modifier" @@ -8271,11 +8334,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "Modifier HTML Personnalisé" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "Modifier le DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifier le DocType" @@ -8450,10 +8513,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8488,7 +8550,7 @@ msgstr "" msgid "Email Account Name" msgstr "Nom du Compte Email" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "Compte Email ajouté plusieurs fois" @@ -8544,11 +8606,9 @@ msgstr "Pied de Page Email" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "Groupe Email" @@ -8597,7 +8657,7 @@ msgstr "File d'Attente Email" msgid "Email Queue Recipient" msgstr "Destinataire de la Liste d'Attente d'Emails" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8621,18 +8681,11 @@ msgstr "" msgid "Email Rule" msgstr "Règle Email" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "Email Envoyé" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8668,7 +8721,7 @@ msgstr "Option de Synchronisation d'Email" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "Modèle d'email" @@ -8700,7 +8753,7 @@ msgstr "L'Email a été déplacé dans la corbeille" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Email pas envoyé à {0} (désabonné / désactivé)" @@ -8726,7 +8779,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "Les Emails sont mis en sourdine" @@ -8739,10 +8792,18 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8778,6 +8839,12 @@ msgstr "Activer la liaison automatique dans les documents" msgid "Enable Comments" msgstr "Activer Commentaires" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8937,8 +9004,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Activé" @@ -9065,7 +9132,7 @@ msgstr "Entrez l'ID et le secret du client dans les paramètres Google." msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Entrez Email du(des) Destinataire(s)" @@ -9168,7 +9235,7 @@ msgstr "" msgid "Error Message" msgstr "Message d'erreur" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Erreur de connexion à l'application QZ Tray ...

Vous devez avoir installé et exécuté l'application QZ Tray pour utiliser la fonction d'impression brute.

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." @@ -9206,6 +9273,14 @@ msgstr "Erreur dans la notification" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Erreur lors de la connexion au compte Email {0}" @@ -9371,7 +9446,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Temps d'exécution: {0} s" @@ -9397,11 +9472,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Développer" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Développer Tout" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9454,13 +9533,13 @@ msgstr "Heure d'expiration de l'image du QR Code" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exporter" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exporter" @@ -9818,8 +9897,8 @@ msgstr "Récupération des documents de recherche globale par défaut." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9890,7 +9969,7 @@ msgstr "Champ à suivre" msgid "Field type cannot be changed for {0}" msgstr "Le type de champ ne peut pas être modifié pour {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9933,7 +10012,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Le Nom du champ est limité à 64 caractères ({0})" @@ -9949,7 +10028,7 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}" @@ -10001,6 +10080,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10166,6 +10249,14 @@ msgstr "Nom du filtre" msgid "Filter Values" msgstr "Valeurs du filtre" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10377,7 +10468,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Suivre" @@ -10385,7 +10476,7 @@ msgstr "Suivre" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10409,10 +10500,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "Les champs suivants ont des valeurs manquantes:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10573,7 +10660,7 @@ msgstr "Pour l\\'Utilisateur" msgid "For Value" msgstr "Pour la Valeur" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)." @@ -10829,15 +10916,13 @@ msgid "Friday" msgstr "Vendredi" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "À partir de" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "À partir de" @@ -10853,7 +10938,7 @@ msgstr "A partir du" msgid "From Date Field" msgstr "Champ date" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "De type de document" @@ -10904,7 +10989,7 @@ msgstr "Pleine largeur" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Une fonction" @@ -10913,10 +10998,14 @@ msgstr "Une fonction" msgid "Function Based On" msgstr "Fonction basée sur" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'" @@ -10978,7 +11067,7 @@ msgstr "Général" msgid "Generate Keys" msgstr "Générer des clés" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Générer un nouveau rapport" @@ -10986,8 +11075,8 @@ msgstr "Générer un nouveau rapport" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -11102,7 +11191,7 @@ msgstr "Raccourcis globaux" msgid "Global Unsubscribe" msgstr "Se Désabonner Globalement" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Aller" @@ -11266,8 +11355,6 @@ msgstr "Google Contacts - Impossible de mettre à jour le contact dans Google Co msgid "Google Contacts Id" msgstr "Identifiant Google Contacts" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11304,6 +11391,7 @@ msgstr "Services Google" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11398,6 +11486,10 @@ msgstr "Regrouper par type" msgid "Group By field is required to create a dashboard chart" msgstr "Le champ Grouper par est requis pour créer un tableau de bord" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Niveau parent" @@ -11412,7 +11504,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11446,7 +11538,6 @@ msgstr "HH: mm: ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11460,11 +11551,10 @@ msgstr "HH: mm: ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11693,7 +11783,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11729,12 +11819,17 @@ msgstr "Caché" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Cacher" @@ -11841,7 +11936,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Masquer le Menu Standard" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11896,7 +11991,7 @@ msgstr "La règle de priorité supérieure sera appliquée en premier" msgid "Highlight" msgstr "Surligner" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Astuce: inclure des symboles, des chiffres et des majuscules dans le mot de passe" @@ -11969,20 +12064,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "Limite de taux horaire pour générer des liens de réinitialisation de mot de passe" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Heures" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Comment cette devise doit-elle être formatée ? Si ce n’est pas défini, les paramètres par défaut du système seront utilisés" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12387,7 +12492,7 @@ msgstr "Champ de l'image doit être du type Image Jointe" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12435,7 +12540,7 @@ msgstr "Implicite" msgid "Import" msgstr "Importer" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Importer" @@ -12663,11 +12768,15 @@ msgstr "Inclure le thème des applications" msgid "Include Web View Link in Email" msgstr "Envoyer le lien de la vue Web du document par e-mail" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Inclure l'indentation" @@ -12734,11 +12843,11 @@ msgstr "Utilisateur ou mot de passe incorrect" msgid "Incorrect Verification code" msgstr "Code de Vérification incorrect" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12825,7 +12934,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Insérer Après" @@ -12890,11 +12999,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Autorisation Insuffisante Pour {0}" @@ -13016,7 +13125,7 @@ msgstr "Invalide" msgid "Invalid \"depends_on\" expression" msgstr "Expression \"depends_on\" non valide" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Expression "depend_on" non valide définie dans le filtre {0}" @@ -13044,7 +13153,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "Les informations d'identification invalides" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Date invalide" @@ -13052,7 +13161,7 @@ msgstr "Date invalide" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -13064,6 +13173,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -13076,7 +13190,7 @@ msgstr "Valeur de filtre non valide" msgid "Invalid Home Page" msgstr "Page d'Accueil Invalide" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Lien Invalide" @@ -13110,7 +13224,7 @@ msgstr "Option invalide" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Format de Sortie Invalide" @@ -13122,13 +13236,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Mot de Passe Invalide" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13172,11 +13286,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Colonne incorrecte" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13188,10 +13330,30 @@ msgstr "Expression non valide définie dans le filtre {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Expression non valide définie dans le filtre {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nom de champ {0} invalide" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Champ invalide '{0}' dans nom automatique" @@ -13200,11 +13362,26 @@ msgstr "Champ invalide '{0}' dans nom automatique" msgid "Invalid file path: {0}" msgstr "Chemin de fichier invalide : {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Filtre non valide: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13226,10 +13403,22 @@ msgstr "Contenu non valide ou corrompu pour l'importation" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Fichier de modèle non valide pour l'importation" @@ -13637,8 +13826,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Aller au champ" @@ -13671,11 +13860,11 @@ msgstr "Colonne Tableau Kanban" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Nom du Tableau Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13963,7 +14152,7 @@ msgstr "L’Étiquette est obligatoire" msgid "Landing Page" msgstr "Page d'Accueil" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Paysage" @@ -14259,7 +14448,7 @@ msgstr "Lettre" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14387,6 +14576,10 @@ msgstr "Aime" msgid "Limit" msgstr "Limite" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14569,7 +14762,7 @@ msgstr "Liens" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Liste" @@ -14599,7 +14792,7 @@ msgstr "Filtre de liste" msgid "List Settings" msgstr "Paramètres de liste" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Paramètres de liste" @@ -14650,6 +14843,7 @@ msgid "Load Balancing" msgstr "L'équilibrage de charge" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14670,7 +14864,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Chargement" @@ -14882,6 +15076,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15068,7 +15267,7 @@ msgstr "Obligatoire dépend de" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Renseignements Obligatoires manquants :" @@ -15168,11 +15367,9 @@ msgstr "Marquer comme spam" msgid "Mark as Unread" msgstr "Marquer comme non Lu" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15293,7 +15490,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15361,7 +15558,6 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15374,11 +15570,10 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15389,16 +15584,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15425,7 +15610,7 @@ msgstr "Message envoyé" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Message coupé" @@ -15503,6 +15688,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "Meta title pour le référencement" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15522,7 +15713,7 @@ msgstr "Meta title pour le référencement" msgid "Method" msgstr "Méthode" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15572,6 +15763,11 @@ msgstr "Score Minimum de Mot de Passe" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15611,7 +15807,7 @@ msgstr "" msgid "Missing Fields" msgstr "Champs Manquants" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15619,7 +15815,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15685,7 +15881,7 @@ msgstr "Modifié Par" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15967,7 +16163,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "Doit être de type \"Joindre l'Image\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci." @@ -15985,7 +16181,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16127,12 +16323,12 @@ msgstr "Modèle de barre de navigation" msgid "Navbar Template Values" msgstr "Valeurs du modèle de barre de navigation" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Naviguer dans la liste" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Naviguer dans la liste en haut" @@ -16151,10 +16347,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Valeur négative" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur." @@ -16237,7 +16437,7 @@ msgstr "Nouvel évènement" msgid "New Folder" msgstr "Nouveau Dossier" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Nouveau Tableau Kanban" @@ -16260,10 +16460,6 @@ msgstr "Nouveau Message depuis la Page Contact du Site Web" msgid "New Name" msgstr "Nouveau Nom" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Nouvelle Newsletter" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Nouvelle notification" @@ -16276,7 +16472,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nouveau Mot de Passe" @@ -16321,7 +16517,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16345,7 +16560,7 @@ msgstr "Nouvelle valeur à définir" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16353,19 +16568,19 @@ msgstr "Nouvelle valeur à définir" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Nouveau(elle) {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Nouveau {0} créé" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Nouveau {0} {1} ajouté au tableau de bord {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Nouveau {0} {1} créé" @@ -16377,52 +16592,17 @@ msgstr "Nouveau {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Groupe Email pour Newsletter" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Responsable de la Newsletter" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "La Newsletter a déjà été envoyée" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Le bulletin devrait avoir au moins un destinataire" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16539,7 +16719,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Non" @@ -16568,7 +16748,7 @@ msgid "No Copy" msgstr "Aucune Copie" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16680,11 +16860,11 @@ msgstr "Aucun résultat" msgid "No Results found" msgstr "Aucun résultat trouvs" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16712,10 +16892,6 @@ msgstr "Aucune alerte pour aujourd'hui" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Aucun changement dans le document" @@ -16752,7 +16928,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "Aucun contact lié au document" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Aucune donnée à exporter" @@ -16772,7 +16948,7 @@ msgstr "Aucun compte de messagerie associé à l'utilisateur. Veuillez ajout msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16831,7 +17007,7 @@ msgstr "Nb de lignes (Max 500)" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Pas d'autorisation pour {0}" @@ -16924,6 +17100,12 @@ msgstr "Non négatif" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Aucun" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Rien: Fin du Workflow" @@ -16938,7 +17120,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Non Autorisé" @@ -16959,7 +17141,7 @@ msgstr "Pas des descendants de" msgid "Not Equals" msgstr "Non égaux" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Non Trouvé" @@ -16985,16 +17167,16 @@ msgstr "Lié à aucun enregistrement" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Non Autorisé" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -17004,8 +17186,8 @@ msgstr "" msgid "Not Published" msgstr "Non Publié" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17022,7 +17204,6 @@ msgstr "Non Vu" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Non Envoyé" @@ -17039,7 +17220,7 @@ msgstr "Non Défini" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Valeurs Séparées par des Virgules non valides (Fichier CSV)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Image utilisateur non valide." @@ -17055,7 +17236,7 @@ msgstr "" msgid "Not active" msgstr "Non actif" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Non autorisé pour {0}: {1}" @@ -17096,7 +17277,7 @@ msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Pas permis" @@ -17274,7 +17455,7 @@ msgstr "Notifier si aucune réponse dans (en min)" msgid "Notify users with a popup when they log in" msgstr "Informer les utilisateurs avec un popup quand ils se connectent" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Maintenant" @@ -17417,6 +17598,11 @@ msgstr "Paramètres du Fournisseur OAuth" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17489,6 +17675,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Ancien Mot De Passe" @@ -17560,7 +17750,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17636,7 +17826,7 @@ msgstr "Seul l'Administrateur peut modifier" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Seul l'Administrateur peut enregistrer un rapport standard. Merci de renommer et sauvegarder." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Seul l'administrateur est autorisé à utiliser l'enregistreur" @@ -17662,7 +17852,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17693,7 +17883,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17701,7 +17891,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17789,7 +17979,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Ouvrir un élément de la liste" @@ -17834,7 +18024,7 @@ msgstr "Ouvert" msgid "Operation" msgstr "Opération" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "L'Opérateur doit être parmi {0}" @@ -17844,7 +18034,7 @@ msgstr "L'Opérateur doit être parmi {0}" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17933,6 +18123,10 @@ msgstr "" msgid "Order" msgstr "Commande" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17945,7 +18139,7 @@ msgstr "Histoire Org" msgid "Org History Heading" msgstr "Rubriques Histoire Org" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -18027,9 +18221,11 @@ msgstr "Responsable" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18324,11 +18520,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "Parent est le nom du document auquel les données seront ajoutées." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18388,11 +18584,11 @@ msgstr "Passif" msgid "Password" msgstr "Mot de Passe" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Réinitialisation du Mot de Passe" @@ -18426,11 +18622,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18438,11 +18634,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18450,10 +18646,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Coller" @@ -18599,7 +18791,7 @@ msgstr "Valider de Manière Permanente {0} ?" msgid "Permanently delete {0}?" msgstr "Supprimer de Manière Permanente {0} ?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Erreur d'autorisation" @@ -18751,11 +18943,11 @@ msgstr "Téléphone" msgid "Phone No." msgstr "N° de Téléphone." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18813,7 +19005,7 @@ msgstr "Veuillez Dupliquer le thème de ce site Web pour le personnaliser." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Veuillez installer la bibliothèque ldap3 via pip pour utiliser la fonctionnalité ldap." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Veuillez définir le graphique" @@ -18829,7 +19021,7 @@ msgstr "S'il vous plaît ajouter un sujet à votre email" msgid "Please add a valid comment." msgstr "Veuillez ajouter un commentaire valide." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Veuillez demander à votre administrateur de vérifier votre inscription" @@ -18861,7 +19053,7 @@ msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bo msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Veuillez vérifier votre email pour validation" @@ -18926,7 +19118,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Veuillez autoriser les pop-ups" @@ -18943,23 +19135,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "Veuillez vous assurer que votre profil a une adresse email" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Veuillez entrer l'URL du jeton d'accès" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Veuillez entrer l'URL d'autorisation" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Veuillez entrer l'URL de base" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Veuillez entrer le code client avant que le login social soit activé" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Veuillez entrer le secret client avant que la connexion avec les réseaux sociaux soit activé" @@ -18967,7 +19159,7 @@ msgstr "Veuillez entrer le secret client avant que la connexion avec les réseau msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Veuillez entrer l'URL de redirection" @@ -18979,7 +19171,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Veuillez entrer le mot de passe" @@ -18992,11 +19184,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "Veuillez entrer des N° de mobiles valides" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -19012,7 +19204,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Assurez-vous que les documents de communication de référence ne sont pas liés de manière circulaire." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Veuillez actualiser pour obtenir la dernière version du document." @@ -19024,10 +19216,6 @@ msgstr "" msgid "Please save before attaching." msgstr "Veuillez enregistrer avant de joindre une pièce." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Veuillez sauvegarder la Newsletter avant de l'envoyer" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Veuillez enregistrer le document avant l'affectation" @@ -19056,11 +19244,11 @@ msgstr "Veuillez d'abord sélectionner le type d'entité" msgid "Please select Minimum Password Score" msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -19076,7 +19264,7 @@ msgstr "Veuillez sélectionner un fichier ou une URL" msgid "Please select a valid csv file with data" msgstr "Veuillez sélectionner un fichier CSV valide contenant des données" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Veuillez sélectionner un filtre de date valide" @@ -19084,7 +19272,7 @@ msgstr "Veuillez sélectionner un filtre de date valide" msgid "Please select applicable Doctypes" msgstr "Veuillez sélectionner les types de docteurs applicables" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper" @@ -19114,11 +19302,11 @@ msgstr "Veuillez définir une Adresse Email" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Veuillez définir un mappage d'imprimante pour ce format d'impression dans les paramètres de l'imprimante." -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Veuillez définir des filtres" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport." @@ -19142,7 +19330,7 @@ msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authen msgid "Please setup a message first" msgstr "Veuillez d'abord configurer un message" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19154,7 +19342,7 @@ msgstr "" msgid "Please specify" msgstr "Veuillez spécifier" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19191,14 +19379,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Veuillez vérifier votre adresse e-mail" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19244,7 +19437,7 @@ msgstr "Article du Menu Portail" msgid "Portal Settings" msgstr "Paramètres du Portail" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19288,6 +19481,10 @@ msgstr "Messages de {0}" msgid "Posts filed under {0}" msgstr "Messages déposés en vertu de {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19347,15 +19544,15 @@ msgstr "" msgid "Prepared Report User" msgstr "Utilisateur du rapport préparé" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Rapport de préparation" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19376,8 +19573,6 @@ msgstr "Appuyez sur Entrée pour enregistrer" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19422,7 +19617,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19493,16 +19688,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impression" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impression" @@ -19557,6 +19752,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19567,6 +19767,10 @@ msgstr "Aide pour le Format d'Impression" msgid "Print Format Type" msgstr "Type de Format d'Impression" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Le Format d'Impression {0} est désactivé" @@ -19598,11 +19802,11 @@ msgstr "Cacher à l'Impression" msgid "Print Hide If No Value" msgstr "Cacher à l’Impression si Aucune Valeur" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Langue d’Impression" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Imprimer Envoyé à l'imprimante!" @@ -19620,7 +19824,7 @@ msgstr "Serveur d'imprimante" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Paramètres d'impression" @@ -19730,6 +19934,10 @@ msgstr "Privé" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19740,7 +19948,7 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Continuer malgré tout" @@ -19765,7 +19973,7 @@ msgstr "" msgid "Progress" msgstr "Progression" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projet" @@ -19852,6 +20060,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19860,14 +20072,7 @@ msgstr "" msgid "Publish" msgstr "Publier" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19875,7 +20080,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19999,7 +20203,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "QR Code pour la Vérification de Connexion" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ Tray Failed:" @@ -20096,7 +20300,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "Dans la file d'attente" @@ -20119,19 +20322,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "En file d'attente pour la sauvegarde. Vous recevrez un courriel avec le lien de téléchargement" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20221,7 +20416,7 @@ msgstr "Évaluation" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Commandes brutes" @@ -20256,7 +20451,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20332,7 +20527,7 @@ msgstr "Lu par le destinataire sur" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20352,7 +20547,7 @@ msgstr "" msgid "Reason" msgstr "Raison" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Reconstruire" @@ -20498,12 +20693,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Le serveur de cache Redis ne fonctionne pas. Veuillez contacter l'administrateur / le support technique" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Refaire l'action" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Refaire l'action précédente" @@ -20717,11 +20912,11 @@ msgid "Referrer" msgstr "Référent" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20760,7 +20955,7 @@ msgstr "" msgid "Refreshing..." msgstr "Actualisation..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Enregistré mais Désactivé" @@ -20809,7 +21004,7 @@ msgstr "Reconnecté" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Recharger" @@ -20840,7 +21035,7 @@ msgstr "Se Souvenir de la Dernière Valeur Sélectionnée" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Me le rappeler" @@ -20922,7 +21117,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20950,7 +21145,7 @@ msgstr "" msgid "Reopen" msgstr "Ré-ouvrir" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Répéter" @@ -21050,6 +21245,8 @@ msgstr "Répondre à Tous" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21065,8 +21262,11 @@ msgstr "Répondre à Tous" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Rapport" @@ -21135,7 +21335,7 @@ msgstr "Gestionnaire de Rapports" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Nom du Rapport" @@ -21187,11 +21387,11 @@ msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou msgid "Report has no numeric fields, please change the Report Name" msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21199,7 +21399,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Rapport mis à jour avec succès" @@ -21207,7 +21407,7 @@ msgstr "Rapport mis à jour avec succès" msgid "Report was not saved (there were errors)" msgstr "Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage." @@ -21220,7 +21420,7 @@ msgstr "Rapport {0}" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Rapport {0} est désactivé" @@ -21243,7 +21443,7 @@ msgstr "Rapports" msgid "Reports & Masters" msgstr "Ecrans principaux et Rapports" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Rapports déjà en file d'attente" @@ -21428,6 +21628,31 @@ msgstr "Rétablir par défaut" msgid "Reset your password" msgstr "Réinitialisez votre mot de passe" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21553,10 +21778,8 @@ msgstr "Révoquer" msgid "Revoked" msgstr "Révoqué" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21659,7 +21882,7 @@ msgstr "Autorisations du Rôle" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" @@ -21693,7 +21916,7 @@ msgstr "" msgid "Role and Level" msgstr "Rôle et Niveau" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21767,7 +21990,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21781,7 +22003,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21808,7 +22029,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Ligne" @@ -21899,7 +22120,7 @@ msgstr "Règle" msgid "Rule Conditions" msgstr "Conditions de règle" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -22088,12 +22309,12 @@ msgstr "Samedi" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22120,7 +22341,7 @@ msgstr "Enregistrer Sous" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Enregistrer le rapport" @@ -22139,7 +22360,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22184,32 +22405,17 @@ msgstr "Veuillez scanner le QR Code et entrer le code que vous recevez." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Prévu" @@ -22243,17 +22449,6 @@ msgstr "Type de travail planifié" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Prévu pour envoyer" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "L'exécution planifiée du script {0} a été mise à jour" @@ -22322,6 +22517,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22465,6 +22665,11 @@ msgstr "Rechercher..." msgid "Searching ..." msgstr "Recherche ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22512,7 +22717,7 @@ msgstr "Paramètres de Sécurité" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Voir tous les rapports passés." @@ -22580,8 +22785,8 @@ msgstr "Sélectionner" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22597,7 +22802,7 @@ msgid "Select Column" msgstr "Sélectionner la colonne" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Sélectionner des Colonnes" @@ -22647,7 +22852,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Sélectionner un champ" @@ -22718,7 +22923,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Sélectionner le Format d'Impression" @@ -22810,13 +23015,13 @@ msgstr "Sélectionner au moins 1 enregistrement pour l'impression" msgid "Select atleast 2 actions" msgstr "Sélectionnez au moins 2 actions" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Sélectionner un élément de la liste" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Sélectionner plusieurs éléments de liste" @@ -22854,9 +23059,7 @@ msgstr "Sélectionner {0}" msgid "Self approval is not allowed" msgstr "L'auto-approbation n'est pas autorisée" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Envoyer" @@ -22887,11 +23090,6 @@ msgstr "Envoyer une Alerte Sur" msgid "Send Email Alert" msgstr "Envoyer une alerte email" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22939,7 +23137,7 @@ msgstr "Envoyer Maintenant" msgid "Send Print as PDF" msgstr "Envoyer Imprimer en PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Envoyer Accusé de Réception" @@ -22949,38 +23147,16 @@ msgstr "Envoyer Accusé de Réception" msgid "Send System Notification" msgstr "Envoyer une notification système" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Envoyer à tous les cessionnaires" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Envoyer le Lien de Désabonnement" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Envoyer un Email de Bienvenue" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23024,14 +23200,10 @@ msgstr "Envoyer une demande à cette adresse courriel" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "M'Envoyer Une Copie" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23047,19 +23219,15 @@ msgstr "Envoyer un message de désabonnement dans l'email" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Expéditeur" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Email d'expéditeur" @@ -23076,9 +23244,7 @@ msgid "Sender Field should have Email in options" msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -23098,18 +23264,9 @@ msgstr "SendGrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Envoi" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23117,8 +23274,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Envoyé" @@ -23188,7 +23343,7 @@ msgstr "Séries {0} déjà utilisé dans {1}" msgid "Server Action" msgstr "Action du serveur" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Erreur du Serveur" @@ -23207,7 +23362,7 @@ msgstr "IP serveur" msgid "Server Script" msgstr "Script de serveur" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23246,15 +23401,15 @@ msgstr "Paramètres de session par défaut" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Session par défaut" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Session par défaut enregistrée" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "La Session a Expiré" @@ -23286,7 +23441,7 @@ msgstr "Définir" msgid "Set Banner from Image" msgstr "Définir la Bannière depuis l'Image" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23312,7 +23467,7 @@ msgstr "Définir les filtres" msgid "Set Filters for {0}" msgstr "Définir des filtres pour {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23484,7 +23639,7 @@ msgstr "Configuration de votre système" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23530,7 +23685,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Configuration Auto Email" @@ -23619,6 +23774,8 @@ msgstr "Raccourcis" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Afficher" @@ -23645,6 +23802,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Afficher le calendrier" @@ -23725,7 +23888,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "Afficher les Sauts de Ligne après Sections" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23762,6 +23925,12 @@ msgstr "Afficher l'aperçu Popup" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23788,8 +23957,14 @@ msgstr "Voir la Section Titres" msgid "Show Sidebar" msgstr "Afficher la Barre Latérale" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Voir les étiquettes" @@ -23818,6 +23993,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Afficher les avertissements" @@ -23871,6 +24052,12 @@ msgstr "Afficher le formulaire complet au lieu d'un modal de saisie rapide" msgid "Show in Module Section" msgstr "Afficher la Section Module" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23951,12 +24138,12 @@ msgstr "Barre Latérale et Commentaires" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "L'inscription est désactivée" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "S'inscrire" @@ -24042,8 +24229,10 @@ msgstr "Sauter" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Passer autorisation" @@ -24207,6 +24396,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24274,7 +24473,7 @@ msgstr "Champ de tri {0} doit être un nom de champ valide" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24364,7 +24563,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24380,7 +24579,7 @@ msgstr "Standard non défini" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Le Format d'Impression Standard ne peut pas être mis à jour" @@ -24504,7 +24703,7 @@ msgstr "Commence le" #: frappe/workflow/doctype/workflow_state/workflow_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "Etat" +msgstr "" #: frappe/public/js/workflow_builder/components/Properties.vue:24 msgid "State Properties" @@ -24567,7 +24766,6 @@ msgstr "Intervalle de temps des statistiques" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24592,7 +24790,6 @@ msgstr "Intervalle de temps des statistiques" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24603,7 +24800,7 @@ msgstr "Intervalle de temps des statistiques" msgid "Status" msgstr "Statut" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Statut mis à jour" @@ -24733,8 +24930,6 @@ msgstr "Sous-domaine" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24743,10 +24938,9 @@ msgstr "Sous-domaine" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Sujet" @@ -24785,7 +24979,7 @@ msgstr "" msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Valider" @@ -24843,7 +25037,7 @@ msgstr "Validez ce document pour terminer cette étape." msgid "Submit this document to confirm" msgstr "Valider ce document pour confirmer" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Valider {0} documents ?" @@ -24937,7 +25131,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Succès! Vous êtes bon pour aller" @@ -24992,7 +25186,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Nom d'Utilisateur Suggérée : {0}" @@ -25005,7 +25199,7 @@ msgstr "Nom d'Utilisateur Suggérée : {0}" msgid "Sum" msgstr "Somme" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Somme de {0}" @@ -25114,7 +25308,7 @@ msgstr "Synchronisation" msgid "Syncing {0} of {1}" msgstr "Synchroniser {0} sur {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25292,6 +25486,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25351,6 +25546,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25421,7 +25621,7 @@ msgstr "" msgid "Table updated" msgstr "Table Mise à Jour" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "La Table {0} ne peut pas être vide" @@ -25529,7 +25729,7 @@ msgstr "Avertissements de modèles" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Temporairement désactivé" @@ -25548,10 +25748,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "E-mail de test envoyé à {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Dossier_Test" @@ -25617,10 +25813,6 @@ msgstr "Merci pour votre Email" msgid "Thank you for your feedback!" msgstr "Merci pour votre avis!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Merci de l’intérêt que vous nous montrez en vous abonnant à notre actualité" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25685,7 +25877,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "La ressource que vous recherchez n'est pas disponible" @@ -25821,7 +26013,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25882,7 +26074,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25911,7 +26103,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "Il y a un problème avec l'url du fichier : {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25935,7 +26127,7 @@ msgstr "Il y a eu des erreurs" msgid "There were errors while creating the document. Please try again." msgstr "Il y avait des erreurs lors de la création du document. Veuillez réessayer." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau." @@ -25949,6 +26141,12 @@ msgstr "Il y a eu des erreurs lors de la configuration du nom, veuillez contacte msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25974,7 +26172,7 @@ msgstr "Authentification Tierce" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Cette devise est désactivée. Activez la pour l'utiliser dans les transactions" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Ce Tableau Kanban sera privé" @@ -25998,7 +26196,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Cette action n'est autorisée que pour {}" @@ -26025,7 +26223,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26041,7 +26239,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "Ce document est déjà obsoléte (une nouvelle version existe), vous ne pouvez plus le modifier" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -26102,7 +26300,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Ceci va au-dessus du diaporama." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau." @@ -26158,15 +26356,7 @@ msgstr "Cela peut être imprimé sur plusieurs pages" msgid "This month" msgstr "Ce mois-ci" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26174,7 +26364,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "Ce rapport a été généré le {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Ce rapport a été généré {0}." @@ -26240,7 +26430,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Étranglé" @@ -26278,7 +26468,6 @@ msgstr "Jeudi" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Temps" @@ -26504,10 +26693,8 @@ msgid "Title of the page" msgstr "Titre de la page" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "À" @@ -26557,7 +26744,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26593,7 +26780,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}." @@ -26668,7 +26855,7 @@ msgstr "Afficher/Cacher la vue en grille" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" @@ -26689,6 +26876,12 @@ msgstr "Jeton" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26716,7 +26909,7 @@ msgstr "" msgid "Too Many Requests" msgstr "Trop de demandes" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26724,7 +26917,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure" @@ -26786,9 +26979,9 @@ msgstr "" msgid "Topic" msgstr "Sujet" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26814,16 +27007,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Total d'Abonnés" @@ -26832,11 +27017,6 @@ msgstr "Total d'Abonnés" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26922,7 +27102,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26969,7 +27149,7 @@ msgstr "" msgid "Translatable" msgstr "Traduisible" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -27002,6 +27182,11 @@ msgstr "Traduction" msgid "Translations" msgstr "Traductions" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27223,33 +27408,65 @@ msgstr "URL de documentation ou d'aide" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL de la page" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL à consulter en cliquant sur l'image du diaporama" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27282,7 +27499,7 @@ msgstr "Impossible d'ouvrir le fichier joint. L'avez-vous exporté au format CSV msgid "Unable to read file format for {0}" msgstr "Impossible de lire le format de fichier pour {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Impossible d'envoyer du courrier en raison d'un compte de messagerie manquant. Veuillez configurer le compte de messagerie par défaut dans Paramètres > Compte de messagerie" @@ -27299,7 +27516,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27307,16 +27524,20 @@ msgstr "" msgid "Unchanged" msgstr "Inchangé" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Annuler l'action" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Annuler l'action précédente" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Se désabonner" @@ -27339,6 +27560,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Inconnu" @@ -27347,7 +27575,7 @@ msgstr "Inconnu" msgid "Unknown Column: {0}" msgstr "Colonne Inconnue : {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27394,7 +27622,7 @@ msgstr "" msgid "Unshared" msgstr "Non Partagé" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Se Désinscrire" @@ -27414,10 +27642,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Désinscrit" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Colonne sans titre" @@ -27540,7 +27773,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉" msgid "Updated successfully" msgstr "Mis à jour avec succés" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Réactualisation" @@ -27818,7 +28051,7 @@ msgstr "L'utilisateur ne peut pas Créer" msgid "User Cannot Search" msgstr "L'utilisateur ne peut pas Rechercher" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27924,12 +28157,12 @@ msgstr "Autorisation de l'Utilisateur" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Autorisations des Utilisateurs" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" @@ -28030,15 +28263,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Utilisateur {0} ne peut pas être supprimé" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Utilisateur {0} ne peut pas être désactivé" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Utilisateur {0} ne peut pas être renommé" @@ -28059,7 +28292,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "L'utilisateur {0} a demandé la suppression des données." -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -28088,7 +28321,7 @@ msgstr "" msgid "Username" msgstr "Nom d'Utilisateur" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Nom d'Utilisateur {0} existe déjà" @@ -28228,15 +28461,15 @@ msgstr "Valeur Modifiée" msgid "Value To Be Set" msgstr "Valeur à Définir" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Valeur ne peut pas être modifiée pour {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "La valeur ne peut pas être négative pour" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "La valeur ne peut pas être négative pour {0}: {1}" @@ -28262,6 +28495,12 @@ msgstr "La valeur de ce champ sera définie comme date d'échéance dans la msgid "Value must be one of {0}" msgstr "La valeur doit être l'une des {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28275,7 +28514,7 @@ msgstr "Valeur trop grande" msgid "Value {0} missing for {1}" msgstr "Valeur {0} manquante pour {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "La valeur {0} doit être au format de durée valide: dhms" @@ -28355,7 +28594,7 @@ msgstr "" msgid "View All" msgstr "Tout voir" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28599,7 +28838,7 @@ msgstr "Page Web" msgid "Web Page Block" msgstr "Bloc de page Web" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28642,6 +28881,7 @@ msgstr "Vue Web" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28700,7 +28940,6 @@ msgstr "URL du webhook" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28708,9 +28947,7 @@ msgid "Website" msgstr "Site Web" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Analyse de site Web" @@ -28910,11 +29147,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Email de bienvenue envoyé" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Bienvenue sur {0}" @@ -29000,7 +29237,7 @@ msgstr "Ne seront montrés que si les titres de section sont activés" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Avec en-tête de Lettre" @@ -29141,12 +29378,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29268,7 +29505,7 @@ msgstr "Champs de l'Axe Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Champ Y" @@ -29329,7 +29566,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Oui" @@ -29369,11 +29606,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Vous n'êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29396,7 +29633,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Vous n'êtes pas autorisé à exporter {} doctype" @@ -29404,11 +29641,11 @@ msgstr "Vous n'êtes pas autorisé à exporter {} doctype" msgid "You are not allowed to print this report" msgstr "Vous n'êtes pas autorisé à imprimer ce rapport" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Vous n'êtes pas autorisé à envoyer un email en relation avec ce document" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web" @@ -29424,7 +29661,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "Vous n'êtes pas autorisé à accéder à cette page." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29432,7 +29669,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Vous suivez maintenant ce document. Vous recevrez des mises à jour quotidiennes par courrier électronique. Vous pouvez modifier cela dans les paramètres de l'utilisateur." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29477,7 +29714,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29519,7 +29756,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Vous pouvez essayer de modifier les filtres de votre rapport." @@ -29596,11 +29833,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29608,19 +29849,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Vous n'avez pas accès au Rapport : {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0}" @@ -29685,15 +29926,15 @@ msgstr "Vous avez édité ceci pour la dernière fois" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Vous devez vous connecter pour valider ce formulaire" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29713,7 +29954,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Vous devez être en Mode Développeur pour modifier un Formulaire Web Standard" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes." @@ -29796,7 +30037,7 @@ msgstr "Vous avez non suivi ce document" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29837,11 +30078,11 @@ msgstr "Votre compte a été verrouillé et reprendra après {0} secondes" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Votre devoir sur {0} {1} a été supprimé par {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29861,11 +30102,11 @@ msgstr "" msgid "Your login id is" msgstr "Votre id de connexion est" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29879,7 +30120,7 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer." @@ -29891,7 +30132,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Zéro" @@ -29915,7 +30156,7 @@ msgstr "" msgid "_report" msgstr "_rapport" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29938,7 +30179,7 @@ msgstr "" msgid "amend" msgstr "Nouv. version" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "et" @@ -29995,8 +30236,8 @@ msgstr "créer" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "ré" @@ -30110,7 +30351,7 @@ msgstr "" msgid "email inbox" msgstr "Boîte de réception e-mail" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "vide" @@ -30162,8 +30403,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30196,7 +30437,7 @@ msgstr "" msgid "just now" msgstr "juste maintenant" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30236,8 +30477,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30426,8 +30667,8 @@ msgstr "réponse" msgid "restored {0} as {1}" msgstr "restauré(e) {0} comme {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30720,7 +30961,7 @@ msgstr "" msgid "{0} Report" msgstr "Rapport {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30761,7 +31002,7 @@ msgstr "{0} déjà désinscrit" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} déjà désabonné pour {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} et {1}" @@ -30769,7 +31010,7 @@ msgstr "{0} et {1}" msgid "{0} are currently {1}" msgstr "{0} sont actuellement {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} sont obligatoires" @@ -30799,7 +31040,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30867,7 +31108,11 @@ msgstr "{0} n'existe pas dans la ligne {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30887,11 +31132,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "{0} a déjà attribué la valeur par défaut à {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} a été ajouté avec succès au Groupe d’Email." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} a quitté la conversation dans {1} {2}" @@ -30961,6 +31202,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} est obligatoire" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30982,7 +31227,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} n'est pas un DocType valide pour Dynamic Link" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} n’est pas une Adresse Email valide" @@ -30990,11 +31235,11 @@ msgstr "{0} n’est pas une Adresse Email valide" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} n'est pas un nom valide" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} n'est pas un numéro de téléphone valide" @@ -31002,15 +31247,15 @@ msgstr "{0} n'est pas un numéro de téléphone valide" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit être l'un des {1} suivants" @@ -31034,7 +31279,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} est maintenant le format d'impression par défaut pour le type de document {1}" @@ -31044,7 +31289,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} est nécessaire" @@ -31057,11 +31303,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} articles sélectionnés" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31094,23 +31340,23 @@ msgstr "Il y a {0} minutes" msgid "{0} months ago" msgstr "Il y a {0} mois" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} doit être après {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} doit être l'un des {1}" @@ -31122,7 +31368,7 @@ msgstr "{0} doit être défini en premier" msgid "{0} must be unique" msgstr "{0} doit être unique" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31151,16 +31397,12 @@ msgstr "{0} sur {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} sur {1} ({2} lignes avec des enfants)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} ou {1}" @@ -31197,11 +31439,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} enregistré avec succès" @@ -31243,7 +31485,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "{0} abonnés ajoutés" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} pour arrêter de recevoir des emails de ce type" @@ -31313,11 +31555,11 @@ msgstr "{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusio msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} est lié aux documents validés suivants: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} introuvable" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: l'enregistrement validé ne peut pas être supprimé. Vous devez d'abord {2} l'annuler {3}." @@ -31430,7 +31672,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} est passé au statut {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} contre {2}" @@ -31466,11 +31708,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi msgid "{} Complete" msgstr "{} Achevée" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31492,7 +31734,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} n'est pas une chaîne de date valide." diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po index b3911f912b..c2b6fa5778 100644 --- a/frappe/locale/hr.po +++ b/frappe/locale/hr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}" msgid "'Recipients' not specified" msgstr "'Primatelji' nisu navedeni" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" @@ -141,7 +141,7 @@ msgstr "1 Dan" msgid "1 Google Calendar Event synced." msgstr "Sinkroniziran je 1 događaj Google Kalendara." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Izvješće" @@ -149,7 +149,7 @@ msgstr "1 Izvješće" msgid "1 comment" msgstr "1 komentar" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "prije 1 dan" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -180,37 +180,37 @@ msgstr "1 od 2" msgid "1 record will be exported" msgstr "Izvest će se 1 zapis" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "prije 1 tjedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "prije 2 tjedna" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -226,7 +226,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "prije 5 dana" @@ -708,11 +708,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Zdravo," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Izvješća & Pristup" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Upozorenje: Ovo polje generira sustav i može biti prebrisano budućim ažuriranjem. Promijenite ga koristeći {0} umjesto toga." @@ -739,6 +734,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, brojeva, razmaka, podvlaka i crtica" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "Instanca Sustava može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri." + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Istaknuta objava mora imati naslovnu sliku" @@ -773,6 +773,15 @@ msgstr "Simbol za ovu valutu. Za npr. $" msgid "A template already exists for field {0} of {1}" msgstr "Predložak već postoji za polje {0} od {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "Niz identifikatora verzije za klijentski softver.\n" +"
\n" +"Vrijednost treba promijeniti pri svakom ažuriranju klijentskog softvera s istim ID softvera." + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Riječ samu po sebi lako je pogoditi." @@ -881,7 +890,7 @@ msgstr "API Ključ se ne može regenerirati" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "API Logging" -msgstr "" +msgstr "Zapisivanje API-ja" #. Label of the api_method (Data) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -891,7 +900,7 @@ msgstr "API Metoda" #. Name of a DocType #: frappe/core/doctype/api_request_log/api_request_log.json msgid "API Request Log" -msgstr "" +msgstr "Zapisnik API zahtjeva" #. Label of the api_secret (Password) field in DocType 'User' #. Label of the api_secret (Password) field in DocType 'Email Account' @@ -1002,7 +1011,7 @@ msgstr "Korisnik Knjigovodstva" #: frappe/public/js/frappe/form/dashboard.js:510 msgid "Accurate count can not be fetched, click here to view all documents" -msgstr "" +msgstr "Točan broj nije moguće preuzeti, kliknite ovdje za pregled svih dokumenata" #. Label of the action (Select) field in DocType 'Amended Document Naming #. Settings' @@ -1017,7 +1026,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1034,7 +1042,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1083,10 +1091,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Radnje" @@ -1148,8 +1156,8 @@ msgstr "Zapisnik Aktivnosti" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Dodaj" @@ -1166,7 +1174,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj Novo Pravilo" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj Prilog" @@ -1190,7 +1198,7 @@ msgstr "Dodaj Obrub na Vrh" msgid "Add Card to Dashboard" msgstr "Dodaj Karticu na Nadzornu Ploču" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Dodaj Grafikon na Nadzornu Ploču" @@ -1199,8 +1207,8 @@ msgid "Add Child" msgstr "Dodaj Podređeni" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1236,7 +1244,7 @@ msgid "Add Gray Background" msgstr "Dodaj Sivu Pozadinu" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Dodaj Grupu" @@ -1261,7 +1269,7 @@ msgstr "Dodajte Sudionike" msgid "Add Query Parameters" msgstr "Dodaj Parametre Upita" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Dodaj Uloge" @@ -1271,7 +1279,7 @@ msgstr "Dodaj Red" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Dodaj Potpis" @@ -1294,12 +1302,12 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Dodaj Predložak" @@ -1406,7 +1414,7 @@ msgid "Add tab" msgstr "Dodaj karticu" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Dodaj na Nadzornu Ploču" @@ -1561,11 +1569,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1648,7 +1656,7 @@ msgstr "Nakon Podnošenja" #: frappe/desk/doctype/number_card/number_card.py:62 msgid "Aggregate Field is required to create a number card" -msgstr "" +msgstr "Agregatno Polje je obavezno za kreiranje kartice sa brojevima" #. Label of the aggregate_function_based_on (Select) field in DocType #. 'Dashboard Chart' @@ -1657,11 +1665,11 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Aggregate Function Based On" -msgstr "" +msgstr "Agregatna Funkcija na osnovu" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 msgid "Aggregate Function field is required to create a dashboard chart" -msgstr "" +msgstr "Polje agregatne funkcije potrebno je za izradu grafikona nadzorne ploče" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -1671,7 +1679,15 @@ msgstr "Upozorenje" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Alerts and Notifications" -msgstr "" +msgstr "Upozorenja i Obavještenja" + +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias ne može biti SQL ključna riječ: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Alias mora biti niz" #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' @@ -1713,7 +1729,6 @@ msgstr "Poravnaj Vrijednost" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1729,7 +1744,7 @@ msgstr "Cijeli Dan" #: frappe/website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" -msgstr "" +msgstr "Sve slike priložene Dijaprojekciji Web Stranice trebaju biti javne" #: frappe/public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" @@ -1741,20 +1756,20 @@ msgstr "Svi Podnesci" #: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." -msgstr "" +msgstr "Sva prilagođavanja će biti uklonjena. Potvrdi." #: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." -msgstr "" +msgstr "Sva polja su neophodna za slanje komentara." #. Description of the 'Document States' (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" -msgstr "" +msgstr "Sva moguća stanja radnog toka i uloge radnog toka. Opcije statusa dokumenta: 0 je \"Spremljeno\", 1 je \"Podneseno\" i 2 je \"Otkazano\"" #: frappe/utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." -msgstr "" +msgstr "Velika slova gotovo je jednako lako pogoditi kao mala slova." #. Label of the allocated_to (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json @@ -1785,105 +1800,105 @@ msgstr "Dopusti Automatsko Ponavljanje" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow Bulk Edit" -msgstr "" +msgstr "Dozvoli Grupno Uređivanje" #. Label of the allow_edit (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow Bulk Editing" -msgstr "" +msgstr "Dozvoli Grupno Uređivanje" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Consecutive Login Attempts " -msgstr "" +msgstr "Broj Dozvoljnih Uzastopnih Pokušaje Prijave " #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" -msgstr "" +msgstr "Dozvoli Pristup Google Kalendaru" #: frappe/integrations/doctype/google_contacts/google_contacts.py:40 msgid "Allow Google Contacts Access" -msgstr "" +msgstr "Dozvoli Pristup Google Kontaktima" #. Label of the allow_guest (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" -msgstr "" +msgstr "Dopusti gostu" #. Label of the allow_guest_to_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Guest to View" -msgstr "" +msgstr "Dozvoli Gostu da Gleda" #. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Allow Guest to comment" -msgstr "" +msgstr "Dozvoli Gostu da Komentariše" #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Guests to Upload Files" -msgstr "" +msgstr "Dozvoli Gostima da Učitavaju Datoteke" #. Label of the allow_import (Check) field in DocType 'DocType' #. Label of the allow_import (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Import (via Data Import Tool)" -msgstr "" +msgstr "Dozvoli uvoz (putem alata za uvoz podataka)" #. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Login After Fail" -msgstr "" +msgstr "Dozvoli Prijavu Nakon Neuspjeha" #. Label of the allow_login_using_mobile_number (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Login using Mobile Number" -msgstr "" +msgstr "Dozvoli Prijavu Koristeći Broj Mobilnog Telefona" #. Label of the allow_login_using_user_name (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Login using User Name" -msgstr "" +msgstr "Dozvoli prijavu koristeći korisničko ime" #. Label of the sb_allow_modules (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow Modules" -msgstr "" +msgstr "Dozvoli Module" #. Label of the allow_older_web_view_links (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Older Web View Links (Insecure)" -msgstr "" +msgstr "Dozvoli Starije Veze za Web Pregled (Nesigurno)" #. Label of the allow_print_for_cancelled (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Cancelled" -msgstr "" +msgstr "Dozvoli Ispis za Otkazano" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' #: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" -msgstr "" +msgstr "Dozvoli Ispis za Nacrt" #. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web #. Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Allow Read On All Link Options" -msgstr "" +msgstr "Dozvoli Čitanje na Svim Opcijama Veze" #. Label of the allow_rename (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Rename" -msgstr "" +msgstr "Dozvoli Preimenovanje" #. Label of the roles_permission (Section Break) field in DocType 'Role #. Permission for Page and Report' @@ -1892,58 +1907,59 @@ msgstr "" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Allow Roles" -msgstr "" +msgstr "Dozvoli Uloge" #. Label of the allow_self_approval (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "" +msgstr "Dozvoli Samoodobrenje" #. Label of the enable_telemetry (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Sending Usage Data for Improving Applications" -msgstr "" +msgstr "Dozvoli Slanje Podataka o Upotrebi za Poboljšanje Aplikacija" #. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "" +msgstr "Dozvoli odobrenje za kreatora dokumenta" #. Label of the allow_comments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow comments" -msgstr "" +msgstr "Dozvoli komentare" #. Label of the allow_delete (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow delete" -msgstr "" +msgstr "Dozvoli brisanje" #. Label of the email_append_to (Check) field in DocType 'DocType' #. Label of the email_append_to (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow document creation via Email" -msgstr "" +msgstr "Dozvoli kreiranje dokumenta putem e-pošte" #. Label of the allow_edit (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow editing after submit" -msgstr "" +msgstr "Dozvoli uređivanje nakon podnošenja" #. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow editing even if the doctype has a workflow set up.\n\n" "Does nothing if a workflow isn't set up." -msgstr "" +msgstr "Dozvolite uređivanje čak i ako tip dokumenta ima postavljen tok posla.\n\n" +"Ne radi ništa ako tok posla nije postavljen." #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow events in timeline" -msgstr "" +msgstr "Dozvoli događaje na vremenskoj liniji" #. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' #. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' @@ -1953,17 +1969,17 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow in Quick Entry" -msgstr "" +msgstr "Dozvoli u Brzom Unosu" #. Label of the allow_incomplete (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow incomplete forms" -msgstr "" +msgstr "Dozvoli nepotpune obrasce" #. Label of the allow_multiple (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow multiple responses" -msgstr "" +msgstr "Dozvoli višestruke odgovore" #. Label of the allow_on_submit (Check) field in DocType 'DocField' #. Label of the allow_on_submit (Check) field in DocType 'Custom Field' @@ -1972,135 +1988,177 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow on Submit" -msgstr "" +msgstr "Dozvoli pri Podnošenju" #. Label of the deny_multiple_sessions (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow only one session per user" -msgstr "" +msgstr "Dozvoli samo jednu sesiju po korisniku" #. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow page break inside tables" -msgstr "" +msgstr "Dozvoli prijelom stranice unutar tabela" #. Label of the allow_print (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow print" -msgstr "" +msgstr "Dozvoli Ispis" #: frappe/desk/page/setup_wizard/setup_wizard.js:431 msgid "Allow recording my first session to improve user experience" -msgstr "" +msgstr "Dopusti snimanje moje prve sesije radi poboljšanja korisničkog iskustva" #. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "" +msgstr "Dozvoli spremanje ako nisu popunjena obavezna polja" #: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" -msgstr "" +msgstr "Dozvoli slanje podataka o korištenju za poboljšanje aplikacija" #. Description of the 'Login After' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only after this hour (0-24)" -msgstr "" +msgstr "Dozvoli korisniku da se prijavi tek nakon ovog sata (0-24)" #. Description of the 'Login Before' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only before this hour (0-24)" -msgstr "" +msgstr "Dozvoli korisniku da se prijavi samo prije ovog sata (0-24)" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow users to log in without a password, using a login link sent to their email" -msgstr "" +msgstr "Dozvolite korisnicima da se prijave bez lozinke, koristeći link za prijavu poslat na njihovu e-poštu" #. Label of the allowed (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allowed" -msgstr "" +msgstr "Dozvoljeno" #. Label of the allowed_file_extensions (Small Text) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allowed File Extensions" -msgstr "" +msgstr "Dozvoljene Ekstenzije Datoteka" #. Label of the allowed_in_mentions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "" +msgstr "Dozvoljeno u Spominjanju" #. Label of the allowed_modules_section (Section Break) field in DocType 'User #. Type' #: frappe/core/doctype/user_type/user_type.json msgid "Allowed Modules" -msgstr "" +msgstr "Dozvoljeni Moduli" + +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Dopušteni javni klijentski izvori" #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Allowed Roles" -msgstr "" +msgstr "Dozvoljene Uloge" #. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allowed embedding domains" -msgstr "" +msgstr "Dozvoljeno ugrađivanje domena" #: frappe/public/js/frappe/form/form.js:1256 msgid "Allowing DocType, DocType. Be careful!" -msgstr "" +msgstr "Dopuštanje DocType, DocType. Budite pažljivi!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-authorization-server. Referenca: RFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Omogućava klijentima da preuzmu metapodatke sa krajnje tačke /.well-known/oauth-protected-resource. Referenca: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Omogućava klijentima da se registruju bez ručne intervencije. Registracija kreira OAuth Client unos. Referenca: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Omogućava klijentima da ovo vide kao autorizacijski server prilikom upita krajnjoj tački /.well-known/oauth-protected-resource." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na društvene mreže kao servera za autorizaciju." + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "Omogućuje preskakanje autorizacije ako korisnik ima aktivne tokene." + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" -msgstr "" +msgstr "Već Registrovan" #: frappe/desk/form/assign_to.py:137 msgid "Already in the following Users ToDo list:{0}" -msgstr "" +msgstr "Već na sljedećoj ToDo listi Korisnika:{0}" #: frappe/public/js/frappe/views/reports/report_view.js:902 msgid "Also adding the dependent currency field {0}" -msgstr "" +msgstr "Takođe se dodaje polje zavisne valute {0}" #: frappe/public/js/frappe/views/reports/report_view.js:915 msgid "Also adding the status dependency field {0}" -msgstr "" +msgstr "Takođe se dodaje polje statusne zavisnosti {0}" #. Label of the login_id (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" -msgstr "" +msgstr "Alternativni ID e-pošte" #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" -msgstr "" +msgstr "Uvijek Tajna Kopija Adresa" #. Label of the add_draft_heading (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "" +msgstr "Uvijek dodajte naziv \"Nacrt\" za ispisivanje nacrta dokumenata" #. Label of the always_use_account_email_id_as_sender (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" -msgstr "" +msgstr "Uvijek koristite ovu adresu e-pošte kao adresu pošiljaoca" #. Label of the always_use_account_name_as_sender_name (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" -msgstr "" +msgstr "Uvijek koristite ovo ime kao ime pošiljaoca" #. Label of the amend (Check) field in DocType 'Custom DocPerm' #. Label of the amend (Check) field in DocType 'DocPerm' @@ -2109,7 +2167,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Amend" -msgstr "" +msgstr "Izmijeni" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -2118,18 +2176,18 @@ msgstr "" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" -msgstr "" +msgstr "Izmjeni Broj Imenovanja Sekvense" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" -msgstr "" +msgstr "Izmijenjene postavke imenovanja dokumenata" #. Label of the amended_documents_section (Section Break) field in DocType #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" -msgstr "" +msgstr "Izmijenjeni Dokumenti" #. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download @@ -2137,94 +2195,94 @@ msgstr "" #: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" -msgstr "" +msgstr "Izmijenjeno od" #: frappe/public/js/frappe/form/save.js:12 msgctxt "Freeze message while amending a document" msgid "Amending" -msgstr "" +msgstr "Izmjena" #. Label of the amend_naming_override (Table) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "" +msgstr "Zaobiđi izmjenu Imenovanja" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" -msgstr "" +msgstr "Izmjena nije Dozvoljena" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." -msgstr "" +msgstr "Pravila Izmjene Imenovanje ažurirana" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" -msgstr "" +msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr "" +msgstr "Datoteka ikone s nastavkom .ico. Trebala bi biti 16 x 16 px. Generirano pomoću generatora favicona. [favicon-generator.org]" #: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." -msgstr "" +msgstr "Došlo je do neočekivane greške prilikom autorizacije {}." #. Label of the analytics_section (Section Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "" +msgstr "Analitika" #: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" -msgstr "" +msgstr "Porijeklom od" #. Label of the announcement_widget (Text Editor) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcement Widget" -msgstr "" +msgstr "Vidžet Obavjesti" #. Label of the announcements_section (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcements" -msgstr "" +msgstr "Obavijesti" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Annual" -msgstr "" +msgstr "Godišnji" #. Label of the anonymization_matrix (Code) field in DocType 'Personal Data #. Deletion Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Anonymization Matrix" -msgstr "" +msgstr "Anonimizacijska Matrica" #. Label of the anonymous (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Anonymous responses" -msgstr "" +msgstr "Anonimni odgovori" #: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." -msgstr "" +msgstr "Druga transakcija blokira ovu. Pokušaj ponovo za nekoliko sekundi." #: frappe/model/rename_doc.py:379 msgid "Another {0} with name {1} exists, select another name" -msgstr "" +msgstr "Drugi {0} s imenom {1} postoji, odaberi drugo ime" #. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." -msgstr "" +msgstr "Mogu se koristiti bilo koji jezici pisača zasnovani na stringovima. Ispis neobrađenih naredbi zahtijeva poznavanje izvornog jezika pisača koji obezbjeđuje proizvođač pisača. Molimo pogledajte priručnik za programere koji ste dobili od proizvođača pisača o tome kako napisati svoje izvorne komande. Ove komande se prikazuju na strani servera koristeći Jinja Template Language." #: frappe/core/page/permission_manager/permission_manager_help.html:36 msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." -msgstr "" +msgstr "Osim Upravitelja Sistema, uloge s pravom Postavi korisničke dozvole mogu postaviti dozvole za druge korisnike za taj tip dokumenta." #. Label of the app_tab (Tab Break) field in DocType 'System Settings' #. Label of the app_section (Section Break) field in DocType 'User' @@ -2237,48 +2295,41 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "App" -msgstr "" - -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" +msgstr "Aplikacija" #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" -msgstr "" +msgstr "ID Aplikacije" #. Label of the app_logo (Attach Image) field in DocType 'Website Settings' #: frappe/public/js/frappe/ui/toolbar/navbar.html:8 #: frappe/website/doctype/website_settings/website_settings.json msgid "App Logo" -msgstr "" +msgstr "Logotip aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" -msgstr "" +msgstr "Naziv Aplikacije" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Naziv Aplikacije (Ime Klijenta)" #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" -msgstr "" +msgstr "Aplikacija nije pronađena za modul: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" -msgstr "" +msgstr "Aplikacija {0} nije instalirana" #. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email #. Account' @@ -2287,95 +2338,95 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Append Emails to Sent Folder" -msgstr "" +msgstr "Dodaj e-poštu u Mapu Poslano" #. Label of the append_to (Link) field in DocType 'Email Account' #. Label of the append_to (Link) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "Append To" -msgstr "" +msgstr "E-pošta za" #: frappe/email/doctype/email_account/email_account.py:202 msgid "Append To can be one of {0}" -msgstr "" +msgstr "Dodati u može biti jedan od {0}" #. Description of the 'Append To' (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." -msgstr "" +msgstr "Dodati kao konverzaciju ovom DocType-u (mora imati polja: \"Pošiljalac\" i \"Predmet\"). Ova polja se mogu definirati u sekciji postavki e-pošte dodanog tipa dokumenta." #: frappe/core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" -msgstr "" +msgstr "Primjenjivi Tipovi Dokumenata" #. Label of the applicable_for (Link) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Applicable For" -msgstr "" +msgstr "Primjenjivo za" #. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' #. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Application Logo" -msgstr "" +msgstr "Logotip Aplikacije" #. Label of the app_name (Data) field in DocType 'Installed Application' #. Label of the app_name (Data) field in DocType 'System Settings' #: frappe/core/doctype/installed_application/installed_application.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Application Name" -msgstr "" +msgstr "Naziv Aplikacije" #. Label of the app_version (Data) field in DocType 'Installed Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Application Version" -msgstr "" +msgstr "Verzija Aplikacije" #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" -msgstr "" +msgstr "Primijenjeno na" #: frappe/public/js/form_builder/components/Field.vue:103 msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" -msgstr "" +msgstr "Primijeni Pravilo Dodjele" #: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" -msgstr "" +msgstr "Primjeni filter" #. Label of the apply_strict_user_permissions (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Apply Strict User Permissions" -msgstr "" +msgstr "Primijeni Striktne Korisničke Dozvole" #. Label of the view (Select) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Apply To" -msgstr "" +msgstr "Primijeni na" #. Label of the apply_to_all_doctypes (Check) field in DocType 'User #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "" +msgstr "Primijeni na sve Tipove Dokumenata" #. Label of the apply_user_permission_on (Link) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" -msgstr "" +msgstr "Primijeni Korisničku Dozvolu na" #. Label of the apply_document_permissions (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Apply document permissions" -msgstr "" +msgstr "Primijeni Dokument Dozvole" #. Description of the 'If user is the owner' (Check) field in DocType 'Custom #. DocPerm' @@ -2383,202 +2434,198 @@ msgstr "" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Apply this rule if the User is the Owner" -msgstr "" +msgstr "Primijenite ovo pravilo ako je Korisnik Vlasnik" #: frappe/core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" -msgstr "" +msgstr "Primijeni na sve Tipove Dokumenata" #: frappe/model/workflow.py:266 msgid "Applying: {0}" -msgstr "" +msgstr "Primjenjuje se: {0}" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" -msgstr "" +msgstr "Obavezno Odobrenje" #. Label of a standard navbar item #. Type: Route #: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 #: frappe/website/js/website.js:619 frappe/www/me.html:80 msgid "Apps" -msgstr "" +msgstr "Aplikacije" #: frappe/public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" -msgstr "" +msgstr "Ar" #: frappe/public/js/frappe/views/kanban/kanban_column.html:14 msgid "Archive" -msgstr "" +msgstr "Arhiva" #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Archived" -msgstr "" +msgstr "Arhivirano" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 msgid "Archived Columns" -msgstr "" +msgstr "Arhivirane Kolone" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati zadatke?" #: frappe/public/js/frappe/form/grid.js:294 msgid "Are you sure you want to delete all rows?" -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati sve redove?" #: frappe/public/js/frappe/form/controls/attach.js:38 #: frappe/public/js/frappe/form/sidebar/attachments.js:135 msgid "Are you sure you want to delete the attachment?" -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati prilog?" #: frappe/public/js/form_builder/components/Section.vue:197 msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati kolonu? Sva polja u koloni će biti premještena u prethodnu kolonu." #: frappe/public/js/form_builder/components/Section.vue:126 msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati odjeljak? Sve kolone zajedno sa poljima u sekciji biće premještene u prethodni odjeljak." #: frappe/public/js/form_builder/components/Tabs.vue:65 msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." -msgstr "" +msgstr "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s poljima na kartici bit će premješteni na prethodnu karticu." #: frappe/public/js/frappe/web_form/web_form.js:185 msgid "Are you sure you want to discard the changes?" -msgstr "" +msgstr "Jeste li sigurni da želite odbaciti promjene?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" -msgstr "" +msgstr "Jeste li sigurni da želite generisati novi izvještaj?" #: frappe/public/js/frappe/form/toolbar.js:120 msgid "Are you sure you want to merge {0} with {1}?" -msgstr "" +msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" #: frappe/public/js/frappe/views/kanban/kanban_view.js:108 msgid "Are you sure you want to proceed?" -msgstr "" +msgstr "Jeste li sigurni da želite nastaviti?" #: frappe/core/doctype/rq_job/rq_job_list.js:25 msgid "Are you sure you want to re-enable scheduler?" -msgstr "" +msgstr "Jeste li sigurni da želite ponovo omogućiti raspoređivač?" #: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" -msgstr "" +msgstr "Jeste li sigurni da želite ponovo povezati ovu konverzaciju sa {0}?" #: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" -msgstr "" +msgstr "Jeste li sigurni da želite ukloniti sve neuspjele poslove?" #: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" -msgstr "" +msgstr "Jeste li sigurni da želite ukloniti filter {0} ?" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" -msgstr "" +msgstr "Jeste li sigurni da želite poništiti sve prilagodbe?" #: frappe/workflow/doctype/workflow/workflow.js:125 msgid "Are you sure you want to save this document?" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" +msgstr "Jeste li sigurni da želite spremiti ovaj dokument?" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" -msgstr "" +msgstr "Da li ste sigurni?" #. Label of the arguments (Code) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Arguments" -msgstr "" +msgstr "Argumenti" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "" +msgstr "Arial" #: frappe/core/page/permission_manager/permission_manager_help.html:11 msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." -msgstr "" +msgstr "Kao najbolja praksa, nemojte dodijeliti isti skup pravila dozvola različitim ulogama. Umjesto toga, postavite više uloga za istog korisnika." #: frappe/desk/form/assign_to.py:107 msgid "As document sharing is disabled, please give them the required permissions before assigning." -msgstr "" +msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozvole prije dodjele." #: frappe/templates/emails/account_deletion_notification.html:3 msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" -msgstr "" +msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" -msgstr "" +msgstr "Dodijeli Uslov" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" -msgstr "" +msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" -msgstr "" +msgstr "Dodijeli" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" -msgstr "" +msgstr "Dodijeli Korisničkoj Grupi" #. Label of the assign_to_users_section (Section Break) field in DocType #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign To Users" -msgstr "" +msgstr "Dodijeli Korisnicima" #: frappe/public/js/frappe/form/sidebar/assign_to.js:260 msgid "Assign a user" -msgstr "" +msgstr "Dodijeli Korisnika" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" -msgstr "" +msgstr "Dodijeli redom jedan po jedan " #: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" -msgstr "" +msgstr "Dodijeli meni" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" -msgstr "" +msgstr "Dodijelite onome ko ima najmanje zadataka" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" -msgstr "" +msgstr "Dodijeli skupu korisnika u ovom polju" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assigned" -msgstr "" +msgstr "Dodijeljeno" #. Label of the assigned_by (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 msgid "Assigned By" -msgstr "" +msgstr "Dodijelio" #. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Assigned By Full Name" -msgstr "" +msgstr "Dodijelio" #: frappe/model/meta.py:62 #: frappe/public/js/frappe/form/templates/form_sidebar.html:49 @@ -2587,31 +2634,31 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:136 #: frappe/public/js/frappe/views/interaction.js:82 msgid "Assigned To" -msgstr "" +msgstr "Dodijeljeno" #: frappe/desk/report/todo/todo.py:40 msgid "Assigned To/Owner" -msgstr "" +msgstr "Dodijeljeno/Odgovorni" #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." -msgstr "" +msgstr "Dodjeljuje se..." #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "" +msgstr "Dodjela" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "" +msgstr "Zadatak je Završen" #. Label of the sb (Section Break) field in DocType 'Assignment Rule' #. Label of the assignment_days (Table) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Days" -msgstr "" +msgstr "Dana dodijeljeno" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -2621,58 +2668,58 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json msgid "Assignment Rule" -msgstr "" +msgstr "Pravilo Dodjele" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json msgid "Assignment Rule Day" -msgstr "" +msgstr "Dan Dodjele Pravila" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" -msgstr "" +msgstr "Korisnik Dodjele Pravila" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 msgid "Assignment Rule is not allowed on document type {0}" -msgstr "" +msgstr "Pravilo Dodjele nije dozvoljeno na {0} tipu dokumenta" #. Label of the assignment_rules_section (Section Break) field in DocType #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Rules" -msgstr "" +msgstr "Pravila Dodjele" #: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" -msgstr "" +msgstr "Ažuriranje Dodjele {0}" #: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" -msgstr "" +msgstr "Dodjela za {0} {1}" #: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" -msgstr "" +msgstr "Dodjela {0} je uklonjena od strane {1}" #. Label of the enable_email_assignment (Check) field in DocType 'Notification #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:255 msgid "Assignments" -msgstr "" +msgstr "Dodjele" #: frappe/public/js/frappe/form/grid_row.js:680 msgid "At least one column is required to show in the grid." -msgstr "" +msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži." #: frappe/website/doctype/web_form/web_form.js:73 msgid "At least one field is required in Web Form Fields Table" -msgstr "" +msgstr "Najmanje jedno polje je obavezno u tabeli sa poljima veb obrasca" #: frappe/core/doctype/data_export/data_export.js:44 msgid "At least one field of Parent Document Type is mandatory" -msgstr "" +msgstr "Barem jedno polje vrste nadređenog dokumenta je obavezno" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -2685,11 +2732,11 @@ msgstr "" #: frappe/public/js/frappe/form/controls/attach.js:5 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" -msgstr "" +msgstr "Priloži" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" -msgstr "" +msgstr "Priloži Ispis Dokumenta" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -2702,125 +2749,115 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Attach Image" -msgstr "" +msgstr "Priloži Sliku" #. Label of the attach_package (Attach) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json msgid "Attach Package" -msgstr "" +msgstr "Priloži Applikaciju" #. Label of the attach_print (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "" +msgstr "Priloži Ispis" #: frappe/public/js/frappe/file_uploader/WebLink.vue:10 msgid "Attach a web link" -msgstr "" +msgstr "Priloži Web Vezu" #: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." -msgstr "" +msgstr "Priloži datoteke / url i dodaj u tabelu." #. Label of the attached_file (Code) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Attached File" -msgstr "" +msgstr "Priložena Datoteka" #. Label of the attached_to_doctype (Link) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To DocType" -msgstr "" +msgstr "U Prilogu DocType" #. Label of the attached_to_field (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "" +msgstr "U Prilogu Polja" #. Label of the attached_to_name (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "" +msgstr "Priloženo Imenu" #: frappe/core/doctype/file/file.py:142 msgid "Attached To Name must be a string or an integer" -msgstr "" +msgstr "Priloženo Imenu mora biti niz ili cijeli broj" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" -msgstr "" +msgstr "Prilog" #. Label of the attachment_limit (Int) field in DocType 'Email Account' #. Label of the attachment_limit (Int) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Attachment Limit (MB)" -msgstr "" +msgstr "Ograničenje Priloga (MB)" #: frappe/core/doctype/file/file.py:324 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" -msgstr "" +msgstr "Dostignuto Ograničenje Priloga" #. Label of the attachment_link (HTML) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Attachment Link" -msgstr "" +msgstr "Veza Priloga" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "" +msgstr "Prilog Uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" -msgstr "" +msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." -msgstr "" +msgstr "Pokušaj povezivanja na QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." -msgstr "" +msgstr "Pokušaj pokretanja QZ Tray..." #: frappe/www/attribution.html:9 msgid "Attribution" -msgstr "" - -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" +msgstr "Pripisivanje" #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" -msgstr "" +msgstr "Revidiraj Sistemske Kuke (hooks)" #. Name of a DocType #: frappe/core/doctype/audit_trail/audit_trail.json msgid "Audit Trail" -msgstr "" +msgstr "Revizijski Trag" #. Label of the auth_url_data (Code) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Auth URL Data" -msgstr "" +msgstr "Auth URL Podaci" #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" -msgstr "" +msgstr "Autentifikujte se kao Osnovni Servis" #. Label of the authentication_column (Section Break) field in DocType 'Email #. Account' @@ -2831,20 +2868,25 @@ msgstr "" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Authentication" -msgstr "" +msgstr "Autentifikacija" #: frappe/www/qrcode.html:19 msgid "Authentication Apps you can use are: " -msgstr "" +msgstr "Aplikacije Autentifikaciju koje možete koristiti su: " #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." -msgstr "" +msgstr "Autentifikacija nije uspjela prilikom primanja e-pošte sa naloga e-pošte: {0}." #. Label of the author (Data) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Author" -msgstr "" +msgstr "Autor" + +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Autorizacija" #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' @@ -2858,77 +2900,77 @@ msgstr "" #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Authorization Code" -msgstr "" +msgstr "Autorizacijski Kod" #. Label of the authorization_uri (Small Text) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Authorization URI" -msgstr "" +msgstr "URI Autorizacije" #: frappe/templates/includes/oauth_confirmation.html:35 msgid "Authorization error for {}." -msgstr "" +msgstr "Greška Autorizacije za {}." #. Label of the authorize_api_access (Button) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authorize API Access" -msgstr "" +msgstr "Autoriziraj Pristup API-ju" #. Label of the authorize_api_indexing_access (Button) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Authorize API Indexing Access" -msgstr "" +msgstr "Autorizirajte pristup API indeksiranju" #. Label of the authorize_google_calendar_access (Button) field in DocType #. 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Authorize Google Calendar Access" -msgstr "" +msgstr "Autoriziraj pristup Google kalendaru" #. Label of the authorize_google_contacts_access (Button) field in DocType #. 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Authorize Google Contacts Access" -msgstr "" +msgstr "Autoriziraj pristup Google kontaktima" #. Label of the authorize_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Authorize URL" -msgstr "" +msgstr "Autoriziraj URL" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Authorized" -msgstr "" +msgstr "Autoriziran" #: frappe/www/attribution.html:20 msgid "Authors" -msgstr "" +msgstr "Autori" #: frappe/www/attribution.html:37 msgid "Authors / Maintainers" -msgstr "" +msgstr "Autori / Održavatelji" #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Auto" -msgstr "" +msgstr "Automatski" #. Label of a Link in the Tools Workspace #. Name of a DocType #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Auto Email Report" -msgstr "" +msgstr "Automatski Izvještaj e-poštom" #. Label of the autoname (Data) field in DocType 'DocType' #. Label of the autoname (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Auto Name" -msgstr "" +msgstr "Automatsko Imenovanje" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -2936,76 +2978,76 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/public/js/frappe/utils/common.js:442 msgid "Auto Repeat" -msgstr "" +msgstr "Automatsko Ponavljanje" #. Name of a DocType #: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json msgid "Auto Repeat Day" -msgstr "" +msgstr "Dan Automatskog Ponavljanja" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 msgid "Auto Repeat Day{0} {1} has been repeated." -msgstr "" +msgstr "Dan Automatskog Ponavljanja{0} {1} je ponovljen." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 msgid "Auto Repeat Document Creation Failed" -msgstr "" +msgstr "Automatsko Ponavljanje Kreiranja Dokumenta Neuspješno" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 msgid "Auto Repeat Schedule" -msgstr "" +msgstr "Raspored Automatskog Ponavljanja" #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" -msgstr "" +msgstr "Automatsko Ponavljanje kreirano za ovaj dokument" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 msgid "Auto Repeat failed for {0}" -msgstr "" +msgstr "Automatsko Ponavljanje neuspješno za {0}" #. Label of the auto_reply (Section Break) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply" -msgstr "" +msgstr "Automatski Odgovor" #. Label of the auto_reply_message (Text Editor) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply Message" -msgstr "" +msgstr "Poruka Automatskog Odgovora" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 msgid "Auto assignment failed: {0}" -msgstr "" +msgstr "Automatsko dodjeljivanje neuspješno: {0}" #. Label of the follow_assigned_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that are assigned to you" -msgstr "" +msgstr "Automatsko praćenje dokumenata koji su vam dodijeljeni" #. Label of the follow_shared_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that are shared with you" -msgstr "" +msgstr "Automatsko praćenje dokumenata koji se dijele sa vama" #. Label of the follow_liked_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you Like" -msgstr "" +msgstr "Automatsko praćenje dokumenata koji vam se sviđaju" #. Label of the follow_commented_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you comment on" -msgstr "" +msgstr "Automatsko praćenje dokumenata koje komentarišete" #. Label of the follow_created_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you create" -msgstr "" +msgstr "Automatsko praćenje dokumenata koje kreirate" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." -msgstr "" +msgstr "Automatsko ponavljanje nije uspjelo. Omogući automatsko ponavljanje nakon rješavanja problema." #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -3014,42 +3056,42 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Autocomplete" -msgstr "" +msgstr "Automatsko Dovršavanje" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Autoincrement" -msgstr "" +msgstr "Automatsko Povećanje" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Automate processes and extend standard functionality using scripts and background jobs" -msgstr "" +msgstr "Automatizirajte procese i proširite standardnu funkcionalnost koristeći skripte i pozadinske poslove" #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Automated Message" -msgstr "" +msgstr "Automatska Poruka" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json #: frappe/public/js/frappe/ui/theme_switcher.js:69 msgid "Automatic" -msgstr "" +msgstr "Automatsko" #: frappe/email/doctype/email_account/email_account.py:772 msgid "Automatic Linking can be activated only for one Email Account." -msgstr "" +msgstr "Automatsko povezivanje se može aktivirati samo za jedan nalog e-pošte." #: frappe/email/doctype/email_account/email_account.py:766 msgid "Automatic Linking can be activated only if Incoming is enabled." -msgstr "" +msgstr "Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazno." #. Description of a DocType #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Automatically Assign Documents to Users" -msgstr "" +msgstr "Automatski dodijeli dokumente korisnicima" #: frappe/public/js/frappe/list/list_view.js:128 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." @@ -3058,17 +3100,17 @@ msgstr "Automatski primijenjen filtar za nedavne podatke. Ovo ponašanje možete #. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Automatically delete account within (hours)" -msgstr "" +msgstr "Automatski obrišite račun u roku od (sati)" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Automation" -msgstr "" +msgstr "Automatizacija" #. Label of the avatar (Attach Image) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Avatar" -msgstr "" +msgstr "Avatar" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' @@ -3078,134 +3120,134 @@ msgstr "" #: frappe/public/js/frappe/form/controls/password.js:88 #: frappe/public/js/frappe/ui/group_by/group_by.js:21 msgid "Average" -msgstr "" +msgstr "Prosjek" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" -msgstr "" +msgstr "Prosjek {0}" #: frappe/utils/password_strength.py:130 msgid "Avoid dates and years that are associated with you." -msgstr "" +msgstr "Izbjegavajte datume i godine koji su povezani s vama." #: frappe/utils/password_strength.py:124 msgid "Avoid recent years." -msgstr "" +msgstr "Izbjegavajte posljednje godine." #: frappe/utils/password_strength.py:117 msgid "Avoid sequences like abc or 6543 as they are easy to guess" -msgstr "" +msgstr "Izbjegavajte nizove poput abc ili 6543 jer ih je lako pogoditi" #: frappe/utils/password_strength.py:124 msgid "Avoid years that are associated with you." -msgstr "" +msgstr "Izbjegavajte godine koje su povezane s vama." #. Label of the awaiting_password (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json msgid "Awaiting Password" -msgstr "" +msgstr "Čeka se Lozinka" #. Label of the awaiting_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Awaiting password" -msgstr "" +msgstr "Čeka se Lozinka" #: frappe/public/js/frappe/widgets/onboarding_widget.js:195 msgid "Awesome Work" -msgstr "" +msgstr "Sjajan posao" #: frappe/public/js/frappe/widgets/onboarding_widget.js:353 msgid "Awesome, now try making an entry yourself" -msgstr "" +msgstr "Sjajno, sada pokušajte sami napraviti unos" #: frappe/public/js/frappe/utils/number_systems.js:9 msgctxt "Number system" msgid "B" -msgstr "" +msgstr "M" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B0" -msgstr "" +msgstr "B0" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B1" -msgstr "" +msgstr "B1" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B10" -msgstr "" +msgstr "B10" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B2" -msgstr "" +msgstr "B2" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B3" -msgstr "" +msgstr "B3" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B4" -msgstr "" +msgstr "B4" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B5" -msgstr "" +msgstr "B5" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B6" -msgstr "" +msgstr "B6" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B7" -msgstr "" +msgstr "B7" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B8" -msgstr "" +msgstr "B8" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B9" -msgstr "" +msgstr "B9" #. Label of the bcc (Code) field in DocType 'Communication' #. Label of the bcc (Code) field in DocType 'Notification Recipient' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "BCC" -msgstr "" +msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "" +msgstr "BCC" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 msgid "Back" -msgstr "" +msgstr "Nazad" #: frappe/templates/pages/integrations/gcalendar-success.html:13 msgid "Back to Desk" -msgstr "" +msgstr "Nazad na Radnu Površinu" #: frappe/www/404.html:26 msgid "Back to Home" -msgstr "" +msgstr "Povratak na Početnu" #: frappe/www/login.html:201 frappe/www/login.html:232 msgid "Back to Login" -msgstr "" +msgstr "Nazad na Prijavu" #. Label of the background_color (Color) field in DocType 'Number Card' #. Label of the background_color (Color) field in DocType 'Social Link @@ -3215,37 +3257,37 @@ msgstr "" #: frappe/website/doctype/social_link_settings/social_link_settings.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Background Color" -msgstr "" +msgstr "Boja Pozadine" #. Label of the background_image (Attach Image) field in DocType 'Web Page #. Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Background Image" -msgstr "" +msgstr "Pozadinska Slika" #. Label of a Link in the Build Workspace #. Label of the background_jobs_section (Section Break) field in DocType #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" -msgstr "" +msgstr "Poslovi u Pozadini" #. Label of the background_jobs_check (Data) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Jobs Check" -msgstr "" +msgstr "Provjera Pozadinskih Poslova" #. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Background Jobs Queue" -msgstr "" +msgstr "Red Čekanja Pozadinskih Poslova" #: frappe/public/js/frappe/list/bulk_operations.js:87 msgid "Background Print (required for >25 documents)" -msgstr "" +msgstr "Pozadinski Ispis (potrebno za >25 dokumenata)" #. Label of the background_workers (Section Break) field in DocType 'System #. Settings' @@ -3254,15 +3296,15 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Workers" -msgstr "" +msgstr "Pozadinski Radnici" #: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" -msgstr "" +msgstr "Sigurnosni Ključ Šifriranja" #: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" -msgstr "" +msgstr "Posao Sigurnosne Kopije je već u redu čekanja. Primit ćete e-poruku s linkom za preuzimanje" #. Label of the backups_tab (Tab Break) field in DocType 'System Settings' #. Label of the backups_section (Section Break) field in DocType 'System Health @@ -3270,53 +3312,53 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Backups" -msgstr "" +msgstr "Sigurnosne Kopije" #. Label of the backups_size (Float) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Backups (MB)" -msgstr "" +msgstr "Sigurnosne Kopije (MB)" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 msgid "Bad Cron Expression" -msgstr "" +msgstr "Pogrešan Cron Izraz" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding" -msgstr "" +msgstr "Bankarsko Zaokruživanje" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding (legacy)" -msgstr "" +msgstr "Bankarsko Zaokruživanje (zastarjelo)" #. Label of the banner (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner" -msgstr "" +msgstr "Baner" #. Label of the banner_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner HTML" -msgstr "" +msgstr "Baner HTML" #. Label of the banner_image (Attach Image) field in DocType 'User' #. Label of the banner_image (Attach Image) field in DocType 'Web Form' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/web_form/web_form.json msgid "Banner Image" -msgstr "" +msgstr "Slika Banera" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner is above the Top Menu Bar." -msgstr "" +msgstr "Baner je iznad Gornje Trake Menija." #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Bar" -msgstr "" +msgstr "Traka" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -3325,137 +3367,137 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Barcode" -msgstr "" +msgstr "Barkod" #. Label of the base_dn (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Base Distinguished Name (DN)" -msgstr "" +msgstr "Osnovni Prepoznatljiv Naziv (DN)" #. Label of the base_url (Data) field in DocType 'Geolocation Settings' #. Label of the base_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Base URL" -msgstr "" +msgstr "Osnovni URL" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json #: frappe/printing/page/print/print.js:273 #: frappe/printing/page/print/print.js:327 msgid "Based On" -msgstr "" +msgstr "Na Osnovu" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Based on Field" -msgstr "" +msgstr "Na Osnovu Polja" #. Label of the user (Link) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Based on Permissions For User" -msgstr "" +msgstr "Na Osnovu Dozvola za Korisnika" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Basic" -msgstr "" +msgstr "Osnovni" #. Label of the section_break_3 (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Basic Info" -msgstr "" +msgstr "Informacije" #: frappe/public/js/frappe/ui/filters/filter.js:63 #: frappe/public/js/frappe/ui/filters/filter.js:69 msgid "Before" -msgstr "" +msgstr "Prije" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Cancel" -msgstr "" +msgstr "Prije Otkazivanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Delete" -msgstr "" +msgstr "Prije Brisanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Discard" -msgstr "" +msgstr "Prije Odbacivanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Insert" -msgstr "" +msgstr "Prije Umetanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Print" -msgstr "" +msgstr "Prije Ispisa" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Rename" -msgstr "" +msgstr "Prije Preimenovanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Save" -msgstr "" +msgstr "Prije Spremanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Save (Submitted Document)" -msgstr "" +msgstr "Prije Spremanja (Podnesen Dokument)" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Submit" -msgstr "" +msgstr "Prije Podnošenja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Validate" -msgstr "" +msgstr "Prije Potvrde" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Beginner" -msgstr "" +msgstr "Početnik" #: frappe/public/js/frappe/form/link_selector.js:29 msgid "Beginning with" -msgstr "" +msgstr "Počinje sa" #. Label of the beta (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Beta" -msgstr "" +msgstr "Beta" #: frappe/utils/password_strength.py:73 msgid "Better add a few more letters or another word" -msgstr "" +msgstr "Bolje dodaj još nekoliko slova ili drugu riječ" #: frappe/public/js/frappe/ui/filters/filter.js:27 msgid "Between" -msgstr "" +msgstr "Između" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Billing" -msgstr "" +msgstr "Fakturisanje" #: frappe/public/js/frappe/form/templates/contact_list.html:27 msgid "Billing Contact" -msgstr "" +msgstr "Kontakt za Fakturiranje" #. Label of the binary_logging (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Binary Logging" -msgstr "" +msgstr "Binarno Zapisivanje" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' @@ -3464,33 +3506,33 @@ msgstr "" #: frappe/website/doctype/about_us_team_member/about_us_team_member.json #: frappe/website/doctype/blogger/blogger.json msgid "Bio" -msgstr "" +msgstr "Biografija" #. Label of the birth_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Birth Date" -msgstr "" +msgstr "Datum Rođenja" #: frappe/public/js/frappe/data_import/data_exporter.js:41 msgid "Blank Template" -msgstr "" +msgstr "Praznan Nacrt" #. Name of a DocType #: frappe/core/doctype/block_module/block_module.json msgid "Block Module" -msgstr "" +msgstr "Blok Modul" #. Label of the block_modules (Table) field in DocType 'Module Profile' #. Label of the block_modules (Table) field in DocType 'User' #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json msgid "Block Modules" -msgstr "" +msgstr "Blok Moduli" #. Label of the blocked (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Blocked" -msgstr "" +msgstr "Blokirano" #. Label of a Card Break in the Website Workspace #: frappe/website/doctype/blog_post/blog_post.py:245 @@ -3499,7 +3541,7 @@ msgstr "" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 #: frappe/website/workspace/website/website.json msgid "Blog" -msgstr "" +msgstr "Blog" #. Name of a DocType #. Label of the blog_category (Link) field in DocType 'Blog Post' @@ -3508,17 +3550,17 @@ msgstr "" #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/workspace/website/website.json msgid "Blog Category" -msgstr "" +msgstr "Kategorija Bloga" #. Label of the blog_intro (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Blog Intro" -msgstr "" +msgstr "Blog Uvod" #. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Introduction" -msgstr "" +msgstr "Blog Predstavljanje" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -3526,17 +3568,17 @@ msgstr "" #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/workspace/website/website.json msgid "Blog Post" -msgstr "" +msgstr "Blog Objava" #. Name of a DocType #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Settings" -msgstr "" +msgstr "Postavke bloga" #. Label of the blog_title (Data) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Title" -msgstr "" +msgstr "Naziv Bloga" #. Name of a role #. Label of the blogger (Link) field in DocType 'Blog Post' @@ -3548,14 +3590,14 @@ msgstr "" #: frappe/website/doctype/blogger/blogger.json #: frappe/website/workspace/website/website.json msgid "Blogger" -msgstr "" +msgstr "Bloger" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Blue" -msgstr "" +msgstr "Plavo" #. Label of the bold (Check) field in DocType 'DocField' #. Label of the bold (Check) field in DocType 'Custom Field' @@ -3564,27 +3606,27 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Bold" -msgstr "" +msgstr "Podebljano" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "" +msgstr "Bot" #: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" -msgstr "" +msgstr "Obavezni su i DocType i Naziv" #: frappe/templates/includes/login/login.js:24 #: frappe/templates/includes/login/login.js:96 msgid "Both login and password required" -msgstr "" +msgstr "Obaveznisu i Prijava i Lozinka" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 msgid "Bottom" -msgstr "" +msgstr "Dno" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -3592,13 +3634,13 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 msgid "Bottom Center" -msgstr "" +msgstr "Dno u Sredini" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 msgid "Bottom Left" -msgstr "" +msgstr "Dno Lijevo" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -3606,148 +3648,148 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 msgid "Bottom Right" -msgstr "" +msgstr "Dno Desno" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Bounced" -msgstr "" +msgstr "Odbijen" #. Label of the brand (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand" -msgstr "" +msgstr "Marka" #. Label of the brand_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand HTML" -msgstr "" +msgstr "HTML Marke" #. Label of the banner_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand Image" -msgstr "" +msgstr "Slika Marke" #. Label of the brand_logo (Attach Image) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Brand Logo" -msgstr "" +msgstr "Logo Marke" #. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" "has a transparent background and use the <img /> tag. Keep size as 200px x 30px" -msgstr "" +msgstr "Marka je ono što se pojavljuje u gornjem lijevom uglu alatne trake. Ako je slika, ima li prozirnu pozadinu i koristite <img /> oznaku. Neka veličina bude 200 px x 30 px" #. Label of the breadcrumbs (Code) field in DocType 'Web Form' #. Label of the breadcrumbs (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json msgid "Breadcrumbs" -msgstr "" +msgstr "Mrvice" #. Label of the browse_by_category (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Browse by category" -msgstr "" +msgstr "Pregledaj po Kategoriji" #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 msgid "Browser" -msgstr "" +msgstr "Pretraživač" #. Label of the browser_version (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Browser Version" -msgstr "" +msgstr "Verzija Pretražvača" #: frappe/public/js/frappe/desk.js:19 msgid "Browser not supported" -msgstr "" +msgstr "Pretraživač nije podržan" #. Label of the brute_force_security (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Brute Force Security" -msgstr "" +msgstr "Sigurnost Prijave" #. Label of the bufferpool_size (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Bufferpool Size" -msgstr "" +msgstr "Veličina međuspremnika" #. Name of a Workspace #: frappe/core/workspace/build/build.json msgid "Build" -msgstr "" +msgstr "Razvoj" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" -msgstr "" +msgstr "Napravite vlastite izvještaje, formate za ispisivanje i nadzorne ploče. Kreirajte personalizirane radne prostore za lakšu navigaciju" #: frappe/workflow/doctype/workflow/workflow_list.js:18 msgid "Build {0}" -msgstr "" +msgstr "+ {0}" #: frappe/templates/includes/footer/footer_powered.html:1 msgid "Built on {0}" -msgstr "" +msgstr "Razvij na {0}" #. Label of the bulk_actions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Bulk Actions" -msgstr "" +msgstr "Grupne Akcije" #: frappe/core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" -msgstr "" +msgstr "Grupno Brisanje" #: frappe/public/js/frappe/list/bulk_operations.js:321 msgid "Bulk Edit" -msgstr "" +msgstr "Grupno Uređivanje" #: frappe/public/js/frappe/form/grid.js:1188 msgid "Bulk Edit {0}" -msgstr "" +msgstr "Grupno uređivanje {0}" #: frappe/desk/reportview.py:602 msgid "Bulk Operation Failed" -msgstr "" +msgstr "Grupna operacija nije uspjela" #: frappe/desk/reportview.py:606 msgid "Bulk Operation Successful" -msgstr "" +msgstr "Grupna operacija uspješna" #: frappe/public/js/frappe/list/bulk_operations.js:131 msgid "Bulk PDF Export" -msgstr "" +msgstr "Masovni izvoz u PDF" #. Label of a Link in the Tools Workspace #. Name of a DocType #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Bulk Update" -msgstr "" +msgstr "Masovno Ažuriranje" #: frappe/model/workflow.py:254 msgid "Bulk approval only support up to 500 documents." -msgstr "" +msgstr "Grupno odobrenje podržava samo do 500 dokumenata." #: frappe/desk/doctype/bulk_update/bulk_update.py:56 msgid "Bulk operation is enqueued in background." -msgstr "" +msgstr "Grupna operacija je stavljena u red čekanja u pozadini." #: frappe/desk/doctype/bulk_update/bulk_update.py:68 msgid "Bulk operations only support up to 500 documents." -msgstr "" +msgstr "Grupne operacije podržavaju samo do 500 dokumenata." #: frappe/model/workflow.py:243 msgid "Bulk {0} is enqueued in background." -msgstr "" +msgstr "Grupni {0} je stavljen u red čekanja u pozadini." #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -3756,96 +3798,96 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Button" -msgstr "" +msgstr "Dugme" #. Label of the button_gradients (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Gradients" -msgstr "" +msgstr "Gradijenti Dugmeta" #. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Rounded Corners" -msgstr "" +msgstr "Zaobljeni Uglovi Dugmeta" #. Label of the button_shadows (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "" +msgstr "Sjene Dugmeta" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" -msgstr "" +msgstr "Prema Polju \"Imenovanje serije\"" #: frappe/website/doctype/web_page/web_page.js:111 #: frappe/website/doctype/web_page/web_page.js:118 msgid "By default the title is used as meta title, adding a value here will override it." -msgstr "" +msgstr "Prema standard postavkama naslov se koristi kao meta naslov, dodavanje vrijednosti ovdje će ga nadjačati." #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By fieldname" -msgstr "" +msgstr "Prema imenu polja" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By script" -msgstr "" +msgstr "Prema skripti" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'User' #: frappe/core/doctype/user/user.json msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" -msgstr "" +msgstr "Zaobiđi ograničenu provjeru IP adrese ako je omogućena potvrda s dva faktora" #. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "" +msgstr "Zaobiđi potvrde s dva faktora za korisnike koji se prijavljuju s ograničene IP adrese" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "" +msgstr "Zaobiđi provjere ograničene IP adrese ako je omogućena potvrda s dva faktora" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "C5E" -msgstr "" +msgstr "C5E" #: frappe/templates/print_formats/standard_macros.html:220 msgid "CANCELLED" -msgstr "" +msgstr "OTKAZANO" #. Label of the cc (Code) field in DocType 'Communication' #. Label of the cc (Code) field in DocType 'Notification Recipient' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "CC" -msgstr "" +msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "CC" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "CMD" -msgstr "" +msgstr "CMD" #: frappe/public/js/frappe/color_picker/color_picker.js:20 msgid "COLOR PICKER" -msgstr "" +msgstr "BIRAČ BOJA" #. Label of the css_section (Section Break) field in DocType 'Custom HTML #. Block' @@ -3855,49 +3897,49 @@ msgstr "" #: frappe/printing/doctype/print_style/print_style.json #: frappe/website/doctype/web_page/web_page.json msgid "CSS" -msgstr "" +msgstr "CSS" #. Label of the css_class (Small Text) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "CSS Class" -msgstr "" +msgstr "CSS klasa" #. Description of the 'Element Selector' (Data) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "CSS selector for the element you want to highlight." -msgstr "" +msgstr "CSS selektor za element koji želite da istaknete." #. Option for the 'File Type' (Select) field in DocType 'Data Export' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/core/doctype/data_export/data_export.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "CSV" -msgstr "" +msgstr "CSV" #. Label of the cta_label (Data) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA Label" -msgstr "" +msgstr "Oznaka Poziva na Akciju" #. Label of the cta_url (Data) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA URL" -msgstr "" +msgstr "URL Poziva na Akciju" #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Cache" -msgstr "" +msgstr "Gotovina" #: frappe/sessions.py:35 msgid "Cache Cleared" -msgstr "" +msgstr "Cache obrisan" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 msgid "Calculate" -msgstr "" +msgstr "Izračunaj" #. Label of a Link in the Tools Workspace #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' @@ -3906,112 +3948,110 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Calendar" -msgstr "" +msgstr "Kalendar" #. Label of the calendar_name (Data) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Calendar Name" -msgstr "" +msgstr "Naziv kalendara" #. Name of a DocType #: frappe/desk/doctype/calendar_view/calendar_view.json #: frappe/public/js/frappe/list/base_list.js:207 msgid "Calendar View" -msgstr "" +msgstr "Prikaz Kalendara" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/contacts/doctype/contact/contact.js:55 #: frappe/desk/doctype/event/event.json msgid "Call" -msgstr "" +msgstr "Poziv" #. Label of the call_to_action (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action" -msgstr "" +msgstr "Poziv na Akciju" #. Label of the call_to_action_url (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "" +msgstr "URL Poziva na Akciju" #. Label of the cta_section (Section Break) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Call to Action" -msgstr "" +msgstr "Poziv na Akciju" #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Message" -msgstr "" +msgstr "Poruka Povratnog Poziva" #. Label of the callback_title (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Title" -msgstr "" +msgstr "Naziv Povratnog Poziva" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 #: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "" +msgstr "Kampanja" #. Label of the campaign_description (Small Text) field in DocType 'UTM #. Campaign' #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Campaign Description (Optional)" -msgstr "" +msgstr "Opis Kampanje (Opcija)" #: frappe/public/js/frappe/form/templates/set_sharing.html:4 #: frappe/public/js/frappe/form/templates/set_sharing.html:50 msgid "Can Read" -msgstr "" +msgstr "Može Čitati" #: frappe/public/js/frappe/form/templates/set_sharing.html:7 #: frappe/public/js/frappe/form/templates/set_sharing.html:53 msgid "Can Share" -msgstr "" +msgstr "Može Dijeliti" #: frappe/public/js/frappe/form/templates/set_sharing.html:6 #: frappe/public/js/frappe/form/templates/set_sharing.html:52 msgid "Can Submit" -msgstr "" +msgstr "Može Podnijeti" #: frappe/public/js/frappe/form/templates/set_sharing.html:5 #: frappe/public/js/frappe/form/templates/set_sharing.html:51 msgid "Can Write" -msgstr "" +msgstr "Može Pisati" #: frappe/custom/doctype/custom_field/custom_field.py:410 msgid "Can not rename as column {0} is already present on DocType." -msgstr "" +msgstr "Ne može se preimenovati jer je kolona {0} već prisutna na DocType." #: frappe/core/doctype/doctype/doctype.py:1163 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" -msgstr "" +msgstr "Može se promijeniti na/iz pravila imenovanja automatskog povećanja samo kada nema podataka u doctype" #. Description of the 'Apply User Permission On' (Link) field in DocType 'User #. Type' #: frappe/core/doctype/user_type/user_type.json msgid "Can only list down the document types which has been linked to the User document type." -msgstr "" +msgstr "Mogu se navesti samo tipovi dokumenata koji su povezani sa tipom korisničkog dokumenta." #: frappe/desk/form/document_follow.py:48 msgid "Can't follow since changes are not tracked." -msgstr "" +msgstr "Nije moguće pratiti jer se promjene ne prate." #: frappe/model/rename_doc.py:366 msgid "Can't rename {0} to {1} because {0} doesn't exist." -msgstr "" +msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #. Label of the cancel (Check) field in DocType 'Custom DocPerm' #. Label of the cancel (Check) field in DocType 'DocPerm' @@ -4026,7 +4066,7 @@ msgstr "" msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4038,20 +4078,16 @@ msgstr "Otkaži" #: frappe/public/js/frappe/form/form.js:979 msgid "Cancel All" -msgstr "" +msgstr "Otkaži" #: frappe/public/js/frappe/form/form.js:966 msgid "Cancel All Documents" -msgstr "" +msgstr "Otkaži Sve Dokumente" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" -msgstr "" +msgstr "Otkaži {0} dokumenta?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Event' @@ -4064,237 +4100,237 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:78 #: frappe/public/js/frappe/ui/filters/filter.js:540 msgid "Cancelled" -msgstr "" +msgstr "Otkazano" #: frappe/core/doctype/deleted_document/deleted_document.py:52 msgid "Cancelled Document restored as Draft" -msgstr "" +msgstr "Otkazani Dokument vraćen kao Nacrt" #: frappe/public/js/frappe/form/save.js:13 msgctxt "Freeze message while cancelling a document" msgid "Cancelling" -msgstr "" +msgstr "Otkazivanje u toku" #: frappe/desk/form/linked_with.py:381 msgid "Cancelling documents" -msgstr "" +msgstr "Otkazivanje dokumenata u toku" #: frappe/desk/doctype/bulk_update/bulk_update.py:91 msgid "Cancelling {0}" -msgstr "" +msgstr "Otkazujem {0}" #: frappe/core/doctype/prepared_report/prepared_report.py:265 msgid "Cannot Download Report due to insufficient permissions" -msgstr "" +msgstr "Nije moguće preuzeti izvještaj zbog nedovoljnih dozvola" #: frappe/client.py:452 msgid "Cannot Fetch Values" -msgstr "" +msgstr "Nije Moguće Preuzeti Vrijednosti" #: frappe/core/page/permission_manager/permission_manager.py:156 msgid "Cannot Remove" -msgstr "" +msgstr "Nije Moguće Ukloniti" #: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" -msgstr "" +msgstr "Nije Moguće Ažurirati Nakon Podnošenja" #: frappe/core/doctype/file/file.py:621 msgid "Cannot access file path {0}" -msgstr "" +msgstr "Nije moguće pristupiti putu datoteke {0}" #: frappe/public/js/workflow_builder/utils.js:183 msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" -msgstr "" +msgstr "Nije moguće otkazati prije podnošenja dok se prelazi iz {0} Stanja u {1} Stanje" #: frappe/workflow/doctype/workflow/workflow.py:109 msgid "Cannot cancel before submitting. See Transition {0}" -msgstr "" +msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" #: frappe/public/js/frappe/list/bulk_operations.js:294 msgid "Cannot cancel {0}." -msgstr "" +msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" -msgstr "" +msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" -msgstr "" +msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" #: frappe/public/js/workflow_builder/utils.js:170 msgid "Cannot change state of Cancelled Document ({0} State)" -msgstr "" +msgstr "Nije moguće promijeniti stanje otkazanog dokumenta ({0} State)" #: frappe/workflow/doctype/workflow/workflow.py:98 msgid "Cannot change state of Cancelled Document. Transition row {0}" -msgstr "" +msgstr "Nije moguće promijeniti stanje Otkazanog Dokumenta. Prijelazni red {0}" #: frappe/core/doctype/doctype/doctype.py:1153 msgid "Cannot change to/from autoincrement autoname in Customize Form" -msgstr "" +msgstr "Nije moguće promijeniti u/iz automatskog povećanje automatskog imenovanja u Prilagodi Obrazac" #: frappe/core/doctype/communication/communication.py:169 msgid "Cannot create a {0} against a child document: {1}" -msgstr "" +msgstr "Nije moguće kreirati {0} naspram podređenog dokumenta: {1}" #: frappe/desk/doctype/workspace/workspace.py:272 msgid "Cannot create private workspace of other users" -msgstr "" +msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika" #: frappe/core/doctype/file/file.py:153 msgid "Cannot delete Home and Attachments folders" -msgstr "" +msgstr "Nije moguće izbrisati mape Početna i Prilozi" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" -msgstr "" +msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}" #: frappe/custom/doctype/customize_form/customize_form.js:369 msgid "Cannot delete standard action. You can hide it if you want" -msgstr "" +msgstr "Nije moguće izbrisati standardnu radnju. Možete je sakriti ako želite" #: frappe/custom/doctype/customize_form/customize_form.js:391 msgid "Cannot delete standard document state." -msgstr "" +msgstr "Nije moguće izbrisati standardno stanje dokumenta." #: frappe/custom/doctype/customize_form/customize_form.js:321 msgid "Cannot delete standard field {0}. You can hide it instead." -msgstr "" +msgstr "Nije moguće izbrisati standardno polje {0}. Umjesto toga, možete ga sakriti." #: frappe/public/js/form_builder/components/Field.vue:38 #: frappe/public/js/form_builder/components/Section.vue:117 #: frappe/public/js/form_builder/components/Section.vue:190 #: frappe/public/js/form_builder/components/Tabs.vue:56 msgid "Cannot delete standard field. You can hide it if you want" -msgstr "" +msgstr "Nije moguće izbrisati standardno polje. Možete ga sakriti ako želite" #: frappe/custom/doctype/customize_form/customize_form.js:347 msgid "Cannot delete standard link. You can hide it if you want" -msgstr "" +msgstr "Nije moguće izbrisati standardnu vezu. Možete sakriti ako želite" #: frappe/custom/doctype/customize_form/customize_form.js:313 msgid "Cannot delete system generated field {0}. You can hide it instead." -msgstr "" +msgstr "Nije moguće izbrisati sistemski generisano polje {0}. Umjesto toga, možete ga sakriti." #: frappe/public/js/frappe/list/bulk_operations.js:215 msgid "Cannot delete {0}" -msgstr "" +msgstr "Nije moguće izbrisati {0}" #: frappe/utils/nestedset.py:299 msgid "Cannot delete {0} as it has child nodes" -msgstr "" +msgstr "Ne može se izbrisati {0} jer ima podređene članove" #: frappe/desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" -msgstr "" +msgstr "Nije moguće uređivati Standardne Nadzorne Table" #: frappe/email/doctype/notification/notification.py:192 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" -msgstr "" +msgstr "Nije moguće uređivati Standardno Obavještenje. Za uređivanje, onemogućite ovo i duplicirajte" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 msgid "Cannot edit Standard charts" -msgstr "" +msgstr "Nije moguće uređivati Standardne Grafikone" #: frappe/core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" -msgstr "" +msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" -msgstr "" +msgstr "Nije moguće uređivati otkazani dokument" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" -msgstr "" +msgstr "Nije moguće uređivati filtere za standardne grafikone" #: frappe/desk/doctype/number_card/number_card.js:277 #: frappe/desk/doctype/number_card/number_card.js:364 msgid "Cannot edit filters for standard number cards" -msgstr "" +msgstr "Nije moguće uređivati filtere za standardne numeričke kartice" #: frappe/client.py:166 msgid "Cannot edit standard fields" -msgstr "" +msgstr "Nije moguće uređivati standardna polja" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 msgid "Cannot enable {0} for a non-submittable doctype" -msgstr "" +msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti" #: frappe/core/doctype/file/file.py:252 msgid "Cannot find file {} on disk" -msgstr "" +msgstr "Nije moguće pronaći datoteku {} na disku" #: frappe/core/doctype/file/file.py:561 msgid "Cannot get file contents of a Folder" -msgstr "" +msgstr "Nije moguće dobiti sadržaj mape" #: frappe/printing/page/print/print.js:844 msgid "Cannot have multiple printers mapped to a single print format." -msgstr "" +msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." #: frappe/public/js/frappe/form/grid.js:1132 msgid "Cannot import table with more than 5000 rows." -msgstr "" +msgstr "Nije moguće uvesti tablicu s više od 5000 redaka." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" -msgstr "" +msgstr "Nije moguće povezati otkazani dokument: {0}" #: frappe/model/mapper.py:175 msgid "Cannot map because following condition fails:" -msgstr "" +msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" #: frappe/core/doctype/data_import/importer.py:971 msgid "Cannot match column {0} with any field" -msgstr "" +msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" #: frappe/public/js/frappe/form/grid_row.js:175 msgid "Cannot move row" -msgstr "" +msgstr "Nije moguće pomjeriti red" #: frappe/public/js/frappe/views/reports/report_view.js:927 msgid "Cannot remove ID field" -msgstr "" +msgstr "Nije moguće ukloniti ID polje" #: frappe/core/page/permission_manager/permission_manager.py:132 msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" -msgstr "" +msgstr "Ne može se postaviti dopuštenje 'Izvještaj' ako je postavljena dozvola 'Samo ako je Kreator'" #: frappe/email/doctype/notification/notification.py:209 msgid "Cannot set Notification with event {0} on Document Type {1}" -msgstr "" +msgstr "Nije moguće postaviti Obavijest s događajem {0} za Doctype {1}" #: frappe/core/doctype/docshare/docshare.py:67 msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" -msgstr "" +msgstr "Ne može se dijeliti {0} s dozvolom za podnošenje jer tip dokumenta {1} nije za podnošenje" #: frappe/public/js/frappe/list/bulk_operations.js:291 msgid "Cannot submit {0}." -msgstr "" +msgstr "Nije moguće podnijeti {0}." #: frappe/desk/doctype/bulk_update/bulk_update.js:26 #: frappe/public/js/frappe/list/bulk_operations.js:366 msgid "Cannot update {0}" -msgstr "" +msgstr "Nije moguće ažurirati {0}" #: frappe/model/db_query.py:1126 msgid "Cannot use sub-query in order by" -msgstr "" +msgstr "Nije moguće koristiti podupit po redoslijedu" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" -msgstr "" +msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" #: frappe/public/js/frappe/list/bulk_operations.js:297 msgid "Cannot {0} {1}." -msgstr "" +msgstr "Ne može {0} {1}." #: frappe/utils/password_strength.py:181 msgid "Capitalization doesn't help very much." -msgstr "" +msgstr "Upotreba velikih slova ne pomaže mnogo." #: frappe/public/js/frappe/ui/capture.js:294 msgid "Capture" @@ -4303,25 +4339,25 @@ msgstr "Uhvati" #. Label of the card (Link) field in DocType 'Number Card Link' #: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Card" -msgstr "" +msgstr "Numerička Kartica" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Card Break" -msgstr "" +msgstr "Prijelom Kartice" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" -msgstr "" +msgstr "Oznaka Kartice" #: frappe/public/js/frappe/widgets/widget_dialog.js:262 msgid "Card Links" -msgstr "" +msgstr "Veze Kartice" #. Label of the cards (Table) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Cards" -msgstr "" +msgstr "Kartice" #. Label of the category (Data) field in DocType 'Desktop Icon' #. Label of the category (Link) field in DocType 'Help Article' @@ -4329,133 +4365,130 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:72 #: frappe/website/doctype/help_article/help_article.json msgid "Category" -msgstr "" +msgstr "Kategorija" #. Label of the category_description (Text) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Category Description" -msgstr "" +msgstr "Opis Kategorije" #. Label of the category_name (Data) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Category Name" -msgstr "" - -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" +msgstr "Naziv Kategorije" #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Center" -msgstr "" +msgstr "Centar" #: frappe/core/page/permission_manager/permission_manager_help.html:16 msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." -msgstr "" +msgstr "Određeni dokumenti, poput fakture, ne bi se trebali mijenjati nakon što su finalni. Finalno stanje za takve dokumente naziva se Podešeno. Možete ograničiti koje uloge mogu podnositi." #: frappe/core/report/transaction_log_report/transaction_log_report.py:82 msgid "Chain Integrity" -msgstr "" +msgstr "Integritet Lanca" #. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Chaining Hash" -msgstr "" +msgstr "Lančani Hash" #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" -msgstr "" +msgstr "Promjeni" #: frappe/tests/test_translate.py:112 msgctxt "Coins" msgid "Change" -msgstr "" +msgstr "Promjeni" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 msgid "Change Image" -msgstr "" +msgstr "Promijeni Sliku" #. Label of the label (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Change Label (via Custom Translation)" -msgstr "" +msgstr "Promjena Oznaku (putem Prilagođenog Prijevoda)" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 msgid "Change Letter Head" -msgstr "" +msgstr "Promijenite Zaglavlje" #. Label of the change_password (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Change Password" -msgstr "" +msgstr "Promjeni Lozinku" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 msgid "Change Print Format" -msgstr "" +msgstr "Promjeni Format Ispisivanja" #. Description of the 'Update Series Counter' (Section Break) field in DocType #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +msgstr "Promijenite početni/tekući redni broj postojeće serije.
\n\n" +"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata. " #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Changed at" -msgstr "" +msgstr "Promijenjeno" #. Label of the changed_by (Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Changed by" -msgstr "" +msgstr "Promjenjeno od" #. Name of a DocType #: frappe/desk/doctype/changelog_feed/changelog_feed.json msgid "Changelog Feed" -msgstr "" +msgstr "Sažetak Zapisnika Promjena" #. Label of the changed_values (HTML) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Changes" -msgstr "" +msgstr "Promjene" #: frappe/email/doctype/email_domain/email_domain.js:5 msgid "Changing any setting will reflect on all the email accounts associated with this domain." -msgstr "" +msgstr "Promjena bilo koje postavke odrazit će se na sve račune e-pošte povezane s ovom domenom." #: frappe/core/doctype/system_settings/system_settings.js:67 msgid "Changing rounding method on site with data can result in unexpected behaviour." -msgstr "" +msgstr "Promjena metode zaokruživanja na mjestu sa podacima može rezultirati neočekivanim posljedicama." #. Label of the channel (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Channel" -msgstr "" +msgstr "Kanal" #. Label of the chart (Link) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Chart" -msgstr "" +msgstr "Grafikon" #. Label of the chart_config (Code) field in DocType 'Dashboard Settings' #: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Chart Configuration" -msgstr "" +msgstr "Konfiguracija Grafikona" #. Label of the chart_name (Data) field in DocType 'Dashboard Chart' #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" -msgstr "" +msgstr "Naziv Grafikona" #. Label of the chart_options (Code) field in DocType 'Dashboard' #. Label of the chart_options_section (Section Break) field in DocType @@ -4463,30 +4496,30 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Options" -msgstr "" +msgstr "Opcije Grafikona" #. Label of the source (Link) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Source" -msgstr "" +msgstr "Izvor Grafikona" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/views/reports/report_view.js:505 msgid "Chart Type" -msgstr "" +msgstr "Tip Grafikona" #. Label of the charts (Table) field in DocType 'Dashboard' #. Label of the charts (Table) field in DocType 'Workspace' #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/workspace/workspace.json msgid "Charts" -msgstr "" +msgstr "Grafikoni" #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Chat" -msgstr "" +msgstr "Chat" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -4503,250 +4536,246 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Check" -msgstr "" +msgstr "Provjeri" #: frappe/integrations/doctype/webhook/webhook.py:95 msgid "Check Request URL" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" +msgstr "Provjeri URL zahtjeva" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." -msgstr "" +msgstr "Označite kolone za odabir, povucite da postavite redoslijed." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 msgid "Check the Error Log for more information: {0}" -msgstr "" +msgstr "Provjerite Zapisnik Grešaka za više informacija: {0}" #: frappe/website/doctype/website_settings/website_settings.js:147 msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." -msgstr "" +msgstr "Označite ovo ako ne želite da se korisnici registriraju za račun na vašoj web stranici. Korisnici neće dobiti pristup radnom prostoru osim ako izričito ne navedete." #. Description of the 'User must always select' (Check) field in DocType #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." -msgstr "" +msgstr "Označite ovo ako želite prisiliti korisnika da odabere seriju prije spremanja. Ako označite ovo, neće biti standard postavke." #. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" +msgstr "Označite za prikaz pune numeričke vrijednosti (npr. 1.234.567 umjesto 1,2 milijuna)." #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" -msgstr "" +msgstr "Provjerava se samo trenutak" #: frappe/website/doctype/website_settings/website_settings.js:140 msgid "Checking this will enable tracking page views for blogs, web pages, etc." -msgstr "" +msgstr "Označavanjem ove opcije omogućit ćete praćenje pregleda stranica za blogove, web stranice itd." #. Description of the 'Hide Custom DocTypes and Reports' (Check) field in #. DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "" +msgstr "Označavanjem ovoga ćete sakriti prilagođene tipove dokumenata i izvještaje u odjeljku Veze" #: frappe/website/doctype/web_page/web_page.js:78 msgid "Checking this will publish the page on your website and it'll be visible to everyone." -msgstr "" +msgstr "Ako ovo potvrdite, stranica će biti objavljena na vašoj web stranici i bit će vidljiva svima." #: frappe/website/doctype/web_page/web_page.js:104 msgid "Checking this will show a text area where you can write custom javascript that will run on this page." -msgstr "" +msgstr "Ako ovo potvrdite, prikazat će se tekstualno područje u kojem možete napisati prilagođeni javascript koji će se izvoditi na ovoj stranici." #. Label of the checksum_version (Data) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Checksum Version" -msgstr "" +msgstr "Verzija Kontrolne Sume" #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" -msgstr "" +msgstr "Podređeni DocTypes nisu dozvoljeni" #. Label of the child_doctype (Data) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Child Doctype" -msgstr "" +msgstr "Podređeni Doctype" #: frappe/core/doctype/doctype/doctype.py:1647 msgid "Child Table {0} for field {1}" -msgstr "" +msgstr "Podređena tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:52 msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "" +msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" + +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "Podređena polja upita za '{0}' moraju biti popis ili torka." #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" -msgstr "" +msgstr "Odaberi postojeću karticu ili kreiraj novu karticu" #: frappe/public/js/frappe/views/workspace/workspace.js:571 msgid "Choose a block or continue typing" -msgstr "" +msgstr "Odaberi blok ili nastavite tipkati" #: frappe/public/js/form_builder/components/controls/DataControl.vue:18 #: frappe/public/js/frappe/form/controls/color.js:5 msgid "Choose a color" -msgstr "" +msgstr "Odaberi boju" #: frappe/public/js/form_builder/components/controls/DataControl.vue:21 #: frappe/public/js/frappe/form/controls/icon.js:5 msgid "Choose an icon" -msgstr "" +msgstr "Odaberi ikonu" #. Description of the 'Two Factor Authentication method' (Select) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Choose authentication method to be used by all users" -msgstr "" +msgstr "Odaberite način autentifikacije koji će koristiti svi korisnici" #. Label of the city (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "City" -msgstr "" +msgstr "Grad" #. Label of the city (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "City/Town" -msgstr "" +msgstr "Grad/Mjesto" #: frappe/core/doctype/recorder/recorder_list.js:12 #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" -msgstr "" +msgstr "Očisti & Dodaj Šablon" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" -msgstr "" +msgstr "Očisti & Dodaj Šablon" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Obriši Sve" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" -msgstr "" +msgstr "Obriši Dodjelu" #: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" -msgstr "" +msgstr "Obriši Keš Memoriju i Ponovo Učitaj" #: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" -msgstr "" +msgstr "Obriši Zapisnik Grešaka" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Clear Filters" -msgstr "" +msgstr "Obriši Filtere" #. Label of the days (Int) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Clear Logs After (days)" -msgstr "" +msgstr "Očisti Zapisnike Nakon (dana)" #: frappe/core/doctype/user_permission/user_permission_list.js:144 msgid "Clear User Permissions" -msgstr "" +msgstr "Obriši Korisničke Dozvole" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" -msgstr "" +msgstr "Obrišite poruku e-pošte i dodajte šablon" #: frappe/website/doctype/web_page/web_page.py:215 msgid "Clearing end date, as it cannot be in the past for published pages." -msgstr "" +msgstr "Brisanje datuma završetka jer ne može biti u prošlosti za objavljene stranice." #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 msgid "Click On Customize to add your first widget" -msgstr "" +msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet" #: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Click here" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" +msgstr "Klikni ovdje" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." -msgstr "" +msgstr "Klikni na datoteku da biste je odabrali." #: frappe/templates/emails/login_with_email_link.html:19 msgid "Click on the button to log in to {0}" -msgstr "" +msgstr "Klikni na dugme da se prijavite na {0}" #: frappe/templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" -msgstr "" +msgstr "Klikni na vezu ispod da biste odobrili zahtjev" #: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" -msgstr "" +msgstr "Klikni na vezu ispod kako biste dovršili registraciju i postavili novu lozinku" #: frappe/templates/emails/download_data.html:3 msgid "Click on the link below to download your data" -msgstr "" +msgstr "Klikni na vezu u nastavku za preuzimanje vaših podataka" #: frappe/templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" -msgstr "" +msgstr "Klikni na vezu ispod kako biste potvrdili vaš zahtjev" #: frappe/integrations/doctype/google_calendar/google_calendar.py:118 #: frappe/integrations/doctype/google_contacts/google_contacts.py:41 #: frappe/website/doctype/website_settings/website_settings.py:161 msgid "Click on {0} to generate Refresh Token." -msgstr "" +msgstr "Klikni na {0} za generisanje tokena osvježavanja." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 #: frappe/desk/doctype/number_card/number_card.js:215 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" -msgstr "" +msgstr "Klikni na tabelu za uređivanje" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 #: frappe/desk/doctype/number_card/number_card.js:402 msgid "Click to Set Dynamic Filters" -msgstr "" +msgstr "Klikni da Postavite Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 #: frappe/desk/doctype/number_card/number_card.js:270 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" -msgstr "" +msgstr "Klikni da Postavite Filtere" #: frappe/public/js/frappe/list/list_view.js:711 msgid "Click to sort by {0}" -msgstr "" +msgstr "Klikni da sortirate po {0}" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Clicked" -msgstr "" +msgstr "Kliknuto" #. Label of the client (Link) field in DocType 'OAuth Authorization Code' #. Label of the client (Link) field in DocType 'OAuth Bearer Token' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Client" -msgstr "" +msgstr "Klijent" #. Label of the client_code_section (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Client Code" -msgstr "" +msgstr "Kod Klijenta" #. Label of the sb_client_credentials_section (Section Break) field in DocType #. 'Connected App' @@ -4755,25 +4784,33 @@ msgstr "" #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Credentials" -msgstr "" +msgstr "Akreditivi Klijenta" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" -msgstr "" +msgstr "ID Klijenta" #. Label of the client_id (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Client Id" -msgstr "" +msgstr "Id. Klijenta" #. Label of the client_information (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Information" -msgstr "" +msgstr "Informacije o Klijentu" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Metapodaci Klijenta" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -4783,26 +4820,45 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/website/doctype/web_page/web_page.js:103 msgid "Client Script" -msgstr "" +msgstr "Skripta klijenta" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" -msgstr "" +msgstr "Tajna Klijenta" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Osnovna Tajna Klijenta" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Upis Tajne Klijenta" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "URI Klijenta" #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" -msgstr "" +msgstr "URL-ovi Klijenata" #. Label of the client_script (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Client script" -msgstr "" +msgstr "Klijent Skripta" #: frappe/core/doctype/communication/communication.js:39 #: frappe/desk/doctype/todo/todo.js:23 @@ -4815,11 +4871,11 @@ msgstr "Zatvori" #. Label of the close_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Close Condition" -msgstr "" +msgstr "Uslov Zatvaranja" #: frappe/public/js/form_builder/components/FieldProperties.vue:79 msgid "Close properties" -msgstr "" +msgstr "Zatvori Svojstva" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Communication' @@ -4829,13 +4885,13 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json msgid "Closed" -msgstr "" +msgstr "Zatvoreno" #: frappe/templates/discussions/comment_box.html:25 #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Cmd+Enter to add comment" -msgstr "" +msgstr "Cmd+Enter za dodavanje komentara" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -4848,24 +4904,24 @@ msgstr "" #: frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Code" -msgstr "" +msgstr "Kod" #. Label of the code_challenge (Data) field in DocType 'OAuth Authorization #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code Challenge" -msgstr "" +msgstr "Kod Izazov" #. Label of the code_editor_type (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Code Editor Type" -msgstr "" +msgstr "Tip Uređivača Koda" #. Label of the code_challenge_method (Select) field in DocType 'OAuth #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code challenge method" -msgstr "" +msgstr "Metoda Kod Izazova" #: frappe/public/js/frappe/form/form_tour.js:276 #: frappe/public/js/frappe/ui/sidebar.html:11 @@ -4878,10 +4934,10 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" -msgstr "" +msgstr "Sklopi Sve" #. Label of the collapsible (Check) field in DocType 'DocField' #. Label of the collapsible (Check) field in DocType 'Custom Field' @@ -4898,12 +4954,12 @@ msgstr "Sklopivo" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "" +msgstr "Sklopivo Zavisi Od" #. Label of the collapsible_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" -msgstr "" +msgstr "Sklopivo Zavisi Od (JS)" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the color (Data) field in DocType 'DocType' @@ -4933,14 +4989,14 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json #: frappe/website/doctype/social_link_settings/social_link_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Color" -msgstr "" +msgstr "Boja" #. Label of the column (Data) field in DocType 'Recorder Suggested Index' #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json @@ -4948,19 +5004,19 @@ msgstr "" #: frappe/public/js/form_builder/components/Section.vue:270 #: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 msgid "Column" -msgstr "" +msgstr "Kolona" #: frappe/core/doctype/report/boilerplate/controller.py:28 msgid "Column 1" -msgstr "" +msgstr "Kolona 1" #: frappe/core/doctype/report/boilerplate/controller.py:33 msgid "Column 2" -msgstr "" +msgstr "Kolona 2" #: frappe/desk/doctype/kanban_board/kanban_board.py:84 msgid "Column {0} already exist." -msgstr "" +msgstr "Kolona {0} već postoji." #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -4973,33 +5029,33 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Column Break" -msgstr "" +msgstr "Prijelom Kolone" #: frappe/core/doctype/data_export/exporter.py:140 msgid "Column Labels:" -msgstr "" +msgstr "Oznake Kolone:" #. Label of the column_name (Data) field in DocType 'Kanban Board Column' #: frappe/core/doctype/data_export/exporter.py:25 #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Column Name" -msgstr "" +msgstr "Naziv Kolone" #: frappe/desk/doctype/kanban_board/kanban_board.py:45 msgid "Column Name cannot be empty" -msgstr "" +msgstr "Naziv Kolone ne može biti prazan" #: frappe/public/js/frappe/form/grid_row.js:438 msgid "Column Width" -msgstr "" +msgstr "Širina Kolone" #: frappe/public/js/frappe/form/grid_row.js:645 msgid "Column width cannot be zero." -msgstr "" +msgstr "Širina kolone ne može biti nula." #: frappe/core/doctype/data_import/data_import.js:380 msgid "Column {0}" -msgstr "" +msgstr "Kolona {0}" #. Label of the columns (Int) field in DocType 'DocField' #. Label of the columns_section (Section Break) field in DocType 'Report' @@ -5013,25 +5069,25 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Columns" -msgstr "" +msgstr "Kolone" #. Label of the columns (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Columns / Fields" -msgstr "" +msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" -msgstr "" +msgstr "Kolone zasnovane na" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" -msgstr "" +msgstr "Kombinacija tipa odobrenja ({0}) i tipa odgovora ({1}) nije dozvoljena" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Comm10E" -msgstr "" +msgstr "Comm10E" #. Name of a DocType #. Option for the 'Comment Type' (Select) field in DocType 'Comment' @@ -5041,75 +5097,75 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:237 #: frappe/templates/includes/comments/comments.html:34 msgid "Comment" -msgstr "" +msgstr "Komentar" #. Label of the comment_by (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment By" -msgstr "" +msgstr "Komentar Od" #. Label of the comment_email (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment Email" -msgstr "" +msgstr "E-pošta Komentara" #. Label of the comment_type (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment Type" -msgstr "" +msgstr "Tip Komentara" #: frappe/desk/form/utils.py:58 msgid "Comment can only be edited by the owner" -msgstr "" +msgstr "Komentar može uređivati samo vlasnik" #. Label of the comment_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit" -msgstr "" +msgstr "Ograničenje komentara" #. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit per hour" -msgstr "" +msgstr "Ograničenje komentara po satu" #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." -msgstr "" +msgstr "Publicitet komentara može ažurirati samo izvorni autor ili Upravitelj Sustava." #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 #: frappe/website/doctype/web_form/templates/web_form.html:122 msgid "Comments" -msgstr "" +msgstr "Komentari" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Comments and Communications will be associated with this linked document" -msgstr "" +msgstr "Komentari i komunikacije će biti povezani sa ovim povezanim dokumentom" #: frappe/templates/includes/comments/comments.py:38 msgid "Comments cannot have links or email addresses" -msgstr "" +msgstr "Komentari ne mogu imati veze ili adrese e-pošte" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Commercial Rounding" -msgstr "" +msgstr "Komercijalno Zaokruživanje" #. Label of the commit (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Commit" -msgstr "" +msgstr "Potvrdi" #. Label of the committed (Check) field in DocType 'Console Log' #: frappe/desk/doctype/console_log/console_log.json msgid "Committed" -msgstr "" +msgstr "Potvrđeno" #: frappe/utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." -msgstr "" +msgstr "Uobičajena imena i prezimena je lako pogoditi." #. Name of a DocType #. Option for the 'Communication Type' (Select) field in DocType @@ -5121,77 +5177,77 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 msgid "Communication" -msgstr "" +msgstr "Konverzacija" #. Name of a DocType #: frappe/core/doctype/communication_link/communication_link.json msgid "Communication Link" -msgstr "" +msgstr "Link Konverzacije" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Communication Logs" -msgstr "" +msgstr "Zapisnik Konverzacije" #. Label of the communication_type (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Communication Type" -msgstr "" +msgstr "Tip Konverzacije" #: frappe/integrations/frappe_providers/frappecloud_billing.py:32 msgid "Communication secret not set" -msgstr "" +msgstr "Tajna Konverzacije nije postavljena" #. Name of a DocType #: frappe/website/doctype/company_history/company_history.json #: frappe/www/about.html:29 msgid "Company History" -msgstr "" +msgstr "Istorija Kompanije" #. Label of the company_introduction (Text Editor) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Company Introduction" -msgstr "" +msgstr "Predstavljanje Kompanije" #. Label of the company_name (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Company Name" -msgstr "Naziv Tvrtke" +msgstr "Naziv Kompanije" #: frappe/core/doctype/server_script/server_script.js:14 #: frappe/custom/doctype/client_script/client_script.js:54 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" -msgstr "" +msgstr "Uporedite verzije" #: frappe/core/doctype/server_script/server_script.py:157 msgid "Compilation warning" -msgstr "" +msgstr "Upozorenje Kompilacije" #: frappe/website/doctype/website_theme/website_theme.py:123 msgid "Compiled Successfully" -msgstr "" +msgstr "Uspješno Kompilirano" #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/www/complete_signup.html:21 msgid "Complete" -msgstr "" +msgstr "Završeno" #: frappe/public/js/frappe/form/sidebar/assign_to.js:203 msgid "Complete By" -msgstr "" +msgstr "Završeno Do" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" -msgstr "" +msgstr "Završi Registraciju" #: frappe/public/js/frappe/ui/slides.js:355 msgctxt "Finish the setup wizard" msgid "Complete Setup" -msgstr "" +msgstr "Završi Postavljanje" #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' #. Option for the 'Status' (Select) field in DocType 'Prepared Report' @@ -5206,31 +5262,31 @@ msgstr "" #: frappe/utils/goal.py:117 #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed" -msgstr "" +msgstr "Završeno" #. Label of the completed_by_role (Link) field in DocType 'Workflow Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By Role" -msgstr "" +msgstr "Završeno od strane Uloge" #. Label of the completed_by (Link) field in DocType 'Workflow Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By User" -msgstr "" +msgstr "Završeno od strane Korisnika" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/website/doctype/web_template/web_template.json msgid "Component" -msgstr "" +msgstr "Komponenta" #: frappe/public/js/frappe/views/inbox/inbox_view.js:184 msgid "Compose Email" -msgstr "" +msgstr "Pošalji e-poštu" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Compressed" -msgstr "" +msgstr "Komprimirano" #. Label of the condition (Select) field in DocType 'Document Naming Rule #. Condition' @@ -5253,17 +5309,17 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.js:197 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Condition" -msgstr "" +msgstr "Uslov" #. Label of the condition_json (JSON) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition JSON" -msgstr "" +msgstr "JSON Uslov" #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" -msgstr "" +msgstr "Opis Stanja" #. Label of the conditions (Table) field in DocType 'Document Naming Rule' #. Label of the conditions (Section Break) field in DocType 'Workflow @@ -5271,29 +5327,35 @@ msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Conditions" -msgstr "" +msgstr "Uslovi" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Konfiguracija" #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Configuration" -msgstr "" +msgstr "Konfiguracija" #: frappe/public/js/frappe/views/reports/report_view.js:487 msgid "Configure Chart" -msgstr "" +msgstr "Konfiguriši Grafikon" #: frappe/public/js/frappe/form/grid_row.js:390 msgid "Configure Columns" -msgstr "" +msgstr "Konfiguriši Kolone" #: frappe/core/doctype/recorder/recorder_list.js:200 msgid "Configure Recorder" -msgstr "" +msgstr "Konfiguriši Snimač" #: frappe/public/js/print_format_builder/Field.vue:103 msgid "Configure columns for {0}" -msgstr "" +msgstr "Konfiguriši kolone za {0}" #. Description of the 'Amended Documents' (Section Break) field in DocType #. 'Document Naming Settings' @@ -5301,67 +5363,64 @@ msgstr "" msgid "Configure how amended documents will be named.
\n\n" "Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" "Default Naming will make the amended document to behave same as new documents." -msgstr "" +msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n" +"Stsndard ponašanje je praćenje brojača izmjena koji dodaje broj na kraj izvornog naziva koji označava izmijenjenu verziju.
\n\n" +"Standard imenovanje omogućit će da se izmijenjeni dokument ponaša isto kao novi dokumenti." #. Description of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Configure various aspects of how document naming works like naming series, current counter." -msgstr "" +msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "" +msgstr "Potvrdi" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "" +msgstr "Potvrdi" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" -msgstr "" +msgstr "Potvrdi Pristup" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 msgid "Confirm Deletion of Account" -msgstr "" +msgstr "Potvrdi Brisanje Računa" #: frappe/core/doctype/user/user.js:191 msgid "Confirm New Password" -msgstr "" +msgstr "Potvrdi Novu Lozinku" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" -msgstr "" +msgstr "Potvrdi Lozinku" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" +msgstr "Potvrdi Zahtjev" #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" -msgstr "" +msgstr "Šablon e-pošte Potvrde" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" -msgstr "" +msgstr "Potvrđeno" #: frappe/public/js/frappe/widgets/onboarding_widget.js:525 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." -msgstr "" +msgstr "Čestitamo na završetku podešavanja modula. Ako želite da saznate više, možete pogledati dokumentaciju ovdje." #: frappe/integrations/doctype/connected_app/connected_app.js:25 msgid "Connect to {}" -msgstr "" +msgstr "Poveži sa {}" #. Label of the connected_app (Link) field in DocType 'Email Account' #. Name of a DocType @@ -5370,29 +5429,29 @@ msgstr "" #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Connected App" -msgstr "" +msgstr "Povezana Aplikacija" #. Label of the connected_user (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Connected User" -msgstr "" +msgstr "Povezani Korisnik" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" -msgstr "" +msgstr "Povezano na QZ Tray!" #: frappe/public/js/frappe/request.js:36 msgid "Connection Lost" -msgstr "" +msgstr "Veza Izgubljena" #: frappe/templates/pages/integrations/gcalendar-success.html:3 msgid "Connection Success" -msgstr "" +msgstr "Povezivanje Uspješno" #: frappe/public/js/frappe/dom.js:446 msgid "Connection lost. Some features might not work." -msgstr "" +msgstr "Veza Izgubljena. Neke funkcije možda neće raditi." #. Label of the connections_tab (Tab Break) field in DocType 'DocType' #. Label of the connections_tab (Tab Break) field in DocType 'Module Def' @@ -5402,87 +5461,90 @@ msgstr "" #: frappe/core/doctype/user/user.json #: frappe/public/js/frappe/form/dashboard.js:54 msgid "Connections" -msgstr "" +msgstr "Veze" #. Label of the console (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Console" -msgstr "" +msgstr "Konzola" #. Name of a DocType #: frappe/desk/doctype/console_log/console_log.json msgid "Console Log" -msgstr "" +msgstr "Zapisnik Konzole" #: frappe/desk/doctype/console_log/console_log.py:24 msgid "Console Logs can not be deleted" -msgstr "" +msgstr "Zapisi Konzole se ne mogu izbrisati" #. Label of the constraints_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Constraints" -msgstr "" +msgstr "Ograničenja" #. Name of a DocType #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.js:113 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" -msgstr "" +msgstr "Kontakt Detalji" #. Name of a DocType #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Contact Email" -msgstr "" +msgstr "Kontakt e-pošta" #. Label of the phone_nos (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Numbers" -msgstr "" +msgstr "Kontakt Brojevi" #. Name of a DocType #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Contact Phone" -msgstr "" +msgstr "Kontakt Telefon" #: frappe/integrations/doctype/google_contacts/google_contacts.py:291 msgid "Contact Synced with Google Contacts." -msgstr "" +msgstr "Kontakt Sinhronizovan sa Google Kontaktima." #: frappe/www/contact.html:4 msgid "Contact Us" -msgstr "" +msgstr "Kontaktirajte nas" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/workspace/website/website.json msgid "Contact Us Settings" -msgstr "" +msgstr "Postavke Kontaktirajte nas" #. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." -msgstr "" +msgstr "Opcije za Kontakt, kao što su \"Upit za Prodaju, Upit za Podršku\" itd., svaka u novom redu ili odvojena zarezima." + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakti" #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" -msgstr "" +msgstr "Sadrži {0} sigurnosnu ispravku" #: frappe/utils/change_log.py:360 msgid "Contains {0} security fixes" -msgstr "" +msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5490,59 +5552,56 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:41 msgid "Content" -msgstr "" +msgstr "Sadržaj" #. Label of the content_html (HTML Editor) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Content (HTML)" -msgstr "" +msgstr "Sadržaj (HTML)" #. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Content (Markdown)" -msgstr "" +msgstr "Sadržaj (Markdown)" #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" -msgstr "" +msgstr "Hash Sadržaja" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" -msgstr "" +msgstr "Tip Sadržaja" #: frappe/desk/doctype/workspace/workspace.py:86 msgid "Content data shoud be a list" -msgstr "" +msgstr "Podaci o sadržaju trebaju biti lista" #: frappe/website/doctype/web_page/web_page.js:91 msgid "Content type for building the page" -msgstr "" +msgstr "Tip sadržaja za izradu stranice" #. Label of the context (Data) field in DocType 'Translation' #. Label of the context_section (Section Break) field in DocType 'Web Page' #: frappe/core/doctype/translation/translation.json #: frappe/website/doctype/web_page/web_page.json msgid "Context" -msgstr "" +msgstr "Kontekst" #. Label of the context_script (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Context Script" -msgstr "" +msgstr "Kontekst Skripta" #: frappe/public/js/frappe/widgets/onboarding_widget.js:204 #: frappe/public/js/frappe/widgets/onboarding_widget.js:232 @@ -5553,84 +5612,88 @@ msgstr "" #: frappe/public/js/frappe/widgets/onboarding_widget.js:423 #: frappe/public/js/frappe/widgets/onboarding_widget.js:531 msgid "Continue" -msgstr "" +msgstr "Nastavi" #. Label of the contributed (Check) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Contributed" -msgstr "" +msgstr "Doprinio" #. Label of the contribution_docname (Data) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Contribution Document Name" -msgstr "" +msgstr "Naziv Dokumenta Doprinosa" #. Label of the contribution_status (Select) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Contribution Status" -msgstr "" +msgstr "Status Doprinosa" #. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." -msgstr "" +msgstr "Kontrolira mogu li se novi korisnici prijaviti pomoću ovog ključa prijave putem društvenih mreža. Ako se ne postavljaju, poštuju se Postavke Web Stranice." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." -msgstr "" +msgstr "Kopirano u Međuspremnik." #: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 msgid "Copy Link" -msgstr "" +msgstr "Kopiraj Vezu" #: frappe/website/doctype/web_form/web_form.js:29 msgid "Copy embed code" -msgstr "" +msgstr "Kopiraj ugrađen kod" #: frappe/public/js/frappe/request.js:620 msgid "Copy error to clipboard" -msgstr "" +msgstr "Greška pri kopiranju u međuspremnik" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" -msgstr "" +msgstr "Kopiraj u Međuspremnik" #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" -msgstr "" +msgstr "Autorska prava" #: frappe/custom/doctype/customize_form/customize_form.py:122 msgid "Core DocTypes cannot be customized." -msgstr "" +msgstr "Osnovni DocTypes se ne mogu prilagoditi." #: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." -msgstr "" +msgstr "Osnovni Moduli {0} se ne mogu pretraživati u globalnoj pretrazi." #: frappe/printing/page/print/print.js:620 msgid "Correct version :" -msgstr "" +msgstr "Ispravna verzija:" #: frappe/email/smtp.py:78 msgid "Could not connect to outgoing email server" -msgstr "" +msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" -msgstr "" +msgstr "Nije moguće pronaći {0}" #: frappe/core/doctype/data_import/importer.py:933 msgid "Could not map column {0} to field {1}" -msgstr "" +msgstr "Nije moguće mapirati kolonu {0} na polje {1}" + +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "Nije moguće parsati polje: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " -msgstr "" +msgstr "Nije moguće pokrenuti: " #: frappe/public/js/frappe/web_form/web_form.js:359 msgid "Couldn't save, please check the data you have entered" -msgstr "" +msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' @@ -5640,14 +5703,14 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" -msgstr "" +msgstr "Broj" #: frappe/public/js/frappe/widgets/widget_dialog.js:540 msgid "Count Customizations" -msgstr "" +msgstr "Broj Prilagodba" #. Label of the section_break_5 (Section Break) field in DocType 'Workspace #. Shortcut' @@ -5655,16 +5718,16 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:525 msgid "Count Filter" -msgstr "" +msgstr "Broj & Filter" #: frappe/public/js/frappe/form/dashboard.js:509 msgid "Count of linked documents" -msgstr "" +msgstr "Broj povezanih dokumenata" #. Label of the counter (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Counter" -msgstr "" +msgstr "Brojač" #. Label of the country (Link) field in DocType 'Address' #. Label of the country (Link) field in DocType 'Address Template' @@ -5677,27 +5740,27 @@ msgstr "" #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" -msgstr "" +msgstr "Zemlja" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" -msgstr "" +msgstr "Kod Zemlje Obavezan" #. Label of the country_name (Data) field in DocType 'Country' #: frappe/geo/doctype/country/country.json msgid "Country Name" -msgstr "" +msgstr "Naziv Zemlje" #. Label of the county (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "County" -msgstr "" +msgstr "Opština" #: frappe/public/js/frappe/utils/number_systems.js:23 #: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "" +msgstr "Cr" #. Label of the create (Check) field in DocType 'Custom DocPerm' #. Label of the create (Check) field in DocType 'DocPerm' @@ -5711,92 +5774,92 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" -msgstr "" +msgstr "Kreiraj" #: frappe/core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" -msgstr "" +msgstr "Kreiraj & Nastavi" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 msgid "Create Address" -msgstr "" +msgstr "Kreiraj Adresu" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" -msgstr "" +msgstr "Kreiraj Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" -msgstr "" +msgstr "Kreiraj Grafikon" #: frappe/public/js/form_builder/components/controls/TableControl.vue:62 msgid "Create Child Doctype" -msgstr "" +msgstr "Kreiraj Podređeni Doctype" #. Label of the create_contact (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Create Contacts from Incoming Emails" -msgstr "" +msgstr "Kreiraj Kontakte iz Dolazne e-pošte" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Create Entry" -msgstr "" +msgstr "Kreiraj Unos" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 msgid "Create Letter Head" -msgstr "" +msgstr "Kreiraj Zaglavlje" #. Label of the create_log (Check) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Create Log" -msgstr "" +msgstr "Kreiraj Zapisnik" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 #: frappe/public/js/frappe/views/treeview.js:378 #: frappe/workflow/page/workflow_builder/workflow_builder.js:41 msgid "Create New" -msgstr "" +msgstr "Kreiraj" #: frappe/public/js/frappe/list/list_view.js:509 msgctxt "Create a new document from list view" msgid "Create New" -msgstr "" +msgstr "Kreiraj" #: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" -msgstr "" +msgstr "Kreiraj Novi DocType" #: frappe/public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" -msgstr "" +msgstr "Kreiraj Novu Natpisnu Tablu" #: frappe/core/doctype/user/user.js:270 msgid "Create User Email" -msgstr "" +msgstr "Kreiraj Korisničku e-poštu" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 msgid "Create a New Format" -msgstr "" +msgstr "Kreiraj Novi Format" #: frappe/public/js/frappe/form/reminders.js:9 msgid "Create a Reminder" -msgstr "" +msgstr "Kreiraj Podsjetnik" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 msgid "Create a new ..." -msgstr "" +msgstr "Kreiraj ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" -msgstr "" +msgstr "Kreiraj novi zapis" #: frappe/public/js/frappe/form/controls/link.js:311 #: frappe/public/js/frappe/form/controls/link.js:313 @@ -5804,54 +5867,49 @@ msgstr "" #: frappe/public/js/frappe/list/list_view.js:501 #: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" -msgstr "" +msgstr "+ {0}" #: frappe/www/login.html:162 msgid "Create a {0} Account" -msgstr "" - -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" +msgstr "+ {0} Račun" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" -msgstr "" +msgstr "Kreiraj ili Uredi Format Ispisa" #: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" -msgstr "" +msgstr "Kreiraj ili Uredi Radni Tok" #: frappe/public/js/frappe/list/list_view.js:504 msgid "Create your first {0}" -msgstr "" +msgstr "+ {0}" #: frappe/workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." -msgstr "" +msgstr "Kreiraj Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Created" -msgstr "" +msgstr "Kreirano" #. Label of the created_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Created At" -msgstr "" +msgstr "Kreirano" #: frappe/model/meta.py:58 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 #: frappe/public/js/frappe/model/meta.js:206 #: frappe/public/js/frappe/model/model.js:123 msgid "Created By" -msgstr "" +msgstr "Kreirano Od" #: frappe/workflow/doctype/workflow/workflow.py:64 msgid "Created Custom Field {0} in {1}" -msgstr "" +msgstr "Kreirano Prilagođeno Polje {0} u {1}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 #: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 @@ -5859,50 +5917,50 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:125 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Created On" -msgstr "" +msgstr "Kreirano" #: frappe/public/js/frappe/desk.js:523 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" -msgstr "" +msgstr "Kreiranje {0}" #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 msgid "Creation of this document is only permitted in developer mode." -msgstr "" +msgstr "Kreiranje ovog dokumenta je dozvoljeno samo u modu programera." #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "" +msgstr "Cron" #. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' #. Label of the cron_format (Data) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron Format" -msgstr "" +msgstr "Cron format" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 msgid "Cron format is required for job types with Cron frequency." -msgstr "" +msgstr "Cron format je potreban za tipove poslova sa Cron frekvencijom." #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 msgid "Crop" -msgstr "" +msgstr "Samnji" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Down" -msgstr "" +msgstr "Ctrl + Dolje" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Up" -msgstr "" +msgstr "Ctrl + Gore" #: frappe/templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" -msgstr "" +msgstr "Ctrl+Enter za dodavanje komentara" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -5926,45 +5984,45 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Currency" -msgstr "" +msgstr "Valuta" #. Label of the currency_name (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Currency Name" -msgstr "" +msgstr "Naziv Valute" #. Label of the currency_precision (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Currency Precision" -msgstr "" +msgstr "Preciznost Valute" #. Description of a DocType #: frappe/geo/doctype/currency/currency.json msgid "Currency list stores the currency value, its symbol and fraction unit" -msgstr "" +msgstr "Lista Valuta pohranjuje vrijednost valute, njen simbol i jedinicu razlomka" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Current" -msgstr "" +msgstr "Trentuno" #. Label of the current_job_id (Link) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Current Job ID" -msgstr "" +msgstr "ID Trenutnog Posla" #. Label of the current_value (Int) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Current Value" -msgstr "" +msgstr "Trenutna Vrijednost" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Current status" -msgstr "" +msgstr "Trenutni Status" #: frappe/public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" -msgstr "" +msgstr "Trenutno se Prikazuje" #. Label of the custom (Check) field in DocType 'DocType Action' #. Label of the custom (Check) field in DocType 'DocType Link' @@ -5992,176 +6050,180 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/public/js/frappe/form/reminders.js:20 msgid "Custom" -msgstr "" +msgstr "Prilagođeno" #. Label of the custom_base_url (Check) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Custom Base URL" -msgstr "" +msgstr "Prilagođeni Osnovni URL" #. Label of the custom_block_name (Link) field in DocType 'Workspace Custom #. Block' #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Custom Block Name" -msgstr "" +msgstr "Prilagođeni Naziv Bloka" #. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' #. Label of the custom_blocks (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Custom Blocks" -msgstr "" +msgstr "Prilagođeni Blokovi" #. Label of the css (Code) field in DocType 'Print Format' #. Label of the custom_css (Code) field in DocType 'Web Form' #: frappe/printing/doctype/print_format/print_format.json #: frappe/website/doctype/web_form/web_form.json msgid "Custom CSS" -msgstr "" +msgstr "Prilagođeni CSS" #. Label of the custom_configuration_section (Section Break) field in DocType #. 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Custom Configuration" -msgstr "" +msgstr "Prilagođena Konfiguracija" #. Label of the custom_delimiters (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Custom Delimiters" -msgstr "" +msgstr "Prilagođeni Razdjelnici" #. Name of a DocType #: frappe/core/doctype/custom_docperm/custom_docperm.json msgid "Custom DocPerm" -msgstr "" +msgstr "Prilagođena Dozvola Dokumenta" #. Label of the custom_select_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Custom Document Types (Select Permission)" -msgstr "" +msgstr "Prilagođeni Tip Dokumenata (Navedi Dozvole)" #: frappe/core/doctype/user_type/user_type.py:105 msgid "Custom Document Types Limit Exceeded" -msgstr "" +msgstr "Prekoračeno je ograničenje prilagođenih tipova dokumenata" #: frappe/desk/desktop.py:524 msgid "Custom Documents" -msgstr "" +msgstr "Prilagođeni Dokumenti" #. Label of a Link in the Build Workspace #. Name of a DocType #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/custom_field/custom_field.json msgid "Custom Field" -msgstr "" +msgstr "Prilagođeno Polje" #: frappe/custom/doctype/custom_field/custom_field.py:220 msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." -msgstr "" +msgstr "Prilagođeno Polje {0} kreira administrator i može se izbrisati samo preko administratorskog računa." #: frappe/custom/doctype/custom_field/custom_field.py:277 msgid "Custom Fields can only be added to a standard DocType." -msgstr "" +msgstr "Prilagođena Polja mogu se dodati samo u standardni DocType." #: frappe/custom/doctype/custom_field/custom_field.py:274 msgid "Custom Fields cannot be added to core DocTypes." -msgstr "" +msgstr "Prilagođena polja se ne mogu dodati osnovnim tipovima dokumenata." #. Label of the custom_footer_section (Section Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Custom Footer" -msgstr "" +msgstr "Prilagođeno Podnožje" #. Label of the custom_format (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Custom Format" -msgstr "" +msgstr "Prilagođeni Format" #. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Custom Group Search" -msgstr "" +msgstr "Prilagođena Grupna Pretraživanja" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" -msgstr "" +msgstr "Prilagođena pretraga grupe, ako je popunjena, mora sadržavati rezervirano mjesto korisnika {0}, npr. uid={0},ou=users,dc=example,dc=com" #: frappe/printing/page/print_format_builder/print_format_builder.js:190 #: frappe/printing/page/print_format_builder/print_format_builder.js:728 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 msgid "Custom HTML" -msgstr "" +msgstr "Prilagođeni HTML" #. Name of a DocType #: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "Custom HTML Block" -msgstr "" +msgstr "Prilagođeni HTML Blok" #. Label of the custom_html_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Custom HTML Help" -msgstr "" +msgstr "Prilagođena HTML Pomoć" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" -msgstr "" +msgstr "Odabran je prilagođeni LDAP imenik, uvjerite se da su uneseni 'LDAP atribut člana grupe' i 'Klasa objekata grupe'" #. Label of the label (Data) field in DocType 'Web Form Field' #. Label of the label (Data) field in DocType 'Web Form List Column' #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Custom Label" -msgstr "" +msgstr "Prilagođena Oznaka" #. Label of the custom_menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Menu Items" -msgstr "" +msgstr "Prilagođene Stavke Menija" #. Label of the custom_options (Code) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Custom Options" -msgstr "" +msgstr "Prilagođene Opcije" #. Label of the custom_overrides (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom Overrides" -msgstr "" +msgstr "Prilagođena Zamjena" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Custom Report" -msgstr "" +msgstr "Prilagođeni Izvještaj" #: frappe/desk/desktop.py:525 msgid "Custom Reports" -msgstr "" +msgstr "Prilagođeni izvještaji" #. Name of a DocType #: frappe/core/doctype/custom_role/custom_role.json msgid "Custom Role" -msgstr "" +msgstr "Prilagođena Uloga" #. Label of the custom_scss (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom SCSS" -msgstr "" +msgstr "Prilagođeni SCSS" #. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Sidebar Menu" -msgstr "" +msgstr "Prilagođeni Meni Bočne Trake" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Custom Translation" -msgstr "" +msgstr "Prilagođeni Prijevod" #: frappe/custom/doctype/custom_field/custom_field.py:423 msgid "Custom field renamed to {0} successfully." -msgstr "" +msgstr "Prilagođeno polje uspješno je preimenovano u {0}." + +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili None, dobiveno je {1}" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' @@ -6169,7 +6231,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:82 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" -msgstr "" +msgstr "Prilagođeno?" #. Group in DocType's connections #. Group in Module Def's connections @@ -6180,39 +6242,39 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_form/web_form.json msgid "Customization" -msgstr "" +msgstr "Prilagodjavanje" #: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" -msgstr "" +msgstr "Prilagođavanja Odbačena" #: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" -msgstr "" +msgstr "Poništi Prilagođavanja" #: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
{1}" -msgstr "" +msgstr "Prilagođavanja za {0} eksportirana u:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" -msgstr "" +msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" -msgstr "" +msgstr "Prilagodi" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "" +msgstr "Prilagodi podređenu tabelu" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" -msgstr "" +msgstr "Prilagodi nadzornu ploču" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6220,57 +6282,57 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" -msgstr "" +msgstr "Prilagodi Formu" #: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" -msgstr "" +msgstr "Prilagodi Formu - {0}" #. Name of a DocType #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" -msgstr "" +msgstr "Prilagodi Polje Obrasca" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Customize properties, naming, fields and more for standard doctypes" -msgstr "" +msgstr "Prilagodite svojstva, imenovanje, polja i još mnogo toga za standardne tipove dokumenata" #: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" -msgstr "" +msgstr "Isjeci" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" -msgstr "" +msgstr "Cijan" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "DELETE" -msgstr "" +msgstr "IZBRIŠI" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "DESC" -msgstr "" +msgstr "SIL" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "DLE" -msgstr "" +msgstr "DLE" #: frappe/templates/print_formats/standard_macros.html:215 msgid "DRAFT" -msgstr "" +msgstr "NACRT" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -6292,46 +6354,46 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:398 #: frappe/website/report/website_analytics/website_analytics.js:23 msgid "Daily" -msgstr "" +msgstr "Dnevno" #: frappe/templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." -msgstr "" +msgstr "Dnevni sažetak događaja se šalje za događaje u kalendaru gdje se postavljaju podsjetnici." #: frappe/desk/doctype/event/event.py:100 msgid "Daily Events should finish on the Same Day." -msgstr "" +msgstr "Dnevni događaji bi trebali završiti istog dana." #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Daily Long" -msgstr "" +msgstr "Cijeli Dan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Daily Maintenance" -msgstr "" +msgstr "Dnevno Održavanje" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Danger" -msgstr "" +msgstr "Opasnost" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Dark" -msgstr "" +msgstr "Tamno" #. Label of the dark_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Dark Color" -msgstr "" +msgstr "Tamna Boja" #: frappe/public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" -msgstr "" +msgstr "Tamna Tema" #. Label of the dashboard (Check) field in DocType 'User' #. Label of a Link in the Build Workspace @@ -6346,9 +6408,9 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" -msgstr "" +msgstr "Nadzorna Tabla" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6356,48 +6418,48 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" -msgstr "" +msgstr "Grafikon Nadzorne Table" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgid "Dashboard Chart Field" -msgstr "" +msgstr "Polje Grafikona Nadzorne Table" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" -msgstr "" +msgstr "Veza Grafikona Nadzorne Table" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" -msgstr "" +msgstr "Izvor Grafikona Nadzorne Table" #. Name of a role #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" -msgstr "" +msgstr "Upravitelj Nadzorne Table" #. Label of the dashboard_name (Data) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "" +msgstr "Naziv Nadzorne Table" #. Name of a DocType #: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" -msgstr "" +msgstr "Postavke Nadzorne Table" #: frappe/public/js/frappe/list/base_list.js:204 msgid "Dashboard View" -msgstr "" +msgstr "Pregled Nadzorne Table" #. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Dashboards" -msgstr "" +msgstr "Nadzorne Table" #. Label of a Card Break in the Tools Workspace #. Label of the data (Code) field in DocType 'Deleted Document' @@ -6426,76 +6488,76 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Data" -msgstr "" +msgstr "Podaci" #: frappe/public/js/frappe/form/controls/data.js:59 msgid "Data Clipped" -msgstr "" +msgstr "Podaci Isječeni" #. Name of a DocType #: frappe/core/doctype/data_export/data_export.json msgid "Data Export" -msgstr "" +msgstr "Eksport Podataka" #. Name of a DocType #. Label of the data_import (Link) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import" -msgstr "" +msgstr "Uvoz Podataka" #. Name of a DocType #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import Log" -msgstr "" +msgstr "Zapisnik Uvoza Podataka" #: frappe/core/doctype/data_export/exporter.py:174 msgid "Data Import Template" -msgstr "" +msgstr "Šablon Uvoza Podataka" #: frappe/custom/doctype/customize_form/customize_form.py:614 msgid "Data Too Long" -msgstr "" +msgstr "Predugi Podaci" #. Label of the database (Data) field in DocType 'System Health Report' #. Label of the database_section (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database" -msgstr "" +msgstr "Baza Podataka" #. Label of the engine (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Database Engine" -msgstr "" +msgstr "Motor Baze Podataka" #. Label of the database_processes_section (Section Break) field in DocType #. 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Database Processes" -msgstr "" +msgstr "Procesi Baze Podataka" #: frappe/public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" -msgstr "" +msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka" #. Name of a report #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" -msgstr "" +msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama" #: frappe/custom/doctype/customize_form/customize_form.py:248 msgid "Database Table Row Size Limit" -msgstr "" +msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" #: frappe/public/js/frappe/doctype/index.js:40 msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." -msgstr "" +msgstr "Korištenje veličine reda tabele baze podataka: {0}%, ovo ograničava broj polja koja možete dodati." #. Label of the database_version (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database Version" -msgstr "" +msgstr "Verzija Baze Podataka" #. Label of the communication_date (Datetime) field in DocType 'Activity Log' #. Label of the communication_date (Datetime) field in DocType 'Communication' @@ -6513,11 +6575,10 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" -msgstr "" +msgstr "Datum" #. Label of the date_format (Select) field in DocType 'Language' #. Label of the date_format (Select) field in DocType 'System Settings' @@ -6526,7 +6587,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json msgid "Date Format" -msgstr "" +msgstr "Format Datuma" #. Label of the section_break_dfrx (Section Break) field in DocType 'Audit #. Trail' @@ -6539,15 +6600,15 @@ msgstr "Datumski Raspon" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Date and Number Format" -msgstr "" +msgstr "Format Datuma i Brojeva" #: frappe/public/js/frappe/form/controls/date.js:247 msgid "Date {0} must be in format: {1}" -msgstr "" +msgstr "Datum {0} mora biti u formatu: {1}" #: frappe/utils/password_strength.py:129 msgid "Dates are often easy to guess." -msgstr "" +msgstr "Datume je često lako pogoditi." #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -6562,7 +6623,7 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Datetime" -msgstr "" +msgstr "Datum i Vrijeme" #. Label of the day (Select) field in DocType 'Assignment Rule Day' #. Label of the day (Select) field in DocType 'Auto Repeat Day' @@ -6570,61 +6631,66 @@ msgstr "" #: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json #: frappe/public/js/frappe/views/calendar/calendar.js:277 msgid "Day" -msgstr "" +msgstr "Dan" #. Label of the day_of_week (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Day of Week" msgstr "Dan u Tjednu" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dana" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" -msgstr "" +msgstr "Dana Poslije" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before" -msgstr "" +msgstr "Dana prije" #. Label of the days_in_advance (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before or After" -msgstr "" +msgstr "Dana Prije ili Poslije" #: frappe/public/js/frappe/request.js:252 msgid "Deadlock Occurred" -msgstr "" +msgstr "Došlo je do Zastoja" #: frappe/templates/emails/password_reset.html:1 msgid "Dear" -msgstr "" +msgstr "Poštovani" #: frappe/templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," -msgstr "Poštovani Upravitelju Sustava," +msgstr "Poštovani Upravitelju Sistema," #: frappe/templates/emails/account_deletion_notification.html:1 #: frappe/templates/emails/delete_data_confirmation.html:1 msgid "Dear User," -msgstr "" +msgstr "Poštovani Korisniče," #: frappe/templates/emails/download_data.html:1 msgid "Dear {0}" -msgstr "" +msgstr "Poštovani {0}" #. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Debug Log" -msgstr "" +msgstr "Zapisnik Otklanjanja Grešaka" #: frappe/public/js/frappe/views/reports/report_utils.js:308 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" -msgstr "" +msgstr "Decimalni razdjelnik mora biti '.' kada je Ponuda postavljena na Nenumeričko" #: frappe/public/js/frappe/views/reports/report_utils.js:300 msgid "Decimal Separator must be a single character" -msgstr "" +msgstr "Decimalni Razdjelnik mora biti jedan znak" #. Label of the default (Small Text) field in DocType 'DocField' #. Label of the default (Small Text) field in DocType 'Report Filter' @@ -6640,46 +6706,46 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" -msgstr "" +msgstr "Standard" #: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" -msgstr "" +msgstr "Standard Šablon Adrese ne može se izbrisati" #. Label of the default_amend_naming (Select) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Amendment Naming" -msgstr "" +msgstr "Standard Imenovanje Izmjena" #. Label of the default_app (Select) field in DocType 'System Settings' #. Label of the default_app (Select) field in DocType 'User' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json msgid "Default App" -msgstr "" +msgstr "Standard Aplikacija" #. Label of the default_email_template (Link) field in DocType 'DocType' #. Label of the default_email_template (Link) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Email Template" -msgstr "" +msgstr "Standard Šablon e-pošte" #: frappe/email/doctype/email_account/email_account_list.js:13 msgid "Default Inbox" -msgstr "" +msgstr "Standard Sanduče Pristigle e-pošte" #. Label of the default_incoming (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:224 msgid "Default Incoming" -msgstr "" +msgstr "Standard Dolazna" #. Label of the is_default (Check) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Default Letter Head" -msgstr "" +msgstr "Stndard Zaglavlje" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -6688,113 +6754,113 @@ msgstr "" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Naming" -msgstr "" +msgstr "Standard Imenovanje" #. Label of the default_outgoing (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:232 msgid "Default Outgoing" -msgstr "" +msgstr "Standard Odlazna" #. Label of the default_portal_home (Data) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Portal Home" -msgstr "" +msgstr "Standard Početna Stranica Portala" #. Label of the default_print_format (Data) field in DocType 'DocType' #. Label of the default_print_format (Link) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Print Format" -msgstr "" +msgstr "Standard Format Ispisa" #. Label of the default_print_language (Link) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Default Print Language" -msgstr "" +msgstr "Standard Jezik Ispisa" #. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Default Redirect URI" -msgstr "" +msgstr "Standard URI Preusmjeravanja" #. Label of the default_role (Link) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Role at Time of Signup" -msgstr "" +msgstr "Standard Uloga u Trenutku Prijave" #: frappe/email/doctype/email_account/email_account_list.js:16 msgid "Default Sending" -msgstr "" +msgstr "Standard Slanja" #: frappe/email/doctype/email_account/email_account_list.js:7 msgid "Default Sending and Inbox" -msgstr "" +msgstr "Standard Slanja i Prijema" #. Label of the sort_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Field" -msgstr "" +msgstr "Standard Polje Sortiranja" #. Label of the sort_order (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Order" -msgstr "" +msgstr "Standard Redoslijed Sortiranja" #. Label of the field (Data) field in DocType 'Print Format Field Template' #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Default Template For Field" -msgstr "" +msgstr "Standard Šablon Polja" #: frappe/website/doctype/website_theme/website_theme.js:28 msgid "Default Theme" -msgstr "" +msgstr "Standard Tema" #. Label of the default_role (Link) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Role" -msgstr "" +msgstr "Standard Uloga Korisnika" #. Label of the default_user_type (Link) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Type" -msgstr "" +msgstr "Standard Tip Korisnika" #. Label of the default (Text) field in DocType 'Custom Field' #. Label of the default_value (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "Default Value" -msgstr "" +msgstr "Standard Vrijednost" #. Label of the default_view (Select) field in DocType 'DocType' #. Label of the default_view (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Default View" -msgstr "" +msgstr "Standard Prikaz" #. Label of the default_workspace (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Default Workspace" -msgstr "" +msgstr "Standard Radni Prostor" #. Description of the 'Currency' (Link) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Default display currency" -msgstr "" +msgstr "Standard Valuta" #: frappe/core/doctype/doctype/doctype.py:1376 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" -msgstr "" +msgstr "Standard za tip polja 'Provjeri' {0} mora biti ili '0' ili '1'" #: frappe/core/doctype/doctype/doctype.py:1389 msgid "Default value for {0} must be in the list of options." -msgstr "" +msgstr "Standard vrijednost za {0} mora biti na listi opcija." #: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "" +msgstr "Standard {0}" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -6804,33 +6870,33 @@ msgstr "Standard: \"Kontaktirajte Nas\"" #. Name of a DocType #: frappe/core/doctype/defaultvalue/defaultvalue.json msgid "DefaultValue" -msgstr "" +msgstr "Standard Vrijednost" #. Label of the defaults_section (Section Break) field in DocType 'DocField' #. Label of the sb2 (Section Break) field in DocType 'User' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "" +msgstr "Standard Postavke" #: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" -msgstr "" +msgstr "Standard Postavke Ažurirane" #. Description of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Defines actions on states and the next step and allowed roles." -msgstr "" +msgstr "Definira akcije nad stanjima, sljedeći korak i dozvoljene uloge." #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." -msgstr "" +msgstr "Definira stanja radnog toka i pravila za dokument." #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delayed" -msgstr "" +msgstr "Odgođeno" #. Label of the delete (Check) field in DocType 'Custom DocPerm' #. Label of the delete (Check) field in DocType 'DocPerm' @@ -6841,101 +6907,102 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" -msgstr "" +msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" -msgstr "" +msgstr "Izbriši" #: frappe/www/me.html:65 msgid "Delete Account" -msgstr "" +msgstr "Izbriši Račun" #: frappe/public/js/frappe/form/grid.js:66 msgid "Delete All" -msgstr "" +msgstr "Izbriši Sve" #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" -msgstr "" +msgstr "Izbriši Kolonu" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 msgid "Delete Data" -msgstr "" +msgstr "Izbriši Podatke" #: frappe/public/js/frappe/views/kanban/kanban_view.js:106 msgid "Delete Kanban Board" -msgstr "" +msgstr "Izbriši Natpisnu Tablu" #: frappe/public/js/form_builder/components/Section.vue:125 msgctxt "Title of confirmation dialog" msgid "Delete Section" -msgstr "" +msgstr "Izbriši Sekciju" #: frappe/public/js/form_builder/components/Tabs.vue:64 msgctxt "Title of confirmation dialog" msgid "Delete Tab" -msgstr "" +msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" -msgstr "" +msgstr "Izbriši i Generiši Novi" #: frappe/public/js/form_builder/components/Section.vue:203 msgctxt "Button text" msgid "Delete column" -msgstr "" +msgstr "Izbriši Kolonu" #: frappe/public/js/frappe/form/footer/form_timeline.js:741 msgid "Delete comment?" -msgstr "" +msgstr "Izbriši komentar?" #: frappe/public/js/form_builder/components/Section.vue:205 msgctxt "Button text" msgid "Delete entire column with fields" -msgstr "" +msgstr "Izbriši cijelu kolonu s poljima" #: frappe/public/js/form_builder/components/Section.vue:134 msgctxt "Button text" msgid "Delete entire section with fields" -msgstr "" +msgstr "Izbriši cijelu sekciju s poljima" #: frappe/public/js/form_builder/components/Tabs.vue:73 msgctxt "Button text" msgid "Delete entire tab with fields" -msgstr "" +msgstr "Izbriši cijelu karticu s poljima" #: frappe/public/js/form_builder/components/Section.vue:132 msgctxt "Button text" msgid "Delete section" -msgstr "" +msgstr "Izbriši sekciju" #: frappe/public/js/form_builder/components/Tabs.vue:71 msgctxt "Button text" msgid "Delete tab" -msgstr "" +msgstr "Izbriši karticu" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 msgid "Delete this record to allow sending to this email address" -msgstr "" +msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" -msgstr "" +msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" -msgstr "" +msgstr "Trajno izbriši {0} stavke?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion @@ -6946,109 +7013,109 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Deleted" -msgstr "" +msgstr "Izbrisano" #. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "" +msgstr "Izbrisan DocType" #. Name of a DocType #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" -msgstr "" +msgstr "Izbrisan Dokument" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Deleted Documents" -msgstr "" +msgstr "Izbrisani Dokumenti" #. Label of the deleted_name (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Name" -msgstr "" +msgstr "Izbrisano Ime" #: frappe/desk/reportview.py:606 msgid "Deleted all documents successfully" -msgstr "" +msgstr "Svi dokumenti su uspješno izbrisani" #: frappe/desk/reportview.py:583 msgid "Deleting {0}" -msgstr "" +msgstr "Brisanje {0} u toku" #: frappe/public/js/frappe/list/bulk_operations.js:202 msgid "Deleting {0} records..." -msgstr "" +msgstr "Brisanje {0} zapisa u toku..." #: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." -msgstr "" +msgstr "Brisanje {0} u toku..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Deletion Steps " -msgstr "" +msgstr "Koraci Brisanja " #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 msgid "Deletion of this document is only permitted in developer mode." -msgstr "" +msgstr "Brisanje ovog dokumenta je dozvoljeno samo u modu razvoja." #. Label of the delimiter_options (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Delimiter Options" -msgstr "" +msgstr "Opcije Razdjelnika" #: frappe/utils/csvutils.py:76 msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." -msgstr "" +msgstr "Detekcija razdjelnika nije uspjela. Pokušajte omogućiti prilagođene razdjelnike i prilagodite opcije razdjelnika prema svojim podacima." #: frappe/public/js/frappe/views/reports/report_utils.js:296 msgid "Delimiter must be a single character" -msgstr "" +msgstr "Razdjelnik mora biti jedan znak" #. Label of the delivery_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delivery Status" -msgstr "" +msgstr "Status Dostave" #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/templates/includes/oauth_confirmation.html:17 msgid "Deny" -msgstr "" +msgstr "Odbij" #. Label of the department (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Department" -msgstr "" +msgstr "Odjel" #. Label of the dependencies (Data) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:323 #: frappe/www/attribution.html:29 msgid "Dependencies" -msgstr "" +msgstr "Zavisnosti" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Dependencies & Licenses" -msgstr "" +msgstr "Zavisnosti & Licence" #. Label of the depends_on (Code) field in DocType 'Custom Field' #. Label of the depends_on (Code) field in DocType 'Customize Form Field' #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Depends On" -msgstr "" +msgstr "Zavisi Od" #: frappe/public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "" +msgstr "Podređeni Od" #: frappe/public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" -msgstr "" +msgstr "Podređeni Od (uključujući)" #. Label of the description (Small Text) field in DocType 'Assignment Rule' #. Label of the description (Small Text) field in DocType 'Reminder' @@ -7100,33 +7167,33 @@ msgstr "Opis" #. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" +msgstr "Opis za stranicu sa listom, u običnom tekstu, samo nekoliko redova. (maksimalno 200 znakova)" #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Description to inform the user about any action that is going to be performed" -msgstr "" +msgstr "Opis o informisanju korisnika o bilo kojoj radnji koja će se izvršiti" #. Label of the designation (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Designation" -msgstr "" +msgstr "Pozicija" #. Label of the desk_access (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Desk Access" -msgstr "" +msgstr "Pristup Radnoj Površini" #. Label of the desk_settings_section (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Desk Settings" -msgstr "" +msgstr "Postavke Radne Površine" #. Label of the desk_theme (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Desk Theme" -msgstr "" +msgstr "Tema Radne Površine" #. Name of a role #: frappe/automation/doctype/reminder/reminder.json @@ -7156,22 +7223,23 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Desk User" -msgstr "" +msgstr "Korisnik Radne Površine" #. Name of a DocType #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Desktop Icon" -msgstr "" +msgstr "Ikona Radne Površine" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 msgid "Desktop Icon already exists" -msgstr "" +msgstr "Ikona Radne Površine već postoji" #. Label of the details_tab (Tab Break) field in DocType 'Module Def' #. Label of the details (Code) field in DocType 'Scheduled Job Log' @@ -7187,45 +7255,45 @@ msgstr "" #: frappe/public/js/frappe/form/layout.js:153 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" -msgstr "" +msgstr "Detalji" #. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Detect CSV type" -msgstr "" +msgstr "Otkrij CSV tip" #: frappe/core/page/permission_manager/permission_manager.js:494 msgid "Did not add" -msgstr "" +msgstr "Nije dodano" #: frappe/core/page/permission_manager/permission_manager.js:388 msgid "Did not remove" -msgstr "" +msgstr "Nije uklonjeno" #: frappe/public/js/frappe/utils/diffview.js:57 msgid "Diff" -msgstr "" +msgstr "Razlika" #. Description of the 'States' (Section Break) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." -msgstr "" +msgstr "Ovaj dokument može postojati u različitim \"stanjima\". Kao što su \"Otvoreno\", \"Odobrenje na čekanju\" itd." #. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Digits" -msgstr "" +msgstr "Cifre" #. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Directory Server" -msgstr "" +msgstr "Imenički Poslužitelj" #. Label of the disable_auto_refresh (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Auto Refresh" -msgstr "" +msgstr "Onemogućite Automatsko Osvježavanje" #. Label of the disable_automatic_recency_filters (Check) field in DocType #. 'List View Settings' @@ -7237,82 +7305,82 @@ msgstr "Onemogući Nedavne Automatske Filtere" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Change Log Notification" -msgstr "" +msgstr "Onemogući Obavještenja Zapisnika Promjena" #. Label of the disable_comment_count (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Comment Count" -msgstr "" +msgstr "Onemogući Brojanje Komentara" #. Label of the disable_comments (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Comments" -msgstr "" +msgstr "Onemogući Komentare" #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Disable Contact Us Page" -msgstr "" +msgstr "Onemogući Kontaktirajte Nas stranicu" #. Label of the disable_count (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Count" -msgstr "" +msgstr "Onemogući Brojanje" #. Label of the disable_document_sharing (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Document Sharing" -msgstr "" +msgstr "Onemogući Dijeljenje Dokumenata" #. Label of the disable_likes (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Likes" -msgstr "" +msgstr "Onemogući Lajkove" #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" -msgstr "" +msgstr "Onemogući Izvještaj" #. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Disable SMTP server authentication" -msgstr "" +msgstr "Onemogući autentifikaciju SMTP servera" #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Sidebar Stats" -msgstr "" +msgstr "Onemogući Stats Bočne Trake" #: frappe/website/doctype/website_settings/website_settings.js:146 msgid "Disable Signup for your site" -msgstr "" +msgstr "Onemogući Registraciju na Web Stranici" #. Label of the disable_standard_email_footer (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "" +msgstr "Onemogući Standardno Podnožje e-pošte" #. Label of the disable_system_update_notification (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable System Update Notification" -msgstr "" +msgstr "Onemogući Obavještenje Ažuriranju Sistema" #. Label of the disable_user_pass_login (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Username/Password Login" -msgstr "" +msgstr "Onemogući Prijavu preko Korisničkog Imena/Lozinke" #. Label of the disable_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Disable signups" -msgstr "" +msgstr "Onemogući Prijave" #. Label of the disabled (Check) field in DocType 'Assignment Rule' #. Label of the disabled (Check) field in DocType 'Auto Repeat' @@ -7339,70 +7407,70 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" -msgstr "" +msgstr "Onemogućeno" #: frappe/email/doctype/email_account/email_account.js:300 msgid "Disabled Auto Reply" -msgstr "" +msgstr "Automatski Odgovor Onemogućen" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 msgid "Discard" -msgstr "" +msgstr "Odbaci" #: frappe/website/doctype/web_form/templates/web_form.html:44 msgctxt "Button in web form" msgid "Discard" -msgstr "" +msgstr "Odbaci" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "" +msgstr "Odbaci" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" -msgstr "" +msgstr "Odbaci {0}" #: frappe/public/js/frappe/web_form/web_form.js:184 msgid "Discard?" -msgstr "" +msgstr "Odbaci?" #: frappe/desk/form/save.py:75 msgid "Discarded" -msgstr "" +msgstr "Odbačeno" #. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." -msgstr "" +msgstr "Odricanje od odgovornosti: Ovi indeksi se predlažu na osnovu podataka i upita izvedenih tokom ovog snimanja. Ovi prijedlozi mogu, ali i ne moraju pomoći." #. Name of a DocType #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Discussion Reply" -msgstr "" +msgstr "Odgovor Diskusije" #. Name of a DocType #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Discussion Topic" -msgstr "" +msgstr "Tema Diskusije" #: frappe/public/js/frappe/form/footer/form_timeline.js:638 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" -msgstr "" +msgstr "Odbaci" #: frappe/public/js/frappe/widgets/onboarding_widget.js:572 msgctxt "Stop showing the onboarding widget." msgid "Dismiss" -msgstr "" +msgstr "Odbaci" #. Label of the display (Section Break) field in DocType 'DocField' #. Label of the updates_tab (Tab Break) field in DocType 'System Settings' @@ -7411,83 +7479,86 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Display" -msgstr "" +msgstr "Prikaz" #. Label of the depends_on (Code) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Display Depends On" -msgstr "" +msgstr "Prikaz Zavisi Od" #. Label of the depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Display Depends On (JS)" -msgstr "" +msgstr "Prikaz Zavisi Od (JS)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 msgid "Divider" -msgstr "" +msgstr "Razdjelnik" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do Not Create New User " -msgstr "" +msgstr "Ne Kreiraj Novog Korisnika " #. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" -msgstr "" +msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu" #: frappe/public/js/frappe/form/grid.js:1193 msgid "Do not edit headers which are preset in the template" -msgstr "" +msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" -msgstr "" +msgstr "Želiš li i dalje nastaviti?" #: frappe/public/js/frappe/form/form.js:958 msgid "Do you want to cancel all linked documents?" -msgstr "" +msgstr "Želite li poništiti sve povezane dokumente?" #. Label of the webhook_docevent (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Event" -msgstr "" +msgstr "Dokument Događaj" #. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Events" -msgstr "" +msgstr "Dokument Događaji" #. Label of the doc_status (Select) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Doc Status" -msgstr "" +msgstr "Status Dokumenta" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocField" -msgstr "" +msgstr "Dokument Polje" #. Name of a DocType #: frappe/core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "" +msgstr "Dokument Dozvole" #. Name of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "DocShare" -msgstr "" +msgstr "Dokument Dijeljenje" #: frappe/workflow/doctype/workflow/workflow.js:264 msgid "DocStatus of the following states have changed:
{0}
\n" "\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n" "\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" "\t\t\t\t" -msgstr "" +msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}
\n" +"\t\t\t\tŽelite li ažurirati dokument status postojećih dokumenata u tim stanjima?
\n" +"\t\t\t\tOvo ne poništava nikakav efekat unijet postojećim statusom dokumenta.\n" +"\t\t\t\t" #. Label of the document_type (Link) field in DocType 'Amended Document Naming #. Settings' @@ -7507,6 +7578,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7529,108 +7601,108 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:164 #: frappe/website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "" +msgstr "DocType" #: frappe/core/doctype/doctype/doctype.py:1577 msgid "DocType {0} provided for the field {1} must have atleast one Link field" -msgstr "" +msgstr "DocType {0} predviđen za polje {1} mora imati najmanje jedno polje Veze" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/doctype_action/doctype_action.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Action" -msgstr "" +msgstr "DocType Radnja" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #. Label of the doctype_event (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "DocType Event" -msgstr "" +msgstr "DocType Događaj" #. Name of a DocType #: frappe/custom/doctype/doctype_layout/doctype_layout.json msgid "DocType Layout" -msgstr "" +msgstr "DocType Izgled" #. Name of a DocType #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json msgid "DocType Layout Field" -msgstr "" +msgstr "DocType Izgled Polja" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/doctype_link/doctype_link.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Link" -msgstr "" +msgstr "DocType Veza" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType State" -msgstr "" +msgstr "DocType Stanje" #. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:479 msgid "DocType View" -msgstr "" +msgstr "DocType Prikaz" #: frappe/core/doctype/doctype/doctype.py:656 msgid "DocType can not be merged" -msgstr "" +msgstr "DocType se ne može spojiti" #: frappe/core/doctype/doctype/doctype.py:650 msgid "DocType can only be renamed by Administrator" -msgstr "" +msgstr "DocType može preimenovati samo Administrator" #. Description of a DocType #: frappe/core/doctype/doctype/doctype.json msgid "DocType is a Table / Form in the application." -msgstr "" +msgstr "DocType je Tabela / Obrazac u aplikaciji." #: frappe/integrations/doctype/webhook/webhook.py:79 msgid "DocType must be Submittable for the selected Doc Event" -msgstr "" +msgstr "DocType mora imati mogućnost podnošenja za odabrani Događaj Dokumenta" #: frappe/client.py:403 msgid "DocType must be a string" -msgstr "" +msgstr "DocType mora biti niz" #: frappe/public/js/form_builder/store.js:154 msgid "DocType must have atleast one field" -msgstr "" +msgstr "DocType mora imati najmanje jedno polje" #: frappe/core/doctype/log_settings/log_settings.py:57 msgid "DocType not supported by Log Settings." -msgstr "" +msgstr "DocType nije podržan u Postavkama Zapisnika." #. Description of the 'Document Type' (Link) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "DocType on which this Workflow is applicable." -msgstr "" +msgstr "DocType na koji je ovaj Radni Tok primjenjiv." #: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" -msgstr "" +msgstr "DocType Obavezan" #: frappe/modules/utils.py:175 msgid "DocType {0} does not exist." -msgstr "" +msgstr "DocType {0} ne postoji." #: frappe/modules/utils.py:238 msgid "DocType {} not found" -msgstr "" +msgstr "DocType {} nije pronađen" #: frappe/core/doctype/doctype/doctype.py:1028 msgid "DocType's name should not start or end with whitespace" -msgstr "" +msgstr "DocType naziv ne smije počinjati niti završavati razmakom" #: frappe/core/doctype/doctype/doctype.js:67 msgid "DocTypes cannot be modified, please use {0} instead" -msgstr "" +msgstr "DocTypes se ne mogu mijenjati, umjesto toga koristite {0}" #. Label of the ref_doctype (Link) field in DocType 'Document Follow' #: frappe/email/doctype/document_follow/document_follow.json @@ -7640,11 +7712,11 @@ msgstr "DocType" #: frappe/core/doctype/doctype/doctype.py:1022 msgid "Doctype name is limited to {0} characters ({1})" -msgstr "" +msgstr "Doctype naziv je ograničen na {0} znakova ({1})" #: frappe/public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" -msgstr "" +msgstr "Obavezan DocType" #. Label of the reference_name (Data) field in DocType 'Milestone' #. Label of the document (Dynamic Link) field in DocType 'Audit Trail' @@ -7659,7 +7731,7 @@ msgstr "" #: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json #: frappe/public/js/frappe/views/render_preview.js:42 msgid "Document" -msgstr "" +msgstr "Dokument" #. Label of the actions (Table) field in DocType 'DocType' #. Label of the document_actions_section (Section Break) field in DocType @@ -7667,7 +7739,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Actions" -msgstr "" +msgstr "Radnje Dokumenta" #. Label of the document_follow_notifications_section (Section Break) field in #. DocType 'User' @@ -7675,22 +7747,22 @@ msgstr "" #: frappe/core/doctype/user/user.json #: frappe/email/doctype/document_follow/document_follow.json msgid "Document Follow" -msgstr "" +msgstr "Praćenje Dokumenta" #: frappe/desk/form/document_follow.py:94 msgid "Document Follow Notification" -msgstr "" +msgstr "Obavještenje Praćenju Dokumenta" #. Label of the document_name (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Document Link" -msgstr "" +msgstr "Veza Dokumenta" #. Label of the section_break_12 (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Document Linking" -msgstr "" +msgstr "Povezivanje Dokumenta" #. Label of the links (Table) field in DocType 'DocType' #. Label of the document_links_section (Section Break) field in DocType @@ -7698,23 +7770,23 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Links" -msgstr "" +msgstr "Veze Dokumenta" #: frappe/core/doctype/doctype/doctype.py:1211 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" -msgstr "" +msgstr "Veze Dokumenta Red #{0}: Nije moguće pronaći polje {1} u {2} DocType" #: frappe/core/doctype/doctype/doctype.py:1231 msgid "Document Links Row #{0}: Invalid doctype or fieldname." -msgstr "" +msgstr "Veze Dokument Red #{0}: Nevažeći doctype ili ime polja." #: frappe/core/doctype/doctype/doctype.py:1194 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" -msgstr "" +msgstr "Veze Dokumenta Red #{0}: Nadređeni DocType je obavezan za interne veze" #: frappe/core/doctype/doctype/doctype.py:1200 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" -msgstr "" +msgstr "Veze Dokumenta Red #{0}: Naziv polja tabele je obavezan za interne veze" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' @@ -7731,69 +7803,69 @@ msgstr "" #: frappe/email/doctype/document_follow/document_follow.json #: frappe/public/js/frappe/form/form_tour.js:62 msgid "Document Name" -msgstr "" +msgstr "Naziv Dokumenta" #: frappe/client.py:406 msgid "Document Name must be a string" -msgstr "" +msgstr "Naziv Dokumenta mora biti niz" #. Name of a DocType #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" -msgstr "" +msgstr "Pravilo Imenovanja Dokumenta" #. Name of a DocType #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" -msgstr "" +msgstr "Uslov Pravila Imenovanja Dokumenta" #. Name of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" -msgstr "" +msgstr "Postavke Imenovanja Dokumenata" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" -msgstr "" +msgstr "Dokument u Redu Čekanja" #: frappe/core/doctype/deleted_document/deleted_document_list.js:38 msgid "Document Restoration Summary" -msgstr "" +msgstr "Sažetak Vraćanja Dokumenta" #: frappe/core/doctype/deleted_document/deleted_document.py:68 msgid "Document Restored" -msgstr "" +msgstr "Dokument Vraćen" #: frappe/public/js/frappe/widgets/onboarding_widget.js:354 #: frappe/public/js/frappe/widgets/onboarding_widget.js:396 #: frappe/public/js/frappe/widgets/onboarding_widget.js:415 #: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Document Saved" -msgstr "" +msgstr "Dokument Spermljen" #. Label of the enable_email_share (Check) field in DocType 'Notification #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Document Share" -msgstr "" +msgstr "Dijeljenje Dokumenta" #. Name of a DocType #: frappe/core/doctype/document_share_key/document_share_key.json msgid "Document Share Key" -msgstr "" +msgstr "Ključ Dijeljenja Dokumenta" #. Label of the document_share_key_expiry (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Document Share Key Expiry (in Days)" -msgstr "" +msgstr "Istek Ključa Dijeljenje Dokumenta (u danima)" #. Name of a report #. Label of a Link in the Users Workspace #: frappe/core/report/document_share_report/document_share_report.json #: frappe/core/workspace/users/users.json msgid "Document Share Report" -msgstr "" +msgstr "Izvještaj Dijeljenju Dokumenta" #. Label of the states (Table) field in DocType 'DocType' #. Label of the document_states_section (Section Break) field in DocType @@ -7803,22 +7875,22 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document States" -msgstr "" +msgstr "Stanja Dokumenta" #: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 #: frappe/public/js/frappe/model/model.js:137 msgid "Document Status" -msgstr "" +msgstr "Status Dokumenta" #. Label of the tag (Link) field in DocType 'Tag Link' #: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Tag" -msgstr "" +msgstr "Oznaka Dokumenta" #. Label of the title (Data) field in DocType 'Tag Link' #: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Title" -msgstr "" +msgstr "Naziv Dokumenta" #. Label of the document_type (Link) field in DocType 'Assignment Rule' #. Label of the reference_type (Link) field in DocType 'Milestone' @@ -7870,124 +7942,124 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" -msgstr "" +msgstr "Tip Dokumenta" #: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" -msgstr "" +msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice" #: frappe/permissions.py:149 msgid "Document Type is not importable" -msgstr "" +msgstr "Tip Dokumenta nemože se importirati" #: frappe/permissions.py:145 msgid "Document Type is not submittable" -msgstr "" +msgstr "Tip Dokumenta se ne može podnijeti" #. Label of the document_type (Link) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Document Type to Track" -msgstr "" +msgstr "Tip Dokumenta za Praćenje" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." -msgstr "" +msgstr "Tip Dokumenta {0} je ponovljen." #. Label of the user_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types" -msgstr "" +msgstr "Tipovi Dokumenta" #. Label of the select_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types (Select Permissions Only)" -msgstr "" +msgstr "Tipovi Dokumenta (Samo Odabir Dozvole)" #. Label of the section_break_2 (Section Break) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types and Permissions" -msgstr "" +msgstr "Tipovi Dokumenata i Dozvole" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" -msgstr "" +msgstr "Dokument Otključan" #: frappe/desk/form/document_follow.py:56 msgid "Document follow is not enabled for this user." -msgstr "" +msgstr "Praćenje dokumenta nije omogućeno za ovog korisnika." #: frappe/public/js/frappe/list/list_view.js:1157 msgid "Document has been cancelled" -msgstr "" +msgstr "Dokument je otkazan" #: frappe/public/js/frappe/list/list_view.js:1156 msgid "Document has been submitted" -msgstr "" +msgstr "Dokument je podnesen" #: frappe/public/js/frappe/list/list_view.js:1155 msgid "Document is in draft state" -msgstr "" +msgstr "Dokument je u stanju nacrta" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Document is only editable by users with role" -msgstr "" +msgstr "Dokument mogu uređivati samo korisnici sa ulogom" #: frappe/core/doctype/communication/communication.js:182 msgid "Document not Relinked" -msgstr "" +msgstr "Dokument nije ponovo povezan" #: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 msgid "Document renamed from {0} to {1}" -msgstr "" +msgstr "Dokument je preimenovan iz {0} u {1}" #: frappe/public/js/frappe/form/toolbar.js:164 msgid "Document renaming from {0} to {1} has been queued" -msgstr "" +msgstr "Preimenovanje dokumenta iz {0} u {1} je stavljeno u red čekanja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Document type is required to create a dashboard chart" -msgstr "" +msgstr "Tip Dokumenta je obavezan za kreiranje grafikona nadzorne table" #: frappe/core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" -msgstr "" +msgstr "Dokument {0} je već obnovljen" #: frappe/workflow/doctype/workflow_action/workflow_action.py:203 msgid "Document {0} has been set to state {1} by {2}" -msgstr "" +msgstr "Dokument {0} je postavljen na stanje {1} od {2}" #: frappe/client.py:430 msgid "Document {0} {1} does not exist" -msgstr "" +msgstr "Dokument {0} {1} ne postoji" #. Label of the documentation (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" -msgstr "" +msgstr "Veza Dokumentacije" #. Label of the documentation_url (Data) field in DocType 'DocField' #. Label of the documentation_url (Data) field in DocType 'Module Onboarding' #: frappe/core/doctype/docfield/docfield.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Documentation URL" -msgstr "" +msgstr "URL Dokumentacije" #: frappe/public/js/frappe/form/templates/form_dashboard.html:17 msgid "Documents" -msgstr "" +msgstr "Dokumenti" #: frappe/core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" -msgstr "" +msgstr "Dokumenti uspješno vraćeni" #: frappe/core/doctype/deleted_document/deleted_document_list.js:33 msgid "Documents that failed to restore" -msgstr "" +msgstr "Dokumenti koji nisu uspješno vraćeni" #: frappe/core/doctype/deleted_document/deleted_document_list.js:29 msgid "Documents that were already restored" -msgstr "" +msgstr "Dokumenti koji su već vraćeni" #. Name of a DocType #. Label of the domain (Data) field in DocType 'Domain' @@ -7997,32 +8069,32 @@ msgstr "" #: frappe/core/doctype/has_domain/has_domain.json #: frappe/email/doctype/email_account/email_account.json msgid "Domain" -msgstr "" +msgstr "Domena" #. Label of the domain_name (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Domain Name" -msgstr "" +msgstr "Naziv Domena" #. Name of a DocType #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" -msgstr "" +msgstr "Postavke Domena" #. Label of the domains_html (HTML) field in DocType 'Domain Settings' #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domains HTML" -msgstr "" +msgstr "HTML Domena" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "" +msgstr "Nemojte HTML kodirati HTML oznake poput <script> ili samo znakove poput < ili >, jer bi se mogli namjerno koristiti u ovom polju" #: frappe/public/js/frappe/data_import/import_preview.js:272 msgid "Don't Import" -msgstr "" +msgstr "Ne importiraj" #. Label of the override_status (Check) field in DocType 'Workflow' #. Label of the avoid_status_override (Check) field in DocType 'Workflow @@ -8030,12 +8102,12 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Don't Override Status" -msgstr "" +msgstr "Ne Poništavaj Status" #. Label of the mute_emails (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Don't Send Emails" -msgstr "" +msgstr "Ne Šalji E-poštu" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize @@ -8043,12 +8115,12 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "" +msgstr "Ne kodiraj HTML oznake poput <script> ili samo znakove poput < ili >, jer bi se mogli namjerno koristiti u ovom polju" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" -msgstr "" +msgstr "Nemate račun?" #: frappe/public/js/frappe/form/form_tour.js:16 #: frappe/public/js/frappe/ui/messages.js:238 @@ -8056,161 +8128,161 @@ msgstr "" #: frappe/public/js/print_format_builder/HTMLEditor.vue:5 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "Gotovo" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Donut" -msgstr "" +msgstr "Krofna" #: frappe/public/js/form_builder/components/EditableInput.vue:43 msgid "Double click to edit label" -msgstr "" +msgstr "Dvaput klikni za uređivanje oznake" #: frappe/core/doctype/file/file.js:15 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" -msgstr "" +msgstr "Preuzmi" #: frappe/public/js/frappe/views/reports/report_utils.js:237 msgctxt "Export report" msgid "Download" -msgstr "" +msgstr "Preuzmi" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/desk/page/backups/backups.js:4 msgid "Download Backups" -msgstr "" +msgstr "Preuzmi Sigurnosne Kopije" #: frappe/templates/emails/download_data.html:6 msgid "Download Data" -msgstr "" +msgstr "Preuzmi Podatke" #: frappe/desk/page/backups/backups.js:14 msgid "Download Files Backup" -msgstr "" +msgstr "Preuzmi Datoteku Sigurnosne Kopije" #: frappe/templates/emails/download_data.html:9 msgid "Download Link" -msgstr "" +msgstr "Link Preuzimanja" #: frappe/public/js/frappe/list/bulk_operations.js:134 msgid "Download PDF" -msgstr "" +msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" -msgstr "" +msgstr "Preuzmi izvještaj" #. Label of the download_template (Button) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Download Template" -msgstr "" +msgstr "Preuzmi Nacrt" #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 #: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" -msgstr "" +msgstr "Preuzmi Podatke" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "Preuzmi kao CSV datoteku" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" -msgstr "" +msgstr "Preuzmite vCard" #: frappe/contacts/doctype/contact/contact_list.js:4 msgid "Download vCards" -msgstr "" +msgstr "Preuzmite vCards" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" -msgstr "" +msgstr "Dr" #: frappe/public/js/frappe/model/indicator.js:73 #: frappe/public/js/frappe/ui/filters/filter.js:538 msgid "Draft" -msgstr "" +msgstr "Nacrt" #: frappe/public/js/frappe/views/workspace/blocks/header.js:46 #: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 #: frappe/public/js/frappe/widgets/base_widget.js:33 msgid "Drag" -msgstr "" +msgstr "Povuci" #: frappe/public/js/form_builder/components/Tabs.vue:189 msgid "Drag & Drop a section here from another tab" -msgstr "" +msgstr "Povuci i Ispusti sekciju ovdje sa druge kartice" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 msgid "Drag and drop files here or upload from" -msgstr "" +msgstr "Povuci i Ispusti datoteke ovdje ili ih učitaj iz" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." -msgstr "" +msgstr "Povuci kolone da postavite redoslijed. Širina kolone se postavlja u procentima. Ukupna širina ne smije biti veća od 100. Kolone označene crvenom bojom će biti uklonjene." #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 msgid "Drag elements from the sidebar to add. Drag them back to trash." -msgstr "" +msgstr "Povuci elemente sa bočne trake da ih dodate. Povuci ih nazad u smeće." #: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 msgid "Drag to add state" -msgstr "" +msgstr "Pvuci da dodate stanje" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 msgid "Drop files here" -msgstr "" +msgstr "Ispusti datoteke ovdje" #. Label of the section_break_2 (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Dropdowns" -msgstr "" +msgstr "Padajući Meniji" #. Label of the date (Date) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Due Date" -msgstr "" +msgstr "Krajnji Rok" #. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Due Date Based On" -msgstr "" +msgstr "Krajnji Rok na osnovu" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" -msgstr "" +msgstr "Kopiraj" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" -msgstr "" +msgstr "Dvostruki Unos" #: frappe/public/js/frappe/list/list_filter.js:144 msgid "Duplicate Filter Name" -msgstr "" +msgstr "Duplicirani Naziv Filtera" #: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 msgid "Duplicate Name" -msgstr "" +msgstr "Duplicirano Ime" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "Dupliciraj Red" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" -msgstr "" +msgstr "Duplicera trenuti red" #: frappe/public/js/form_builder/components/Field.vue:245 msgid "Duplicate field" -msgstr "" +msgstr "Dupliciraj polje" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the duration (Float) field in DocType 'Recorder' @@ -8227,31 +8299,31 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" -msgstr "" +msgstr "Trajanje" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Dynamic" -msgstr "" +msgstr "Dinamično" #. Label of the dynamic_filters_section (Section Break) field in DocType #. 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Dynamic Filters" -msgstr "" +msgstr "Dinamički Filteri" #. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dynamic Filters JSON" -msgstr "" +msgstr "JSON Dinamičkog Filtera" #. Label of the dynamic_filters_section (Section Break) field in DocType #. 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Dynamic Filters Section" -msgstr "" +msgstr "Sekcija Dinamičkog Filtera" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Name of a DocType @@ -8266,27 +8338,27 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Dynamic Link" -msgstr "" +msgstr "Dinamička Veza" #. Label of the dynamic_report_filters_section (Section Break) field in DocType #. 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Dynamic Report Filters" -msgstr "" +msgstr "Filteri za dinamičke izvještaje" #. Label of the dynamic_route (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Route" -msgstr "" +msgstr "Dinamička Ruta" #. Label of the dynamic_template (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Template" -msgstr "" +msgstr "Dinamički Šablon" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "ESC" -msgstr "" +msgstr "ESC" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -8299,9 +8371,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8311,81 +8383,81 @@ msgstr "" #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 #: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "" +msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" -msgstr "" +msgstr "Uredi" #: frappe/website/doctype/web_form/templates/web_form.html:23 msgctxt "Button in web form" msgid "Edit" -msgstr "" +msgstr "Uredi" #: frappe/public/js/frappe/form/grid_row.js:345 msgctxt "Edit grid row" msgid "Edit" -msgstr "" +msgstr "Uredi" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 msgid "Edit Address in Form" -msgstr "" +msgstr "Uredite Adresu u Obrascu" #: frappe/templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" -msgstr "" +msgstr "Uredi Postavke Automatskog Izvještaja e-poštom" #: frappe/public/js/frappe/widgets/widget_dialog.js:38 msgid "Edit Chart" -msgstr "" +msgstr "Uredi Grafikon" #: frappe/public/js/frappe/widgets/widget_dialog.js:50 msgid "Edit Custom Block" -msgstr "" +msgstr "Uredi Prilagođeni Blok" #: frappe/printing/page/print_format_builder/print_format_builder.js:727 msgid "Edit Custom HTML" -msgstr "" +msgstr "Uredi Prilagođeni HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" -msgstr "" +msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" -msgstr "" +msgstr "Uredi DocType" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 #: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" -msgstr "" +msgstr "Uredi Postojeći" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 msgid "Edit Filters" -msgstr "" +msgstr "Uredi Filtere" #: frappe/public/js/print_format_builder/PrintFormat.vue:29 msgid "Edit Footer" -msgstr "" +msgstr "Uredi Podnožje" #: frappe/printing/doctype/print_format/print_format.js:28 msgid "Edit Format" -msgstr "" +msgstr "Uredi Format" #: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" -msgstr "" +msgstr "Uredi Punu Formu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 #: frappe/public/js/print_format_builder/Field.vue:83 msgid "Edit HTML" -msgstr "" +msgstr "Uredi HTML" #: frappe/public/js/print_format_builder/PrintFormat.vue:9 msgid "Edit Header" -msgstr "" +msgstr "Uredi Zaglavlje" #: frappe/printing/page/print_format_builder/print_format_builder.js:609 #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 @@ -8394,43 +8466,43 @@ msgstr "Uredi Naslov" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Edit Letter Head" -msgstr "" +msgstr "Uredi Zaglavlje" #: frappe/public/js/print_format_builder/PrintFormat.vue:35 msgid "Edit Letter Head Footer" -msgstr "" +msgstr "Uredi Podnožje Zaglavlja" #: frappe/public/js/frappe/widgets/widget_dialog.js:42 msgid "Edit Links" -msgstr "" +msgstr "Uredi Veze" #: frappe/public/js/frappe/widgets/widget_dialog.js:44 msgid "Edit Number Card" -msgstr "" +msgstr "Uredi Numeričku Karticu" #: frappe/public/js/frappe/widgets/widget_dialog.js:46 msgid "Edit Onboarding" -msgstr "" +msgstr "Uredi Introdukciju" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" -msgstr "" +msgstr "Uredi Format Ispisa" #: frappe/www/me.html:38 msgid "Edit Profile" -msgstr "" +msgstr "Uredi Profil" #: frappe/printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" -msgstr "" +msgstr "Uredi Svojstva" #: frappe/public/js/frappe/widgets/widget_dialog.js:48 msgid "Edit Quick List" -msgstr "" +msgstr "Uredi Brzu Listu" #: frappe/public/js/frappe/widgets/widget_dialog.js:40 msgid "Edit Shortcut" -msgstr "" +msgstr "Uredi Prečicu" #. Label of the edit_values (Button) field in DocType 'Web Page Block' #. Label of the edit_navbar_template_values (Button) field in DocType 'Website @@ -8441,33 +8513,33 @@ msgstr "" #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Edit Values" -msgstr "" +msgstr "Uredi Vrijednosti" #: frappe/desk/doctype/note/note.js:11 msgid "Edit mode" -msgstr "" +msgstr "Mod uređivanja" #: frappe/public/js/form_builder/components/Field.vue:254 msgid "Edit the {0} Doctype" -msgstr "" +msgstr "Uredi {0} Doctype" #: frappe/printing/page/print_format_builder/print_format_builder.js:721 msgid "Edit to add content" -msgstr "" +msgstr "Uredi da dodate sadržaj" #: frappe/public/js/frappe/web_form/web_form.js:446 msgctxt "Button in web form" msgid "Edit your response" -msgstr "" +msgstr "Uredi vaš odgovor" #: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." -msgstr "" +msgstr "Uredi vaš Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." #: frappe/public/js/frappe/views/reports/report_view.js:678 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "" +msgstr "Uredi {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' @@ -8475,31 +8547,31 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:57 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" -msgstr "" +msgstr "Uređivanje Mreže" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Editing Row" -msgstr "" +msgstr "Uređivanje Reda" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 msgid "Editing {0}" -msgstr "" +msgstr "Uređivanje {0}" #. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "" +msgstr "Npr. smsgateway.com/api/send_sms.cgi" #: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." -msgstr "" +msgstr "Obavezan je ili ključ ili IP zastavica." #. Label of the element_selector (Data) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Element Selector" -msgstr "" +msgstr "Birač Elementa" #. Label of a Card Break in the Tools Workspace #. Option for the 'Type' (Select) field in DocType 'Communication' @@ -8527,16 +8599,15 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" -msgstr "" +msgstr "E-pošta" #. Label of a Link in the Tools Workspace #. Label of the email_account (Link) field in DocType 'Communication' @@ -8554,28 +8625,28 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Email Account" -msgstr "" +msgstr "Račun e-pošte" #: frappe/email/doctype/email_account/email_account.py:343 msgid "Email Account Disabled." -msgstr "" +msgstr "Račun e-pošte je onemogućen." #. Label of the email_account_name (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Email Account Name" -msgstr "" +msgstr "Ime Računa e-pošte" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" -msgstr "" +msgstr "Račun e-pošte je dodan više puta" #: frappe/email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" -msgstr "" +msgstr "Račun e-pošte nije postavljen. Molimo kreirajte novi račun e-pošte iz Postavke > Račun e-pošte" #: frappe/email/doctype/email_account/email_account.py:576 msgid "Email Account {0} Disabled" -msgstr "" +msgstr "Račun e-pošte {0} Onemogućen" #. Label of the email_id (Data) field in DocType 'Address' #. Label of the email_id (Data) field in DocType 'Contact' @@ -8589,55 +8660,53 @@ msgstr "" #: frappe/www/complete_signup.html:11 frappe/www/login.html:184 #: frappe/www/login.html:216 msgid "Email Address" -msgstr "" +msgstr "Adresa e-pošte" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Email Address whose Google Contacts are to be synced." -msgstr "" +msgstr "Adresa e-pošte čiji se Google kontakti trebaju sinhronizirati." #: frappe/email/doctype/email_group/email_group.js:43 msgid "Email Addresses" -msgstr "" +msgstr "Adrese e-pošte" #. Label of a Link in the Tools Workspace #. Name of a DocType #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Email Domain" -msgstr "" +msgstr "Domena e-pošte" #. Name of a DocType #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" -msgstr "" +msgstr "Zastavica reda čekanja e-pošte" #. Label of the email_footer_address (Small Text) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "" +msgstr "Adresa Podnožju e-pošte" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" -msgstr "" +msgstr "Grupa e-pošte" #. Name of a DocType #: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group Member" -msgstr "" +msgstr "Član Grupe e-pošte" #. Label of the email_header (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Email Header" -msgstr "" +msgstr "Zaglavlje e-pošte" #. Label of the email_id (Data) field in DocType 'Contact Email' #. Label of the email_id (Data) field in DocType 'User Email' @@ -8647,68 +8716,61 @@ msgstr "" #: frappe/core/doctype/user_email/user_email.json #: frappe/email/doctype/email_rule/email_rule.json msgid "Email ID" -msgstr "" +msgstr "E-pošta" #. Label of the email_ids (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Email IDs" -msgstr "" +msgstr "E-pošta" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" -msgstr "" +msgstr "E-pošta" #. Label of the email_inbox (Section Break) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Inbox" -msgstr "" +msgstr "Prijemno Sanduče e-pošte" #. Name of a DocType #: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue" -msgstr "" +msgstr "Red Čekanja e-pošte" #. Name of a DocType #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Email Queue Recipient" -msgstr "" +msgstr "Primatelj e-pošte Reda Čekanja" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." -msgstr "" +msgstr "Brisanje Reda Čekanja e-pošte prekinuto je zbog previše grešaka." #. Description of a DocType #: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue records." -msgstr "" +msgstr "Zapisi Reda Čekanja e-pošte." #. Label of the email_reply_help (HTML) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Email Reply Help" -msgstr "" +msgstr "Pomoć Odgovora e-pošte" #. Label of the email_retry_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Retry Limit" -msgstr "" +msgstr "Broj Pokušaja e-pošte" #. Name of a DocType #: frappe/email/doctype/email_rule/email_rule.json msgid "Email Rule" -msgstr "" +msgstr "Pravilo e-pošte" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" -msgstr "" - -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" +msgstr "E-pošta poslana" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8722,22 +8784,22 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email Settings" -msgstr "" +msgstr "Postavke e-pošte" #. Label of the email_signature (Text Editor) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Email Signature" -msgstr "" +msgstr "Potpis e-pošte" #. Label of the email_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Status" -msgstr "" +msgstr "Status e-pošte" #. Label of the email_sync_option (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Email Sync Option" -msgstr "" +msgstr "Opcija Sinhronizacije e-pošte" #. Label of a Link in the Tools Workspace #. Label of the email_template (Link) field in DocType 'Communication' @@ -8745,80 +8807,88 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" -msgstr "" +msgstr "Šablon e-pošte" #. Label of the enable_email_threads_on_assigned_document (Check) field in #. DocType 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Email Threads on Assigned Document" -msgstr "" +msgstr "Niti e-pošte na Dodeljenom Dokumentu" #. Label of the email_to (Small Text) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email To" -msgstr "" +msgstr "E-pošta za" #. Name of a DocType #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" -msgstr "" +msgstr "Otkaži Pretplatu na e-poštu" #: frappe/core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" -msgstr "" +msgstr "E-pošta je označena kao neželjena pošta" #: frappe/core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" -msgstr "" +msgstr "E-pošta je premještena u smeće" #: frappe/core/doctype/user/user.js:272 msgid "Email is mandatory to create User Email" -msgstr "" +msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" -msgstr "" +msgstr "E-pošta nije poslana na {0} (otkazana / onemogućena)" #: frappe/utils/oauth.py:163 msgid "Email not verified with {0}" -msgstr "" +msgstr "E-pošta nije potvrđena sa {0}" #: frappe/email/doctype/email_queue/email_queue.js:19 msgid "Email queue is currently suspended. Resume to automatically send other emails." -msgstr "" +msgstr "Red čekanja e-pošte trenutno je obustavljen. Nastavi za automatsko slanje drugih e-poruka." #. Label of the section_break_udjs (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Emails" -msgstr "" +msgstr "E-pošta" #: frappe/email/doctype/email_account/email_account.js:216 msgid "Emails Pulled" -msgstr "" +msgstr "E-pošta Povučena" #: frappe/email/doctype/email_account/email_account.py:934 msgid "Emails are already being pulled from this account." -msgstr "" +msgstr "E-pošta se već povlači s ovog računa." -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" -msgstr "" +msgstr "E-pošta je prigušena" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Emails will be sent with next possible workflow actions" -msgstr "" +msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka" #: frappe/website/doctype/web_form/web_form.js:34 msgid "Embed code copied" -msgstr "" +msgstr "Kod Ugradnje kopiran" + +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "Prazan alias nije dopušten" #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" -msgstr "" +msgstr "Prazna kolona" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "Prazni argumenti niza nisu dopušteni" #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' @@ -8827,67 +8897,73 @@ msgstr "" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Enable" -msgstr "" +msgstr "Omogući" #. Label of the enable_address_autocompletion (Check) field in DocType #. 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Enable Address Autocompletion" -msgstr "" +msgstr "Omogući Automatsko Dovršavanje Adrese" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" -msgstr "" +msgstr "Omogućite Dozvoli Automatsko Ponavljanje za tip dokumenta {0} u obrascu za prilagođavanje" #. Label of the enable_auto_reply (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Enable Auto Reply" -msgstr "" +msgstr "Omogući Automatski Odgovor" #. Label of the enable_automatic_linking (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Enable Automatic Linking in Documents" -msgstr "" +msgstr "Omogući Automatsko Povezivanje u Dokumentima" #. Label of the enable_comments (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Enable Comments" -msgstr "" +msgstr "Omogući Komentare" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "Omogući Dinamičku Registraciju Klijenta" #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" -msgstr "" +msgstr "Omogući Obavještenje e-poštom" #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Enable Email Notifications" -msgstr "" +msgstr "Omogući Obavještenja e-poštom" #: frappe/integrations/doctype/google_calendar/google_calendar.py:106 #: frappe/integrations/doctype/google_contacts/google_contacts.py:36 #: frappe/website/doctype/website_settings/website_settings.py:129 msgid "Enable Google API in Google Settings." -msgstr "" +msgstr "Omogućite Google API u Google Postavkama." #. Label of the enable_google_indexing (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" -msgstr "" +msgstr "Omogući Google Indeksiranje" #. Label of the enable_incoming (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:225 msgid "Enable Incoming" -msgstr "" +msgstr "Omogući Dolaznu" #. Label of the enable_onboarding (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Onboarding" -msgstr "" +msgstr "Omogući Introdukciju" #. Label of the enable_outgoing (Check) field in DocType 'User Email' #. Label of the enable_outgoing (Check) field in DocType 'Email Account' @@ -8895,105 +8971,106 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:233 msgid "Enable Outgoing" -msgstr "" +msgstr "Omogući odlazne" #. Label of the enable_password_policy (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Password Policy" -msgstr "" +msgstr "Omogući Pravila Lozinke" #. Label of the enable_prepared_report (Check) field in DocType 'Role #. Permission for Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Enable Prepared Report" -msgstr "" +msgstr "Omogući Pripremljeni Izvještaj" #. Label of the enable_print_server (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Print Server" -msgstr "" +msgstr "Omogući Ispisni Server" #. Label of the enable_push_notification_relay (Check) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Enable Push Notification Relay" -msgstr "" +msgstr "Omogući Relej Guranih Obavijesti" #. Label of the enable_rate_limit (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Enable Rate Limit" -msgstr "" +msgstr "Omogući Ograničenje Broja Upita" #. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Raw Printing" -msgstr "" +msgstr "Omogući Direktni Ispis" #: frappe/core/doctype/report/report.js:39 msgid "Enable Report" -msgstr "" +msgstr "Omogući Izvještaj" #. Label of the enable_scheduler (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Scheduled Jobs" -msgstr "" +msgstr "Omogući Planirane Poslove" #: frappe/core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" -msgstr "" +msgstr "Omogući Raspoređivač" #. Label of the enable_security (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Enable Security" -msgstr "" +msgstr "Omogući Sigurnost" #. Label of the enable_social_login (Check) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Enable Social Login" -msgstr "" +msgstr "Omogući Prijavu preko Društvenih Mreža" #. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Enable Social Sharing" -msgstr "" +msgstr "Omogući Dijeljenje preko Društvenim Mreža" #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" -msgstr "" +msgstr "Omogućite Praćenje Prikaza Stranica" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/twofactor.py:433 msgid "Enable Two Factor Auth" -msgstr "" +msgstr "Omogući Dvofaktorsku Autentifikaciju" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" -msgstr "" +msgstr "Omogućite način rada za programere da kreirate standardni Šablon Ispisa" #: frappe/website/doctype/web_template/web_template.py:33 msgid "Enable developer mode to create a standard Web Template" -msgstr "" +msgstr "Omogući način rada za programere da kreirate standardni Web Šablon" #. Description of the 'Enable Email Notification' (Check) field in DocType #. 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" +msgstr "Omogući obavještenje putem e-pošte za sve komentare ili lajkove primljene na vašem blog postu." #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" "opens modal." -msgstr "" +msgstr "Omogući ako na klik\n" +"otvara modalni." #. Label of the enable_view_tracking (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable in-app website tracking" -msgstr "" +msgstr "Omogućite praćenje web stranice u aplikaciji" #. Label of the enabled (Check) field in DocType 'Language' #. Label of the enabled (Check) field in DocType 'User' @@ -9014,19 +9091,19 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" -msgstr "" +msgstr "Omogućeno" #: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" -msgstr "" +msgstr "Raspoređivač Omogućen" #: frappe/email/doctype/email_account/email_account.py:1010 msgid "Enabled email inbox for user {0}" -msgstr "" +msgstr "Omogućeno prijemno sanduče e-pošte za korisnika {0}" #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'DocType' @@ -9035,22 +9112,22 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enables Calendar and Gantt views." -msgstr "" +msgstr "Omogućava Kalendar i Gantt prikaze." #: frappe/email/doctype/email_account/email_account.js:295 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" -msgstr "" +msgstr "Omogućavanje automatskog odgovora na računu dolazne e-pošte će poslati automatske odgovore na sve sinhronizirane e-poruke. Želite li nastaviti?" #. Description of a DocType #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" +msgstr "Omogućavanjem ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju." #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "" +msgstr "Omogućavanje ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju. " #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9059,24 +9136,24 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enabling this will submit documents in background" -msgstr "" +msgstr "Ako ovo omogućite, dokumenti će se podnijeti u pozadini" #. Label of the encrypt_backup (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Encrypt Backups" -msgstr "" +msgstr "Šifriraj Sigurnosne Kopije" #: frappe/utils/password.py:197 msgid "Encryption key is in invalid format!" -msgstr "" +msgstr "Ključ Šifriranja je u nevažećem formatu!" #: frappe/utils/password.py:212 msgid "Encryption key is invalid! Please check site_config.json" -msgstr "" +msgstr "Ključ Šifriranje je nevažeći! Provjeri site_config.json" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 msgid "End" -msgstr "" +msgstr "Kraj" #. Label of the end_date (Date) field in DocType 'Auto Repeat' #. Label of the end_date (Date) field in DocType 'Audit Trail' @@ -9087,121 +9164,121 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json msgid "End Date" -msgstr "" +msgstr "Datum Završetka" #. Label of the end_date_field (Select) field in DocType 'Calendar View' #: frappe/desk/doctype/calendar_view/calendar_view.json msgid "End Date Field" -msgstr "" +msgstr "Datum Završetka" #: frappe/website/doctype/web_page/web_page.py:208 msgid "End Date cannot be before Start Date!" -msgstr "" +msgstr "Datum Završetka ne može biti prije datuma početka!" #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Ended At" -msgstr "" +msgstr "Završeno" #. Label of the sb_endpoints_section (Section Break) field in DocType #. 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" -msgstr "" +msgstr "Krajnje Tačke" #. Label of the ends_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Ends on" -msgstr "" +msgstr "Završava" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Energy Point" -msgstr "" +msgstr "Rezultat Efektiviteta" #. Label of the enqueued_by (Data) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Enqueued By" -msgstr "" +msgstr "Dodato u Red Čekanja Od" #: frappe/core/doctype/recorder/recorder.py:125 msgid "Enqueued creation of indexes" -msgstr "" +msgstr "Izrada Indeksa u redu čekanja" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 msgid "Ensure the user and group search paths are correct." -msgstr "" +msgstr "Provjeri jesu li putevi pretraživanja korisnika i grupe ispravni." #: frappe/integrations/doctype/google_calendar/google_calendar.py:109 msgid "Enter Client Id and Client Secret in Google Settings." -msgstr "" +msgstr "Unesi Id klijenta i Tajnu klijenta u Google Postavke." #: frappe/templates/includes/login/login.js:351 msgid "Enter Code displayed in OTP App." -msgstr "" +msgstr "Unesi kod prikazan u OTP aplikaciji." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" -msgstr "" +msgstr "Unesi Primaoca(e) e-pošte" #. Label of the doc_type (Link) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enter Form Type" -msgstr "" +msgstr "Unesi Form Type" #: frappe/public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" msgid "Enter Value" -msgstr "" +msgstr "Unesi Vrijednost" #: frappe/public/js/frappe/form/form_tour.js:60 msgid "Enter a name for this {0}" -msgstr "" +msgstr "Unesite naziv za ovo {0}" #. Description of the 'User Defaults' (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." -msgstr "" +msgstr "Unesite zadana polja vrijednosti (ključeve) i vrijednosti. Ako dodate više vrijednosti za polje, bit će odabrana prva. Te se zadane vrijednosti također koriste za postavljanje \"podudaranja\" pravila dopuštenja . Da biste vidjeli popis polja, idite na \"Prilagodi obrazac\"." #: frappe/public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" -msgstr "" +msgstr "Unesi Naziv Mape" #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "" +msgstr "Ovdje unesi statičke parametre URL-a (npr. pošiljatelj=ERPNext, korisničko ime=ERPNext, lozinka=1234 itd.)" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "" +msgstr "Unesi url parametar za poruku" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "" +msgstr "Unesi url parametar za broj primatelja" #: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" -msgstr "" +msgstr "Unes vašu lozinku" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 msgid "Entity Name" -msgstr "" +msgstr "Naziv Entiteta" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 msgid "Entity Type" -msgstr "" +msgstr "Tip Entiteta" #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "" +msgstr "Jednako" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -9223,91 +9300,99 @@ msgstr "" #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" -msgstr "" +msgstr "Grеška" #: frappe/public/js/frappe/web_form/web_form.js:240 msgctxt "Title of error message in web form" msgid "Error" -msgstr "" +msgstr "Grеška" #. Name of a DocType #: frappe/core/doctype/error_log/error_log.json msgid "Error Log" -msgstr "" +msgstr "Zapisnik Grešaka" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Error Logs" -msgstr "" +msgstr "Zapisi Grešaka" #. Label of the error_message (Text) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" -msgstr "" +msgstr "Poruka Greške" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." -msgstr "" +msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...

Morate imati instaliranu i pokrenutu aplikaciju QZ Tray da biste koristili funkciju Direktni Ispis.

Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju." #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Error connecting via IMAP/POP3: {e}" -msgstr "" +msgstr "Greška pri povezivanju putem IMAP/POP3: {e}" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Error connecting via SMTP: {e}" -msgstr "" +msgstr "Greška pri povezivanju putem SMTP-a: {e}" #: frappe/email/doctype/email_domain/email_domain.py:101 msgid "Error has occurred in {0}" -msgstr "" +msgstr "Došlo je do greške u {0}" #: frappe/public/js/frappe/form/script_manager.js:199 msgid "Error in Client Script" -msgstr "" +msgstr "Greška u Klijent Skripti" #: frappe/public/js/frappe/form/script_manager.js:256 msgid "Error in Client Script." -msgstr "" +msgstr "Greška u Klijent Skripti." #: frappe/printing/doctype/letter_head/letter_head.js:21 msgid "Error in Header/Footer Script" -msgstr "" +msgstr "Greška Skripte Zaglavlja/Podnožja" #: frappe/email/doctype/notification/notification.py:598 #: frappe/email/doctype/notification/notification.py:735 #: frappe/email/doctype/notification/notification.py:741 msgid "Error in Notification" -msgstr "" +msgstr "Greška u Obavještenju" #: frappe/utils/pdf.py:59 msgid "Error in print format on line {0}: {1}" -msgstr "" +msgstr "Greška u formatu za ispisivanje na liniji {0}: {1}" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Pogreška u {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Pogreška pri parsiranju ugniježđenih filtera: {0}" #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" -msgstr "" +msgstr "Greška prilikom povezivanja na račun e-pošte {0}" #: frappe/email/doctype/notification/notification.py:732 msgid "Error while evaluating Notification {0}. Please fix your template." -msgstr "" +msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." #: frappe/model/base_document.py:803 msgid "Error: Data missing in table {0}" -msgstr "" +msgstr "Greška: Podaci nedostaju u tabeli {0}" #: frappe/model/base_document.py:813 msgid "Error: Value missing for {0}: {1}" -msgstr "" +msgstr "Greška: Nedostaje vrijednost za {0}: {1}" #: frappe/model/base_document.py:807 msgid "Error: {0} Row #{1}: Value missing for: {2}" -msgstr "" +msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}" #. Label of the errors_generated_in_last_1_day_section (Section Break) field in #. DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Errors" -msgstr "" +msgstr "Greške" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Name of a DocType @@ -9315,109 +9400,109 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json msgid "Event" -msgstr "" +msgstr "Događaj" #. Label of the event_category (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Event Category" -msgstr "" +msgstr "Kategorija Događaja" #. Label of the event_frequency (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Event Frequency" -msgstr "" +msgstr "Učestalost Događaja" #. Label of the event_participants (Table) field in DocType 'Event' #. Name of a DocType #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json msgid "Event Participants" -msgstr "" +msgstr "Učesnici Događaja" #. Label of the enable_email_event_reminders (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Event Reminders" -msgstr "" +msgstr "Podsjetnici Događaja" #: frappe/integrations/doctype/google_calendar/google_calendar.py:493 #: frappe/integrations/doctype/google_calendar/google_calendar.py:577 msgid "Event Synced with Google Calendar." -msgstr "" +msgstr "Događaj je sinhronizovan sa Google Kalendarom." #. Label of the event_type (Data) field in DocType 'Recorder' #. Label of the event_type (Select) field in DocType 'Event' #: frappe/core/doctype/recorder/recorder.json #: frappe/desk/doctype/event/event.json msgid "Event Type" -msgstr "" +msgstr "Tip Događaja" #: frappe/public/js/frappe/ui/notifications/notifications.js:56 msgid "Events" -msgstr "" +msgstr "Događaji" #: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" -msgstr "" +msgstr "Događaji u Današnjem Kalendaru" #. Label of the everyone (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json #: frappe/public/js/frappe/form/templates/set_sharing.html:11 msgid "Everyone" -msgstr "" +msgstr "Svi" #. Description of the 'Custom Options' (Code) field in DocType 'Dashboard #. Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" -msgstr "" +msgstr "Primjer: \"boje\": [\"#d1d8dd\", \"#ff5858\"]" #. Label of the exact_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Exact Copies" -msgstr "" +msgstr "Tačne Kopije" #. Label of the example (HTML) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Example" -msgstr "" +msgstr "Primjer" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Example: \"/desk\"" -msgstr "" +msgstr "Primjer: \"/desk\"" #. Description of the 'Path' (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Example: #Tree/Account" -msgstr "" +msgstr "Primjer: #Stablo/Račun" #. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Example: 00001" -msgstr "" +msgstr "Primjer: 00001" #. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." -msgstr "" +msgstr "Primjer: Ako ovo postavite na 24:00, korisnik će biti odjavljen ako nije aktivan 24:00 sata." #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Example: {{ subject }}" -msgstr "" +msgstr "Primjer: {{ subject }}" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Excel" -msgstr "" +msgstr "Excel" #: frappe/public/js/frappe/form/controls/password.js:90 msgid "Excellent" -msgstr "" +msgstr "Odlično" #. Label of the exception (Text) field in DocType 'Data Import Log' #. Label of the exc_info (Code) field in DocType 'RQ Job' @@ -9426,7 +9511,7 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Exception" -msgstr "" +msgstr "Izuzetak" #. Label of the execute_section (Section Break) field in DocType 'System #. Console' @@ -9434,59 +9519,63 @@ msgstr "" #: frappe/desk/doctype/system_console/system_console.js:22 #: frappe/desk/doctype/system_console/system_console.json msgid "Execute" -msgstr "" +msgstr "Izvrši" #: frappe/desk/doctype/system_console/system_console.js:10 msgid "Execute Console script" -msgstr "" +msgstr "Izvršite skriptu konzole" #: frappe/public/js/frappe/ui/dropdown_console.js:125 msgid "Executing Code" -msgstr "" +msgstr "Izvršava se Kod" #: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." -msgstr "" +msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" -msgstr "" +msgstr "Vrijeme izvršenja: {0} sek" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Executive" -msgstr "" +msgstr "Izvršni" #. Label of the existing_role (Link) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "Existing Role" -msgstr "" +msgstr "Postojeća Uloga" #: frappe/public/js/frappe/views/treeview.js:115 #: frappe/public/js/frappe/views/treeview.js:127 #: frappe/public/js/frappe/views/treeview.js:137 #: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" -msgstr "" +msgstr "Proširi" #: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" -msgstr "" +msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" -msgstr "" +msgstr "Rasklopi Sve" + +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" -msgstr "" +msgstr "Eksperimentalno" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Expert" -msgstr "" +msgstr "Ekspert" #. Label of the expiration_time (Datetime) field in DocType 'OAuth #. Authorization Code' @@ -9495,34 +9584,34 @@ msgstr "" #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Expiration time" -msgstr "" +msgstr "Vrijeme isteka" #. Label of the expire_notification_on (Datetime) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Expire Notification On" -msgstr "" +msgstr "Obavještenje o isteku na dan" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Expired" -msgstr "" +msgstr "Isteklo" #. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' #. Label of the expires_in (Int) field in DocType 'Token Cache' #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Expires In" -msgstr "" +msgstr "Ističe za" #. Label of the expires_on (Date) field in DocType 'Document Share Key' #: frappe/core/doctype/document_share_key/document_share_key.json msgid "Expires On" -msgstr "" +msgstr "Ističe" #. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Expiry time of QR Code Image Page" -msgstr "" +msgstr "Vrijeme isteka stranice sa slikom QR koda" #. Label of the export (Check) field in DocType 'Custom DocPerm' #. Label of the export (Check) field in DocType 'DocPerm' @@ -9531,142 +9620,142 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" -msgstr "" +msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" -msgstr "" +msgstr "Izvezi" #: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" -msgstr "" +msgstr "Izvezi 1 zapis" #: frappe/custom/doctype/customize_form/customize_form.js:262 msgid "Export Custom Permissions" -msgstr "" +msgstr "Eksportiraj Prilagođene Dozvole" #: frappe/custom/doctype/customize_form/customize_form.js:242 msgid "Export Customizations" -msgstr "" +msgstr "Eksportiraj Prilagodbe" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" -msgstr "" +msgstr "Izvezi Podatke" #: frappe/core/doctype/data_import/data_import.js:86 #: frappe/public/js/frappe/data_import/import_preview.js:199 msgid "Export Errored Rows" -msgstr "" +msgstr "Izvezi Redove s Greškom" #. Label of the export_from (Data) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Export From" -msgstr "" +msgstr "Eksportiraj iz" #: frappe/core/doctype/data_import/data_import.js:518 msgid "Export Import Log" -msgstr "" +msgstr "Izvezi Zapisnik Importa" #: frappe/public/js/frappe/views/reports/report_utils.js:235 msgctxt "Export report" msgid "Export Report: {0}" -msgstr "" +msgstr "Eksportiraj Izvještaj: {0}" #: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" -msgstr "" +msgstr "Tip Izvoza" #: frappe/public/js/frappe/views/reports/report_view.js:1638 msgid "Export all matching rows?" -msgstr "" +msgstr "Eksportiraj sve podudarne redove?" #: frappe/public/js/frappe/views/reports/report_view.js:1648 msgid "Export all {0} rows?" -msgstr "" +msgstr "Eksportiraj sve {0} redove?" #: frappe/public/js/frappe/views/file/file_view.js:154 msgid "Export as zip" -msgstr "" +msgstr "Eksportiraj kao zip" #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." -msgstr "" +msgstr "Izvoz nije dozvoljen. Potrebna vam je {0} uloga za izvoz." #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" -msgstr "" +msgstr "Eksportiraj podatke bez ikakvih bilješki u zaglavlju i opisa kolona" #. Label of the export_without_main_header (Check) field in DocType 'Data #. Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export without main header" -msgstr "" +msgstr "Eksportiraj bez glavnog zaglavlja" #: frappe/public/js/frappe/data_import/data_exporter.js:247 msgid "Export {0} records" -msgstr "" +msgstr "Izvezi {0} zapise" #: frappe/custom/doctype/customize_form/customize_form.js:263 msgid "Exported permissions will be force-synced on every migrate overriding any other customization." -msgstr "" +msgstr "Eksportirane dozvole bit će prinudno sinhronizirane pri svakoj migraciji nadjačavajući bilo koje drugo prilagođavanje." #. Label of the expose_recipients (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "" +msgstr "Prikaži Primaoce" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression" -msgstr "" +msgstr "Izraz" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression (old style)" -msgstr "" +msgstr "Izraz (stari stil)" #. Description of the 'Condition' (Data) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "" +msgstr "Izraz, Opcija" #. Label of the external_link (Data) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/views/workspace/workspace.js:426 msgid "External Link" -msgstr "" +msgstr "Eksterna Veza" #. Label of the section_break_18 (Section Break) field in DocType 'Connected #. App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Extra Parameters" -msgstr "" +msgstr "Dodatni Parametri" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Facebook" -msgstr "" +msgstr "Facebook" #. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Fail" -msgstr "" +msgstr "Neuspjeh" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' @@ -9677,175 +9766,175 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" -msgstr "" +msgstr "Neuspješno" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Emails" -msgstr "" +msgstr "Neuspješna e-pošta" #. Label of the failed_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Failed Job Count" -msgstr "" +msgstr "Broj Neuspjelih Poslova" #. Label of the failed_jobs (Int) field in DocType 'System Health Report #. Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Failed Jobs" -msgstr "" +msgstr "Neuspješni Poslovi" #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" -msgstr "" +msgstr "Neuspješne Prijave (posljednjih 30 dana)" #: frappe/model/workflow.py:306 msgid "Failed Transactions" -msgstr "" +msgstr "Neuspješne Transakcije" #: frappe/utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." -msgstr "" +msgstr "Nije uspjelo preuzimanje zaključavanja: {}. Zaključavanje može biti zadržano drugim procesom." #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 msgid "Failed to change password." -msgstr "" +msgstr "Promjena lozinke nije uspjela." #: frappe/desk/page/setup_wizard/setup_wizard.js:232 #: frappe/desk/page/setup_wizard/setup_wizard.py:42 msgid "Failed to complete setup" -msgstr "" +msgstr "Nije uspjelo dovršavanje postavljanja" #: frappe/integrations/doctype/webhook/webhook.py:137 msgid "Failed to compute request body: {}" -msgstr "" +msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 msgid "Failed to connect to server" -msgstr "" +msgstr "Povezivanje sa serverom nije uspjelo" #: frappe/auth.py:698 msgid "Failed to decode token, please provide a valid base64-encoded token." -msgstr "" +msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64." #: frappe/utils/password.py:211 msgid "Failed to decrypt key {0}" -msgstr "" +msgstr "Dešifriranje ključa {0} nije uspjelo" #: frappe/desk/reportview.py:600 msgid "Failed to delete {0} documents: {1}" -msgstr "" +msgstr "Brisanje {0} dokumenata nije uspjelo: {1}" #: frappe/core/doctype/rq_job/rq_job_list.js:33 msgid "Failed to enable scheduler: {0}" -msgstr "" +msgstr "Omogućavanje Raspoređivača nije uspjelo: {0}" #: frappe/email/doctype/notification/notification.py:99 #: frappe/integrations/doctype/webhook/webhook.py:127 msgid "Failed to evaluate conditions: {}" -msgstr "" +msgstr "Procjena uslova nije uspjela: {}" #: frappe/types/exporter.py:205 msgid "Failed to export python type hints" -msgstr "" +msgstr "Izvoz python tipova savjeta za nije uspio" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" -msgstr "" +msgstr "Nije uspjelo generiranje imena iz serije" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" -msgstr "" +msgstr "Generiranje pregleda serije nije uspjelo" #: frappe/handler.py:75 msgid "Failed to get method for command {0} with {1}" -msgstr "" +msgstr "Nije uspjelo preuzimanje metode za komandu {0} sa {1}" #: frappe/api/v2.py:46 msgid "Failed to get method {0} with {1}" -msgstr "" +msgstr "Nije uspjelo preuzimanje metode {0} sa {1}" #: frappe/integrations/frappe_providers/frappecloud_billing.py:59 msgid "Failed to get site info" -msgstr "" +msgstr "Nije uspjelo preuzimanje informacija o web lokaciji" #: frappe/model/virtual_doctype.py:63 msgid "Failed to import virtual doctype {}, is controller file present?" -msgstr "" +msgstr "Uvoz virtuelnog doctypa {} nije uspio, je li prisutna datoteka kontrolera?" #: frappe/utils/image.py:75 msgid "Failed to optimize image: {0}" -msgstr "" +msgstr "Optimizacija slike nije uspjela: {0}" #: frappe/email/doctype/notification/notification.py:116 msgid "Failed to render message: {}" -msgstr "" +msgstr "Nije uspjelo prikazivanje poruke: {}" #: frappe/email/doctype/notification/notification.py:134 msgid "Failed to render subject: {}" -msgstr "" +msgstr "Nije uspjelo prikazivanje predmeta: {}" #: frappe/integrations/frappe_providers/frappecloud_billing.py:94 msgid "Failed to request login to Frappe Cloud" -msgstr "" +msgstr "Zahtjev za prijavu na Frappe Cloud nije uspio" #: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" -msgstr "" +msgstr "Nije uspjelo slanje e-pošte sa predmetom:" #: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" -msgstr "" +msgstr "Nije uspjelo slanje obavještenja putem e-pošte" #: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" -msgstr "" +msgstr "Ažuriranje globalnih postavki nije uspjelo" #: frappe/integrations/frappe_providers/frappecloud_billing.py:74 msgid "Failed while calling API {0}" -msgstr "" +msgstr "Nije uspjelo pri pozivanju API {0}" #. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failing Scheduled Jobs (last 7 days)" -msgstr "" +msgstr "Neuspjeli Zakazani Poslovi (zadnjih 7 dana)" #: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" -msgstr "" +msgstr "Neuspjeh" #. Label of the failure_rate (Percent) field in DocType 'System Health Report #. Failing Jobs' #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Failure Rate" -msgstr "" +msgstr "Stopa neuspjeha" #. Label of the favicon (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "FavIcon" -msgstr "" +msgstr "FavIcon" #. Label of the fax (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "" +msgstr "Faks" #. Label of the featured (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 msgid "Featured" -msgstr "" +msgstr "Istaknuto" #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" -msgstr "" +msgstr "Povratne Informacije" #: frappe/desk/page/setup_wizard/install_fixtures.py:29 msgid "Female" -msgstr "" +msgstr "Žensko" #. Label of the fetch_from (Small Text) field in DocType 'DocField' #. Label of the fetch_from (Small Text) field in DocType 'Custom Field' @@ -9856,15 +9945,15 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 msgid "Fetch From" -msgstr "" +msgstr "Preuzmi Od" #: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" -msgstr "" +msgstr "Ptrizmi slike" #: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" -msgstr "" +msgstr "Preuzmi priložene slike iz dokumenta" #. Label of the fetch_if_empty (Check) field in DocType 'DocField' #. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' @@ -9873,11 +9962,11 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" -msgstr "" +msgstr "Preuzmi na Spremi ako je Prazno" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." -msgstr "" +msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja." #. Label of the field (Select) field in DocType 'Assignment Rule' #. Label of the field (Select) field in DocType 'Document Naming Rule @@ -9895,93 +9984,93 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" -msgstr "" +msgstr "Polje" #: frappe/core/doctype/doctype/doctype.py:417 msgid "Field \"route\" is mandatory for Web Views" -msgstr "" +msgstr "Polje \"ruta\" je obavezno za Web Prikaze" #: frappe/core/doctype/doctype/doctype.py:1526 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." -msgstr "" +msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stranice\"." #: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" -msgstr "" +msgstr "Polje \"vrijednost\" je obavezno. Navedi vrijednost koju treba ažurirati" #. Label of the description (Text) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Field Description" -msgstr "" +msgstr "Opis polja" #: frappe/core/doctype/doctype/doctype.py:1077 msgid "Field Missing" -msgstr "" +msgstr "Nedostaje Polje" #. Label of the field_name (Data) field in DocType 'Property Setter' #. Label of the field_name (Select) field in DocType 'Kanban Board' #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Field Name" -msgstr "" +msgstr "Naziv Polja" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 msgid "Field Orientation (Left-Right)" -msgstr "" +msgstr "Orijentacija Polja (Lijevo-Desno)" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 msgid "Field Orientation (Top-Down)" -msgstr "" +msgstr "Orijentacija Polja (Odozgo -Dolje)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 #: frappe/public/js/print_format_builder/utils.js:69 msgid "Field Template" -msgstr "" +msgstr "Šablon Polja" #. Label of the fieldtype (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/templates/form_grid/fields.html:40 msgid "Field Type" -msgstr "" +msgstr "Tip Polja" #: frappe/desk/reportview.py:201 msgid "Field not permitted in query" -msgstr "" +msgstr "Polje nije dozvoljeno u upitu" #. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" -msgstr "" +msgstr "Polje koje predstavlja Stanje Radnog Toka transakcije (ako polje nije prisutno, stvorit će se novo skriveno Prilagođeno Polje)" #. Label of the track_field (Select) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Field to Track" -msgstr "" +msgstr "Polje za Praćenje" #: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" -msgstr "" +msgstr "Tip polja se ne može promijeniti za {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" -msgstr "" +msgstr "Polje {0} ne postoji na {1}" #: frappe/desk/form/meta.py:184 msgid "Field {0} is referring to non-existing doctype {1}." -msgstr "" +msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}." #: frappe/public/js/frappe/form/form.js:1754 msgid "Field {0} not found." -msgstr "" +msgstr "Polje {0} nije pronađeno." #: frappe/email/doctype/notification/notification.py:503 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" -msgstr "" +msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika" #. Label of the fieldname (Data) field in DocType 'Report Column' #. Label of the fieldname (Data) field in DocType 'Report Filter' @@ -10000,44 +10089,44 @@ msgstr "" #: frappe/public/js/frappe/form/grid_row.js:438 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" -msgstr "" +msgstr "Ime Polja" #: frappe/core/doctype/doctype/doctype.py:270 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" -msgstr "" +msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}" #: frappe/core/doctype/doctype/doctype.py:1076 msgid "Fieldname called {0} must exist to enable autonaming" -msgstr "" +msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" -msgstr "" +msgstr "Ime polja je ograničeno na 64 znaka ({0})" #: frappe/custom/doctype/custom_field/custom_field.py:197 msgid "Fieldname not set for Custom Field" -msgstr "" +msgstr "Ime polja nije postavljeno za prilagođeno polje" #: frappe/custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." -msgstr "" +msgstr "Ime polja koje će biti DocType za ovo polje veze." #: frappe/public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" -msgstr "" +msgstr "Ime polja {0} pojavljuje se više puta" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" -msgstr "" +msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" #: frappe/core/doctype/doctype/doctype.py:1907 msgid "Fieldname {0} conflicting with meta object" -msgstr "" +msgstr "Ime polja {0} je u konfliktu sa meta objektom" #: frappe/core/doctype/doctype/doctype.py:496 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" -msgstr "" +msgstr "Ime polja {0} je ograničeno" #. Label of the fields (Table) field in DocType 'DocType' #. Label of the fields_section (Section Break) field in DocType 'DocType' @@ -10063,25 +10152,29 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/website/doctype/web_template/web_template.json msgid "Fields" -msgstr "" +msgstr "Polja" #. Label of the fields_multicheck (HTML) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Fields Multicheck" -msgstr "" +msgstr "Polja Višestrukog Odabira" #: frappe/core/doctype/file/file.py:410 msgid "Fields `file_name` or `file_url` must be set for File" -msgstr "" +msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" #: frappe/model/db_query.py:146 msgid "Fields must be a list or tuple when as_list is enabled" -msgstr "" +msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen" + +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija" #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" -msgstr "" +msgstr "Polja razdvojena zarezom (,) biće uključena u listu „Pretraži po“ dijaloga Pretraga" #. Label of the fieldtype (Select) field in DocType 'Report Column' #. Label of the fieldtype (Select) field in DocType 'Report Filter' @@ -10096,15 +10189,15 @@ msgstr "" #: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldtype" -msgstr "" +msgstr "Tip Polja" #: frappe/custom/doctype/custom_field/custom_field.py:193 msgid "Fieldtype cannot be changed from {0} to {1}" -msgstr "" +msgstr "Tip polja se ne može promijeniti iz {0} u {1}" #: frappe/custom/doctype/customize_form/customize_form.py:588 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" -msgstr "" +msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" #. Label of a shortcut in the Tools Workspace #. Name of a DocType @@ -10113,41 +10206,41 @@ msgstr "" #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/form_tour/form_tour.json msgid "File" -msgstr "" +msgstr "Datoteka" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 msgid "File \"{0}\" was skipped because of invalid file type" -msgstr "" +msgstr "Datoteka \"{0}\" je preskočena zbog nevažećeg tipa datoteke" #: frappe/core/doctype/file/utils.py:128 msgid "File '{0}' not found" -msgstr "" +msgstr "Datoteka '{0}' nije pronađena" #. Label of the private_file_section (Section Break) field in DocType 'Access #. Log' #: frappe/core/doctype/access_log/access_log.json msgid "File Information" -msgstr "" +msgstr "Informacije Datoteke" #: frappe/public/js/frappe/views/file/file_view.js:74 msgid "File Manager" -msgstr "" +msgstr "Upravitelj Datoteka" #. Label of the file_name (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "File Name" -msgstr "" +msgstr "Naziv Datoteke" #. Label of the file_size (Int) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "File Size" -msgstr "" +msgstr "Veličina datoteke" #. Label of the section_break_ryki (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "File Storage" -msgstr "" +msgstr "Pohrana Datoteka" #. Label of the file_type (Data) field in DocType 'Access Log' #. Label of the file_type (Select) field in DocType 'Data Export' @@ -10157,48 +10250,48 @@ msgstr "" #: frappe/core/doctype/file/file.json #: frappe/public/js/frappe/data_import/data_exporter.js:19 msgid "File Type" -msgstr "" +msgstr "Tip Datoteke" #. Label of the file_url (Code) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "File URL" -msgstr "" +msgstr "URL Datoteke" #: frappe/desk/page/backups/backups.py:107 msgid "File backup is ready" -msgstr "" +msgstr "Sigurnosna Kopija Datoteke je spremna" #: frappe/core/doctype/file/file.py:624 msgid "File name cannot have {0}" -msgstr "" +msgstr "Ime datoteke ne može imati {0}" #: frappe/utils/csvutils.py:28 msgid "File not attached" -msgstr "" +msgstr "Datoteka nije priložena" #: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "" +msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB" #: frappe/public/js/frappe/request.js:198 msgid "File too big" -msgstr "" +msgstr "Datoteka je prevelika" #: frappe/core/doctype/file/file.py:375 msgid "File type of {0} is not allowed" -msgstr "" +msgstr "Tip datoteke {0} nije dozvoljen" #: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 msgid "File {0} does not exist" -msgstr "" +msgstr "Datoteka {0} ne postoji" #. Label of a Link in the Tools Workspace #. Label of the files_tab (Tab Break) field in DocType 'System Settings' #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Files" -msgstr "" +msgstr "Datoteke" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 @@ -10210,57 +10303,65 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "" +msgstr "Filter" #: frappe/public/js/frappe/list/list_sidebar.html:36 msgid "Filter By" -msgstr "" +msgstr "Filtriraj Prema" #. Label of the filter_data (Section Break) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Data" -msgstr "" +msgstr "Filtriraj podatke" #. Label of the filter_list (HTML) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Filter List" -msgstr "" +msgstr "Filter Lista" #. Label of the filter_meta (Text) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Meta" -msgstr "" +msgstr "Filter metapodaci" #. Label of the filter_name (Data) field in DocType 'List Filter' #: frappe/desk/doctype/list_filter/list_filter.json #: frappe/public/js/frappe/list/list_filter.js:33 msgid "Filter Name" -msgstr "" +msgstr "Filter Naziv" #. Label of the filter_values (HTML) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Filter Values" -msgstr "" +msgstr "Filter Vrijednosti" + +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Nedostaje uvjet filtra nakon operatora: {0}" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." -msgstr "" +msgstr "Filtriraj..." #. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion #. Step' #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Filtered By" -msgstr "" +msgstr "Filtrirano Prema" #: frappe/public/js/frappe/data_import/data_exporter.js:33 msgid "Filtered Records" -msgstr "" +msgstr "Filtrirani Zapisi" #: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" -msgstr "" +msgstr "Filtrirano prema \"{0}\"" #. Label of the filters (Code) field in DocType 'Access Log' #. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' @@ -10282,71 +10383,71 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/notification/notification.json msgid "Filters" -msgstr "" +msgstr "Filteri" #. Label of the filters_config (Code) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Filters Configuration" -msgstr "" +msgstr "Konfiguracija Filtera" #. Label of the filters_display (HTML) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filters Display" -msgstr "" +msgstr "Prikaz Filtera" #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Filters JSON" -msgstr "" +msgstr "Filtrira JSON" #. Label of the filters_section (Section Break) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Filters Section" -msgstr "" +msgstr "Sekcija Filtera" #: frappe/public/js/frappe/form/controls/link.js:510 msgid "Filters applied for {0}" -msgstr "" +msgstr "Primijenjeni filteri za {0}" #: frappe/public/js/frappe/views/kanban/kanban_view.js:188 msgid "Filters saved" -msgstr "" +msgstr "Filteri spremljeni" #. Description of the 'Script' (Code) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]" -msgstr "" +msgstr "Filteri će biti dostupni putem filters.

Pošalji izlaz kao result = [result], ili za stari stil data = [columns], [result]" #: frappe/public/js/frappe/ui/filters/filter_list.js:133 msgid "Filters {0}" -msgstr "" +msgstr "Filteri {0}" #: frappe/public/js/frappe/views/reports/report_view.js:1427 msgid "Filters:" -msgstr "" +msgstr "Filteri:" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 msgid "Find '{0}' in ..." -msgstr "" +msgstr "Pronađi '{0}' u..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 msgid "Find {0} in {1}" -msgstr "" +msgstr "Pronađi {0} u {1}" #. Option for the 'Status' (Select) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Finished" -msgstr "" +msgstr "Završeno" #. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Finished At" -msgstr "" +msgstr "Završeno" #. Label of the first_day_of_the_week (Select) field in DocType 'Language' #. Label of the first_day_of_the_week (Select) field in DocType 'System @@ -10361,33 +10462,33 @@ msgstr "Prvi Dan u Tjednu" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 msgid "First Name" -msgstr "" +msgstr "Ime" #. Label of the first_success_message (Data) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "First Success Message" -msgstr "" +msgstr "Prva Poruka Uspjeha" #: frappe/core/report/transaction_log_report/transaction_log_report.py:49 msgid "First Transaction" -msgstr "" +msgstr "Prva Transakcija" #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." -msgstr "" +msgstr "Prva kolona podataka mora biti prazna." #: frappe/website/doctype/website_slideshow/website_slideshow.js:7 msgid "First set the name and save the record." -msgstr "" +msgstr "Prvo postavite ime i spremite zapis." #: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 msgid "Fit" -msgstr "" +msgstr "Upaši" #. Label of the flag (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Flag" -msgstr "" +msgstr "Zastavica" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -10402,12 +10503,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Float" -msgstr "" +msgstr "Decimala" #. Label of the float_precision (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Float Precision" -msgstr "" +msgstr "Decimalna Preciznost" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -10420,85 +10521,81 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fold" -msgstr "" +msgstr "Presavij" #: frappe/core/doctype/doctype/doctype.py:1450 msgid "Fold can not be at the end of the form" -msgstr "" +msgstr "Presavijanje ne može biti na kraju obrasca" #: frappe/core/doctype/doctype/doctype.py:1448 msgid "Fold must come before a Section Break" -msgstr "" +msgstr "Presavijanje mora doći prije prekida odjeljka" #. Label of the folder (Link) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Folder" -msgstr "" +msgstr "Mapa" #. Label of the folder_name (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/imap_folder/imap_folder.json msgid "Folder Name" -msgstr "" +msgstr "Naziv Mape" #: frappe/public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" -msgstr "" +msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)" #: frappe/core/doctype/file/file.py:472 msgid "Folder {0} is not empty" -msgstr "" +msgstr "Mapa {0} nije prazna" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Folio" -msgstr "" +msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" -msgstr "" +msgstr "Prati" #: frappe/public/js/frappe/form/templates/form_sidebar.html:101 msgid "Followed by" -msgstr "" +msgstr "Praćen od" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" -msgstr "" +msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:" #: frappe/desk/form/document_follow.py:63 msgid "Following document {0}" -msgstr "" +msgstr "Pratim dokument {0}" #: frappe/website/doctype/web_form/web_form.py:108 msgid "Following fields are missing:" -msgstr "" +msgstr "Nedostaju sljedeća polja:" #: frappe/public/js/frappe/ui/field_group.js:139 msgid "Following fields have invalid values:" -msgstr "" +msgstr "Sljedeća polja imaju nevažeće vrijednosti:" #: frappe/public/js/frappe/widgets/widget_dialog.js:358 msgid "Following fields have missing values" -msgstr "" +msgstr "Sljedeća polja nemaju vrijednosti" #: frappe/public/js/frappe/ui/field_group.js:126 msgid "Following fields have missing values:" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" +msgstr "Sljedeća polja nemaju vrijednosti:" #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" -msgstr "" +msgstr "Font" #. Label of the font_properties (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Properties" -msgstr "" +msgstr "Svojstva Fonta" #. Label of the font_size (Int) field in DocType 'Print Format' #. Label of the font_size (Float) field in DocType 'Print Settings' @@ -10508,13 +10605,13 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Size" -msgstr "" +msgstr "Veličina Fonta" #. Label of the section_break_8 (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Fonts" -msgstr "" +msgstr "Fontovi" #. Label of the set_footer (Section Break) field in DocType 'Email Account' #. Label of the footer_section (Section Break) field in DocType 'Letter Head' @@ -10527,103 +10624,103 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer" -msgstr "" +msgstr "Podnožje" #. Label of the footer_powered (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer \"Powered By\"" -msgstr "" +msgstr "Podnožje \"Urađeno Od\"" #. Label of the footer_source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Based On" -msgstr "" +msgstr "Podnožje na osnovu" #. Label of the footer (Text Editor) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Footer Content" -msgstr "" +msgstr "Sadržaj Podnožja" #. Label of the footer_details_section (Section Break) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Details" -msgstr "" +msgstr "Detalji Podnožja" #. Label of the footer (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" -msgstr "" +msgstr "Podnožje HTML" #: frappe/printing/doctype/letter_head/letter_head.py:75 msgid "Footer HTML set from attachment {0}" -msgstr "" +msgstr "HTML Podnožja postavljen iz priloga {0}" #. Label of the footer_image_section (Section Break) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Image" -msgstr "" +msgstr "Slika Podnožja" #. Label of the footer (Section Break) field in DocType 'Website Settings' #. Label of the footer_items (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Items" -msgstr "" +msgstr "Artikli Podnožja" #. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Logo" -msgstr "" +msgstr "Logo Podnožja" #. Label of the footer_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Script" -msgstr "" +msgstr "Skripta Podnožja" #. Label of the footer_template (Link) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template" -msgstr "" +msgstr "Šablon Podnožja" #. Label of the footer_template_values (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template Values" -msgstr "" +msgstr "Vrijednosti Šablona Podnožja" #: frappe/printing/page/print/print.js:116 msgid "Footer might not be visible as {0} option is disabled" -msgstr "" +msgstr "Podnožje možda neće biti vidljivo jer je opcija {0} onemogućena" #. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer will display correctly only in PDF" -msgstr "" +msgstr "Podnožje će se ispravno prikazati samo u PDF-u" #. Label of the for_doctype (Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "For DocType" -msgstr "" +msgstr "Za DocType" #. Description of the 'Row Name' (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "For DocType Link / DocType Action" -msgstr "" +msgstr "Za DocType Veza / DocType Radnja" #. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "For Document" -msgstr "" +msgstr "Za Dokument" #: frappe/core/doctype/user_permission/user_permission_list.js:155 msgid "For Document Type" -msgstr "" +msgstr "Za Tip Dokumenta" #: frappe/public/js/frappe/widgets/widget_dialog.js:566 msgid "For Example: {} Open" -msgstr "" +msgstr "Na Primjer: {} Otvori" #. Description of the 'Options' (Small Text) field in DocType 'DocField' #. Description of the 'Options' (Small Text) field in DocType 'Customize Form @@ -10632,7 +10729,8 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." -msgstr "" +msgstr "Za Veze unesi DocType kao raspon.\n" +"Za Odabir unesite listu Opcija, svaku u novom redu." #. Label of the for_user (Link) field in DocType 'List Filter' #. Label of the for_user (Link) field in DocType 'Notification Log' @@ -10643,63 +10741,63 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/desk/doctype/workspace/workspace.json msgid "For User" -msgstr "" +msgstr "Za Korisnika" #. Label of the for_value (Dynamic Link) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "For Value" -msgstr "" +msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." -msgstr "" +msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." #: frappe/core/page/permission_manager/permission_manager_help.html:19 msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." -msgstr "" +msgstr "Na primjer, ako otkažete i izmijenite INV004, to će postati novi dokument INV004-1. To vam pomaže da pratite svaku dopunu." #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "For example:" -msgstr "" +msgstr "Na primjer:" #: frappe/printing/page/print_format_builder/print_format_builder.js:752 msgid "For example: If you want to include the document ID, use {0}" -msgstr "" +msgstr "Na primjer: Ako želite uključiti ID dokumenta, koristite {0}" #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "For example: {} Open" -msgstr "" +msgstr "Na primjer: {} Otvori" #. Description of the 'Client script' (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "For help see Client Script API and Examples" -msgstr "" +msgstr "Za pomoć pogledaj API i primjere Klijentske skriptet" #. Description of the 'Enable Automatic Linking in Documents' (Check) field in #. DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "For more information, click here." -msgstr "" +msgstr "Za više informacija, klikni ovdje." #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." -msgstr "" +msgstr "Za više informacija, {0}." #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" -msgstr "" +msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ test1@test.com" #: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "" +msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone." #: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" -msgstr "" +msgstr "Za {0} na nivou {1} u {2} u redu {3}" #. Label of the force (Check) field in DocType 'Package Import' #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth @@ -10707,7 +10805,7 @@ msgstr "" #: frappe/core/doctype/package_import/package_import.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Force" -msgstr "" +msgstr "Prisili" #. Label of the force_re_route_to_default_view (Check) field in DocType #. 'DocType' @@ -10716,32 +10814,32 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Force Re-route to Default View" -msgstr "" +msgstr "Prisili preusmjeravanje na Standard Prikaz" #. Label of the force_show (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Force Show" -msgstr "" +msgstr "Prisili Prikaz" #: frappe/core/doctype/rq_job/rq_job.js:13 msgid "Force Stop job" -msgstr "" +msgstr "Prisilno Zaustavi posao" #. Label of the force_user_to_reset_password (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Force User to Reset Password" -msgstr "" +msgstr "Prisili Korisnika da Poništi Lozinku" #. Label of the force_web_capture_mode_for_uploads (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Force Web Capture Mode for Uploads" -msgstr "" +msgstr "Prisili Način Web Snimanja za Učitavanje" #: frappe/www/login.html:37 msgid "Forgot Password?" -msgstr "" +msgstr "Zaboravljana Lozinka?" #. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' @@ -10755,19 +10853,19 @@ msgstr "" #: frappe/printing/page/print/print.js:83 #: frappe/website/doctype/web_form/web_form.json msgid "Form" -msgstr "" +msgstr "Forma" #. Label of the form_builder (HTML) field in DocType 'DocType' #. Label of the form_builder (HTML) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Form Builder" -msgstr "" +msgstr "Alat Razvoja Forme" #. Label of the form_dict (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Form Dict" -msgstr "" +msgstr "Dict Forme" #. Label of the form_settings_section (Section Break) field in DocType #. 'DocType' @@ -10780,24 +10878,24 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/website/doctype/web_form/web_form.json msgid "Form Settings" -msgstr "" +msgstr "Postavke Forme" #. Name of a DocType #. Label of the form_tour (Link) field in DocType 'Onboarding Step' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Form Tour" -msgstr "" +msgstr "Predstavljanje Forme" #. Name of a DocType #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Form Tour Step" -msgstr "" +msgstr "Korak Predstavljanja Forme" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Form URL-Encoded" -msgstr "" +msgstr "Forma URL Kodirana" #. Label of the format (Data) field in DocType 'Workspace Shortcut' #. Label of the format (Select) field in DocType 'Auto Email Report' @@ -10805,31 +10903,31 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/widgets/widget_dialog.js:565 msgid "Format" -msgstr "" +msgstr "Format" #. Label of the format_data (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Format Data" -msgstr "" +msgstr "Format Podataka" #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" -msgstr "" +msgstr "Proslijediti" #. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Forward To Email Address" -msgstr "" +msgstr "Proslijedi na adresu e-pošte" #. Label of the fraction (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Fraction" -msgstr "" +msgstr "Razlomak" #. Label of the fraction_units (Int) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Fraction Units" -msgstr "" +msgstr "Jedinice Frakcije" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -10837,44 +10935,44 @@ msgstr "" #: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 #: frappe/www/login.py:153 msgid "Frappe" -msgstr "" +msgstr "Frappe" #: frappe/public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" -msgstr "" +msgstr "Frappe Framework" #: frappe/public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" -msgstr "" +msgstr "Frappe Light" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail" -msgstr "" +msgstr "Frappe Mail" #: frappe/email/doctype/email_account/email_account.py:547 msgid "Frappe Mail OAuth Error" -msgstr "" +msgstr "Frappe Mail OAuth greška" #. Label of the frappe_mail_site (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail Site" -msgstr "" +msgstr "Frappe Mail Site" #. Label of a standard help item #. Type: Route #: frappe/hooks.py msgid "Frappe Support" -msgstr "" +msgstr "Frappe Podrška" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Frappe page builder using components" -msgstr "" +msgstr "Frappe alat razvoja stranica pomoću komponenti" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 msgctxt "Image Cropper" msgid "Free" -msgstr "" +msgstr "Slobodno" #. Label of the frequency (Select) field in DocType 'Auto Repeat' #. Label of the frequency (Select) field in DocType 'Scheduled Job Type' @@ -10887,7 +10985,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:395 msgid "Frequency" -msgstr "" +msgstr "Učestalost" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -10903,55 +11001,53 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Friday" -msgstr "" +msgstr "Petak" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" -msgstr "" +msgstr "Od" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" -msgstr "" +msgstr "Od" #. Label of the from_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:8 msgid "From Date" -msgstr "" +msgstr "Od Datuma" #. Label of the from_date_field (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "From Date Field" -msgstr "" +msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" -msgstr "" +msgstr "Od Dokumenta" #. Label of the sender_full_name (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "" +msgstr "Od" #. Label of the from_user (Link) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "From User" -msgstr "" +msgstr "Od Korisnika" #: frappe/public/js/frappe/utils/diffview.js:31 msgid "From version" -msgstr "" +msgstr "Od Verzije" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Full" -msgstr "" +msgstr "Pun" #. Label of the full_name (Data) field in DocType 'Contact' #. Label of the full_name (Data) field in DocType 'Activity Log' @@ -10966,71 +11062,75 @@ msgstr "" #: frappe/website/doctype/about_us_team_member/about_us_team_member.json #: frappe/website/doctype/blogger/blogger.json msgid "Full Name" -msgstr "" +msgstr "Puno Ime" #: frappe/printing/page/print/print.js:67 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "" +msgstr "Cijela Stranica" #. Label of the full_width (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Full Width" -msgstr "" +msgstr "Puna Širina" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" -msgstr "" +msgstr "Funkcija" #: frappe/public/js/frappe/widgets/widget_dialog.js:706 msgid "Function Based On" -msgstr "" +msgstr "Funkcija zasnovana na" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." -msgstr "" +msgstr "Funkcija {0} nije na bijeloj listi." + +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije naveden" #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "" +msgstr "Dalji članovi se mogu kreirati samo pod članovima tipa 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" -msgstr "" +msgstr "Proslijedi: {0}" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "GET" -msgstr "" +msgstr "GET" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "GMail" -msgstr "" +msgstr "Gmail" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "GNU Affero General Public License" -msgstr "" +msgstr "GNU Affero Opća Javna Licenca" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "GNU General Public License" -msgstr "" +msgstr "GNU Opća Javna Licenca" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/public/js/frappe/views/gantt/gantt_view.js:10 msgid "Gantt" -msgstr "" +msgstr "Gantt" #: frappe/public/js/frappe/list/base_list.js:205 msgid "Gantt View" -msgstr "" +msgstr "Gantt Prikaz" #. Label of the gender (Link) field in DocType 'Contact' #. Name of a DocType @@ -11040,38 +11140,38 @@ msgstr "" #: frappe/contacts/doctype/gender/gender.json #: frappe/core/doctype/user/user.json msgid "Gender" -msgstr "" +msgstr "Rod" #: frappe/desk/page/setup_wizard/install_fixtures.py:32 msgid "Genderqueer" -msgstr "" +msgstr "Rodni" #: frappe/www/contact.html:29 msgid "General" -msgstr "" +msgstr "Općenito" #. Label of the generate_keys (Button) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Generate Keys" -msgstr "" +msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" -msgstr "" +msgstr "Generiši Novi Izvještaj" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 msgid "Generate Random Password" -msgstr "" +msgstr "Generiši Nasumičnu Lozinku" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" -msgstr "" +msgstr "Generiši URL Praćenja" #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Geoapify" -msgstr "" +msgstr "Geoapify" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11080,152 +11180,152 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Geolocation" -msgstr "" +msgstr "Geolokacija" #. Name of a DocType #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Geolocation Settings" -msgstr "" +msgstr "Geolokacijske Postavke" #: frappe/email/doctype/notification/notification.js:219 msgid "Get Alerts for Today" -msgstr "" +msgstr "Preuzmi Današnja Upozorenja" #: frappe/desk/page/backups/backups.js:21 msgid "Get Backup Encryption Key" -msgstr "" +msgstr "Preuzmi Ključ Šifriranje Sigurnosne Kopije" #. Label of the get_contacts (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Get Contacts" -msgstr "" +msgstr "Preuzmi Kontakte" #: frappe/website/doctype/web_form/web_form.js:93 msgid "Get Fields" -msgstr "" +msgstr "Preuzmi Polja" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "Get Header and Footer wkhtmltopdf variables" -msgstr "" +msgstr "Preuzmi wkhtmltopdf varijable Zaglavlja i Podnožja" #: frappe/public/js/frappe/form/multi_select_dialog.js:86 msgid "Get Items" -msgstr "" +msgstr "Preuzmi Artikle" #: frappe/integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" -msgstr "" +msgstr "Preuzmi OpenID Konfiguraciju" #: frappe/www/printview.html:22 msgid "Get PDF" -msgstr "" +msgstr "Preuzmi PDF" #. Description of the 'Try a Naming Series' (Data) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Get a preview of generated names with a series." -msgstr "" +msgstr "Preuzmi pregled generisanih imena sa serijom." #: frappe/public/js/frappe/list/list_sidebar.js:305 msgid "Get more insights with" -msgstr "" +msgstr "Steknite više uvida sa" #. Description of the 'Email Threads on Assigned Document' (Check) field in #. DocType 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Get notified when an email is received on any of the documents assigned to you." -msgstr "" +msgstr "Primi obavještenje kada primite e-poštu o bilo kojem od dokumenata koji su vam dodijeljeni." #. Description of the 'User Image' (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Get your globally recognized avatar from Gravatar.com" -msgstr "" +msgstr "Preuzmi vaš globalno priznati avatar sa Gravatar.com" #. Label of the git_branch (Data) field in DocType 'Installed Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Git Branch" -msgstr "" +msgstr "Git Branch" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "GitHub" -msgstr "" +msgstr "GitHub" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Github flavoured markdown syntax" -msgstr "" +msgstr "Github aromatizirana markdown sintaksa" #. Name of a DocType #: frappe/desk/doctype/global_search_doctype/global_search_doctype.json msgid "Global Search DocType" -msgstr "" +msgstr "Globalna Pretraga DocType" #: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 msgid "Global Search Document Types Reset." -msgstr "" +msgstr "Poništavanje Tipova Dokumenata Globalne Pretrage." #. Name of a DocType #: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Global Search Settings" -msgstr "" +msgstr "Postavke Globalne Pretrage" #: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" -msgstr "" +msgstr "Globalne Prečice" #. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Global Unsubscribe" -msgstr "" +msgstr "Globalno Otkazivanje Pretplate" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" -msgstr "" +msgstr "Idi" #: frappe/public/js/frappe/widgets/onboarding_widget.js:241 #: frappe/public/js/frappe/widgets/onboarding_widget.js:321 msgid "Go Back" -msgstr "" +msgstr "Idi Nazad" #: frappe/desk/doctype/notification_settings/notification_settings.js:17 msgid "Go to Notification Settings List" -msgstr "" +msgstr "Idi na Listu Postavki Obavještenja" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Go to Page" -msgstr "" +msgstr "Idi na Stranicu" #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 msgid "Go to Workflow" -msgstr "" +msgstr "Idi na Radni Tok" #: frappe/desk/doctype/workspace/workspace.js:18 msgid "Go to Workspace" -msgstr "" +msgstr "Idite na Radni Prostor" #: frappe/public/js/frappe/form/form.js:144 msgid "Go to next record" -msgstr "" +msgstr "Idi na sljedeći zapis" #: frappe/public/js/frappe/form/form.js:154 msgid "Go to previous record" -msgstr "" +msgstr "Idi na prethodni zapis" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 msgid "Go to the document" -msgstr "" +msgstr "Idi na dokument" #. Description of the 'Success URL' (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Go to this URL after completing the form" -msgstr "" +msgstr "Idi na ovaj URL nakon popunjavanja forme" #: frappe/core/doctype/doctype/doctype.js:54 #: frappe/custom/doctype/client_script/client_script.js:10 msgid "Go to {0}" -msgstr "" +msgstr "Idi na {0}" #: frappe/core/doctype/data_import/data_import.js:92 #: frappe/core/doctype/doctype/doctype.js:55 @@ -11233,32 +11333,32 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 #: frappe/workflow/doctype/workflow/workflow.js:44 msgid "Go to {0} List" -msgstr "" +msgstr "Idi na {0} Listu" #: frappe/core/doctype/page/page.js:11 msgid "Go to {0} Page" -msgstr "" +msgstr "Idi na {0} Stranicu" #: frappe/utils/goal.py:115 frappe/utils/goal.py:122 msgid "Goal" -msgstr "" +msgstr "Cilj" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Google" -msgstr "" +msgstr "Google" #. Label of the google_analytics_id (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics ID" -msgstr "" +msgstr "Google Analytics ID" #. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics anonymise IP" -msgstr "" +msgstr "Google Analytics anonimizirani IP" #. Label of the sb_00 (Section Break) field in DocType 'Event' #. Label of the google_calendar (Link) field in DocType 'Event' @@ -11269,23 +11369,23 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Calendar" -msgstr "" +msgstr "Google Kalendar" #: frappe/integrations/doctype/google_calendar/google_calendar.py:810 msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "" +msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}" #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." -msgstr "" +msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:610 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." -msgstr "" +msgstr "Google Kalendar - Nije moguće izbrisati Događaj {0} iz Google Kalendara, kod greške {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:305 msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." -msgstr "" +msgstr "Google Kalendar - Nije moguće preuzeti Događaj iz Google Kalendara, kod greške {0}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." @@ -11293,31 +11393,31 @@ msgstr "Google kalendar - nije moguće pronaći kalendar za {0}, šifra pogrešk #: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." -msgstr "" +msgstr "Google kalendar - Nije moguće umetnuti kontakt u Google kontakte {0}, kod greške {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:496 msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." -msgstr "" +msgstr "Google kalendar - Nije moguće umetnuti događaj u Google kalendar {0}, kod greške {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:580 msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." -msgstr "" +msgstr "Google Kalendar - Nije moguće ažurirati događaj {0} u Google kKalendaru, kod greške {1}." #. Label of the google_calendar_event_id (Data) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Google Calendar Event ID" -msgstr "" +msgstr "ID Događaja Google Kalendara" #. Label of the google_calendar_id (Data) field in DocType 'Event' #. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' #: frappe/desk/doctype/event/event.json #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Google Calendar ID" -msgstr "" +msgstr "ID Google Kalendara" #: frappe/integrations/doctype/google_calendar/google_calendar.py:181 msgid "Google Calendar has been configured." -msgstr "" +msgstr "Google Kalendar je Konfigurisan." #. Label of the sb_00 (Section Break) field in DocType 'Contact' #. Label of the google_contacts (Link) field in DocType 'Contact' @@ -11328,38 +11428,36 @@ msgstr "" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" -msgstr "" +msgstr "Google Kontakti" #: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." -msgstr "" +msgstr "Google Kontakti - Nije moguće sinhronizirati kontakte iz Google Kontakata {0}, kod greške {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:294 msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." -msgstr "" +msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0}, kod greške {1}." #. Label of the google_contacts_id (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Google Contacts Id" -msgstr "" +msgstr "Id Google Kontakata" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" -msgstr "" +msgstr "Google Disk" #. Label of the section_break_7 (Section Break) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker" -msgstr "" +msgstr "Birač Google Diska" #. Label of the google_drive_picker_enabled (Check) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker Enabled" -msgstr "" +msgstr "Birač Google Diska Omogućen" #. Label of the font (Data) field in DocType 'Print Format' #. Label of the google_font (Data) field in DocType 'Website Theme' @@ -11367,84 +11465,85 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 #: frappe/website/doctype/website_theme/website_theme.json msgid "Google Font" -msgstr "" +msgstr "Google Font" #. Label of the google_meet_link (Small Text) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Google Meet Link" -msgstr "" +msgstr "Google Meet Veza" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Services" -msgstr "" +msgstr "Google Servisi" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" -msgstr "" +msgstr "Google Postavke" #: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." -msgstr "" +msgstr "URL Google Sheet je nevažeći ili nije javno dostupan." #: frappe/utils/csvutils.py:231 msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." -msgstr "" +msgstr "URL Google Sheet mora završavati sa \"gid={number}\". Kopiraj i zalijepi URL iz adresne trake pretraživača i pokušajte ponovo." #. Label of the google_preview (HTML) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Google Snippet Preview" -msgstr "" +msgstr "Google Snippet Pregled" #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" -msgstr "" +msgstr "Tip Odobrenja" #: frappe/public/js/frappe/form/dashboard.js:34 #: frappe/public/js/frappe/form/templates/form_dashboard.html:10 msgid "Graph" -msgstr "" +msgstr "Graf" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" -msgstr "" +msgstr "Sivo" #: frappe/public/js/frappe/ui/filters/filter.js:23 msgid "Greater Than" -msgstr "" +msgstr "Veće Nego" #: frappe/public/js/frappe/ui/filters/filter.js:25 msgid "Greater Than Or Equal To" -msgstr "" +msgstr "Veće Od ili Jednako Prema" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Green" -msgstr "" +msgstr "Zeleno" #: frappe/public/js/form_builder/components/controls/TableControl.vue:53 msgid "Grid Empty State" -msgstr "" +msgstr "Prazno Stanje Mreže" #. Label of the grid_page_length (Int) field in DocType 'DocType' #. Label of the grid_page_length (Int) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "" +msgstr "Mreža Dužina Stranice" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" -msgstr "" +msgstr "Prečica Mreže" #. Label of the group (Data) field in DocType 'DocType Action' #. Label of the group (Data) field in DocType 'DocType Link' @@ -11453,69 +11552,73 @@ msgstr "" #: frappe/core/doctype/doctype_link/doctype_link.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Group" -msgstr "" +msgstr "Grupa" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" -msgstr "" +msgstr "Grupiši Po" #. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Based On" -msgstr "" +msgstr "Grupiši Po Na Osnovu" #. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Type" -msgstr "" +msgstr "Grupiši Po Tipu" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 msgid "Group By field is required to create a dashboard chart" -msgstr "" +msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table" + +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "Grupiraj Po mora biti niz" #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" -msgstr "" +msgstr "Grupni Član" #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" -msgstr "" +msgstr "Objekt Klase Grupe" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Group your custom doctypes under modules" -msgstr "" +msgstr "Grupiraj vaše prilagođene tipove dokumenata pod modulima" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" -msgstr "" +msgstr "Grupirano po {0}" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "HEAD" -msgstr "" +msgstr "HEAD" #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "HERE" -msgstr "" +msgstr "OVDJE" #. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm" -msgstr "" +msgstr "HH:mm" #. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm:ss" -msgstr "" +msgstr "HH:mm:ss" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11523,7 +11626,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11537,18 +11639,17 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11557,79 +11658,79 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "HTML Editor" -msgstr "" +msgstr "HTML Uređivač" #. Label of the page (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "HTML Page" -msgstr "" +msgstr "HTML Stranica" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "HTML for header section. Optional" -msgstr "" +msgstr "HTML za sekciju zaglavlja. Opcija" #: frappe/website/doctype/web_page/web_page.js:92 msgid "HTML with jinja support" -msgstr "" +msgstr "HTML sa Jinja podrškom" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Half" -msgstr "" +msgstr "Pola" #. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Half Yearly" -msgstr "" +msgstr "Polugodišnje" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/public/js/frappe/utils/common.js:402 msgid "Half-yearly" -msgstr "" +msgstr "Polugodišnje" #. Label of the handled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Handled Emails" -msgstr "" +msgstr "Obrađena e-pošta" #. Label of the has_attachment (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Has Attachment" -msgstr "" +msgstr "Ima Prilog" #. Name of a DocType #: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" -msgstr "" +msgstr "Ima Domenu" #. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Has Next Condition" -msgstr "" +msgstr "Ima Sljedeći Uslov" #. Name of a DocType #: frappe/core/doctype/has_role/has_role.json msgid "Has Role" -msgstr "" +msgstr "Ima Ulogu" #. Label of the has_setup_wizard (Check) field in DocType 'Installed #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Has Setup Wizard" -msgstr "" +msgstr "Ima Guide Postavljanja" #. Label of the has_web_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Has Web View" -msgstr "" +msgstr "Ima web pregled" #: frappe/templates/signup.html:19 msgid "Have an account? Login" -msgstr "" +msgstr "Imaš račun? Prijavi se" #. Label of the header (Check) field in DocType 'SMS Parameter' #. Label of the header_section (Section Break) field in DocType 'Letter Head' @@ -11640,47 +11741,47 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "" +msgstr "Zaglavlje" #. Label of the content (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" -msgstr "" +msgstr "HTML Zaglavlja" #: frappe/printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" -msgstr "" +msgstr "HTML Zaglavlja postavljen iz priloga {0}" #. Label of the header_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header Script" -msgstr "" +msgstr "Skripta Zaglavlja" #. Label of the sb2 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Header and Breadcrumbs" -msgstr "" +msgstr "Zaglavlje i Mrvice" #. Label of the section_break_38 (Tab Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Header, Robots" -msgstr "" +msgstr "Zaglavlje, Roboti" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Header/Footer scripts can be used to add dynamic behaviours." -msgstr "" +msgstr "Skripte Zaglavlja/Podnožja mogu se koristiti za dodavanje dinamičkog ponašanja." #. Label of the webhook_headers (Table) field in DocType 'Webhook' #. Label of the headers (Code) field in DocType 'Webhook Request Log' #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Headers" -msgstr "" +msgstr "Zaglavlja" #: frappe/email/email_body.py:322 msgid "Headers must be a dictionary" -msgstr "" +msgstr "Zaglavlja moraju biti rječnik" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11699,11 +11800,11 @@ msgstr "Naslov" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Heatmap" -msgstr "" +msgstr "Toplotna Karta" #: frappe/templates/emails/new_user.html:2 msgid "Hello" -msgstr "" +msgstr "Zdravo" #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' @@ -11714,69 +11815,69 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/navbar.html:87 #: frappe/public/js/frappe/utils/help.js:27 msgid "Help" -msgstr "" +msgstr "Pomoć" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/help_article/help_article.json #: frappe/website/workspace/website/website.json msgid "Help Article" -msgstr "" +msgstr "Članak pomoći" #. Label of the help_articles (Int) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Help Articles" -msgstr "" +msgstr "Članci Pomoći" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/help_category/help_category.json #: frappe/website/workspace/website/website.json msgid "Help Category" -msgstr "" +msgstr "Kategorija Pomoći" #. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" -msgstr "" +msgstr "Padajući Meni Pomoći" #. Label of the help_html (HTML) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "" +msgstr "HTML Pomoći" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" -msgstr "" +msgstr "Pomoć za Pretragu" #. Description of the 'Content' (Text Editor) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" -msgstr "" +msgstr "Pomoć: Za povezivanje s drugim zapisom u sistemu koristite \"/app/note/[Naziv bilješke]\" kao URL veze. (ne koristi \"http://\")" #. Label of the helpful (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Helpful" -msgstr "" +msgstr "Korisno" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "" +msgstr "Helvetica" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" -msgstr "" +msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" -msgstr "" +msgstr "Ovdje je vaš URL-a za praćenje" #: frappe/www/qrcode.html:9 msgid "Hi {0}" -msgstr "" +msgstr "Zdravo {0}" #. Label of the hidden (Check) field in DocType 'DocField' #. Label of the hidden (Check) field in DocType 'DocType Action' @@ -11798,13 +11899,17 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Hidden" -msgstr "" +msgstr "Sakriveno" #. Label of the section_break_13 (Section Break) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hidden Fields" -msgstr "" +msgstr "Sakrivena Polja" + +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "Skriveni stupci uključuju: {0}" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -11812,13 +11917,14 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" -msgstr "" +msgstr "Sakrij" #. Label of the hide_block (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Hide Block" -msgstr "" +msgstr "Sakrij Blok" #. Label of the hide_border (Check) field in DocType 'DocField' #. Label of the hide_border (Check) field in DocType 'Custom Field' @@ -11827,29 +11933,29 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Border" -msgstr "" +msgstr "Sakrij Obrub" #. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Buttons" -msgstr "" +msgstr "Sakrij Dugmad" #. Label of the hide_cta (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Hide CTA" -msgstr "" +msgstr "Sakrij Poziv Na Akciju" #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Hide Copy" -msgstr "" +msgstr "Sakrij Kopiju" #. Label of the hide_custom (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "" +msgstr "Sakrij prilagođene tipove dokumenata i izvještaje" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11858,46 +11964,46 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Days" -msgstr "" +msgstr "Sakrij Dane" #. Label of the hide_descendants (Check) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" -msgstr "" +msgstr "Sakrij Podređene" #. Label of the hide_empty_read_only_fields (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide Empty Read-Only Fields" -msgstr "" +msgstr "Onemogući Prazna Polja Samo za Čitanje" #: frappe/www/error.html:62 msgid "Hide Error" -msgstr "" +msgstr "Sakrij Grešku" #: frappe/printing/page/print_format_builder/print_format_builder.js:488 msgid "Hide Label" -msgstr "" +msgstr "Sakrij Oznaku" #. Label of the hide_login (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide Login" -msgstr "" +msgstr "Sakrij Prijavu" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "" +msgstr "Sakrij Pregled" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Previous, Next and Close button on highlight dialog." -msgstr "" +msgstr "Sakrij Prethodni, Sljedeći i Zatvori dugme u dijaloškom okviru za isticanje." #: frappe/public/js/frappe/list/list_filter.js:94 msgid "Hide Saved" -msgstr "" +msgstr "Sakrij Spremljeno" #. Label of the hide_seconds (Check) field in DocType 'DocField' #. Label of the hide_seconds (Check) field in DocType 'Custom Field' @@ -11906,76 +12012,76 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Seconds" -msgstr "" +msgstr "Sakrij Sekunde" #. Label of the hide_toolbar (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" -msgstr "" +msgstr "Sakrij Bočnu Traku, Meni i Komentare" #. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" -msgstr "" +msgstr "Sakrij Standardni Meni" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" -msgstr "" +msgstr "Sakrij Oznake" #: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Hide Weekends" -msgstr "" +msgstr "Sakrij Vikende" #. Description of the 'Hide Descendants' (Check) field in DocType 'User #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Hide descendant records of For Value." -msgstr "" +msgstr "Sakrij podređene zapise Za Vrijednost." #: frappe/public/js/frappe/form/layout.js:286 msgid "Hide details" -msgstr "" +msgstr "Sakrij Detalje" #. Label of the hide_footer (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide footer" -msgstr "" +msgstr "Sakrij Podnožje" #. Label of the hide_footer_in_auto_email_reports (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide footer in auto email reports" -msgstr "" +msgstr "Sakrij podnožje u automatskim izvještajima e-pošte" #. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide footer signup" -msgstr "" +msgstr "Sakrij prijavu u podnožju" #. Label of the hide_navbar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide navbar" -msgstr "" +msgstr "Sakrij Navigacijsku Traku" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:225 msgid "High" -msgstr "" +msgstr "Visoki" #. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Higher priority rule will be applied first" -msgstr "" +msgstr "Prvo će se primijeniti pravilo višeg prioriteta" #. Label of the highlight (Text) field in DocType 'Company History' #: frappe/website/doctype/company_history/company_history.json msgid "Highlight" -msgstr "" +msgstr "Istaknuto" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "" +msgstr "Savjet: Uključi simbole, brojeve i velika slova u lozinku" #. Label of the home_tab (Tab Break) field in DocType 'Website Settings' #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 @@ -11991,33 +12097,33 @@ msgstr "" #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 #: frappe/www/message.html:29 msgid "Home" -msgstr "" +msgstr "Početna" #. Label of the home_page (Data) field in DocType 'Role' #. Label of the home_page (Data) field in DocType 'Website Settings' #: frappe/core/doctype/role/role.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Home Page" -msgstr "" +msgstr "Početna Stranica" #. Label of the home_settings (Code) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Home Settings" -msgstr "" +msgstr "Početna Postavke" #: frappe/core/doctype/file/test_file.py:321 #: frappe/core/doctype/file/test_file.py:323 #: frappe/core/doctype/file/test_file.py:387 msgid "Home/Test Folder 1" -msgstr "" +msgstr "Početna/Test Maps 1" #: frappe/core/doctype/file/test_file.py:376 msgid "Home/Test Folder 1/Test Folder 3" -msgstr "" +msgstr "Početna/Test Mapa 1/Test Mapa 3" #: frappe/core/doctype/file/test_file.py:332 msgid "Home/Test Folder 2" -msgstr "" +msgstr "Početna/Test Mapa 2" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' @@ -12026,40 +12132,50 @@ msgstr "" #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/user/user.json msgid "Hourly" -msgstr "" +msgstr "Svaki Sat" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Hourly Long" -msgstr "" +msgstr "Cijeli Sat" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Hourly Maintenance" -msgstr "" +msgstr "Satno Održavanje" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hourly rate limit for generating password reset links" -msgstr "" +msgstr "Broj veza koji se mogu kreirati po satu za poništavanje lozinke" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Sati" #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "" +msgstr "Kako treba formatirati ovu valutu? Ako nije postavljeno, koristit će se standard postavke sistema" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Naziv namijenjen je za prikaz krajnjem korisniku." #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" -msgstr "" +msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga možete kreirati samo za sebe. Kliknite na dugme Kreiraj Radni Prostor da biste ga kreirali.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12069,33 +12185,33 @@ msgstr "" #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "" +msgstr "ID" #: frappe/desk/reportview.py:491 #: frappe/public/js/frappe/views/reports/report_view.js:984 msgctxt "Label of name column in report" msgid "ID" -msgstr "" +msgstr "ID" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 msgid "ID (name)" -msgstr "" +msgstr "ID (ime)" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "" +msgstr "ID (naziv) entiteta čije svojstvo treba postaviti" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." -msgstr "" +msgstr "ID-ovi moraju sadržavati samo alfanumeričke znakove, ne moraju sadržavati razmake i trebaju biti jedinstveni." #. Label of the section_break_25 (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "IMAP Details" -msgstr "" +msgstr "IMAP Detalji" #. Label of the imap_folder (Data) field in DocType 'Communication' #. Label of the imap_folder (Table) field in DocType 'Email Account' @@ -12104,14 +12220,14 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" -msgstr "" +msgstr "IMAP Mapa" #. Label of the ip_address (Data) field in DocType 'Activity Log' #. Label of the ip_address (Data) field in DocType 'Comment' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/comment/comment.json msgid "IP Address" -msgstr "" +msgstr "IP Adresa" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the icon (Data) field in DocType 'DocType' @@ -12135,29 +12251,29 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:458 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon" -msgstr "" +msgstr "Ikona" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon will appear on the button" -msgstr "" +msgstr "Ikona će se pojaviti na dugmetu" #. Label of the sb_identity_details (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Identity Details" -msgstr "" +msgstr "Detalji Identiteta" #. Label of the idx (Int) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "" +msgstr "Indeks" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "" +msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano je korisničko dopuštenje za DocType za korisnika, tada svi dokumenti u kojima je vrijednost veze prazna neće biti prikazani tom korisniku" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' @@ -12166,137 +12282,137 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "If Checked workflow status will not override status in list view" -msgstr "" +msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste" #: frappe/core/doctype/doctype/doctype.py:1763 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" -msgstr "" +msgstr "Ako je Vlasnik" #: frappe/core/page/permission_manager/permission_manager_help.html:25 msgid "If a Role does not have access at Level 0, then higher levels are meaningless." -msgstr "" +msgstr "Ako Uloga nema pristup na Nivou 0, tada su viši nivoi besmisleni." #. Description of the 'Is Active' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "If checked, all other workflows become inactive." -msgstr "" +msgstr "Ako je označeno, svi ostali radni tokovi postaju neaktivni." #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' #: frappe/printing/doctype/print_format/print_format.json msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" -msgstr "" +msgstr "Ako je označeno, negativne numeričke vrijednosti valute, količine ili broja biće prikazane kao pozitivne" #. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "If checked, users will not see the Confirm Access dialog." -msgstr "" +msgstr "Ako je označeno, korisnici neće vidjeti dijalog Potvrdi Pristup." #. Description of the 'Disabled' (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "" +msgstr "Ako je onemogućena, ova uloga će biti uklonjena sa svih korisnika." #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "" +msgstr "Ako je omogućeno, korisnik se može prijaviti s bilo koje IP adrese koristeći dvostruku autentifikaciju, to se također može postaviti za sve korisnike u sistemskim postavkama" #. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "If enabled, all responses on the web form will be submitted anonymously" -msgstr "" +msgstr "Ako je omogućeno, svi odgovori u web formi bit će dostavljeni anonimno" #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "" +msgstr "Ako je omogućeno, svi korisnici se mogu prijaviti sa bilo koje IP adrese koristeći dvofaktosku autetifikaciju. Ovo se također može podesiti samo za određene korisnike na korisničkoj stranici" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "" +msgstr "Ako je omogućeno, promjene u dokumentu se prate i prikazuju na vremenskoj liniji" #. Description of the 'Track Views' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "" +msgstr "Ako je omogućeno, pregledi dokumenata se prate, to se može dogoditi više puta" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "" +msgstr "Ako je omogućeno, dokument se označava kao viđen, kada ga korisnik prvi put otvori" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "" +msgstr "Ako je omogućeno, obavještenje će se pojaviti u padajućem izborniku obavještenja u gornjem desnom uglu navigacijske trake." #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." -msgstr "" +msgstr "Ako je omogućeno, snaga lozinke bit će nametnuta na temelju minimalne vrijednosti zaporke. Vrijednost 1 je vrlo slaba, a 4 vrlo jaka." #. Description of the 'Bypass Two Factor Auth for users who login from #. restricted IP Address' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "" +msgstr "Ako je omogućeno, korisnici koji se prijavljuju s ograničene IP adrese neće biti upitani za dvofaktorsku autentifikaciju" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' #: frappe/desk/doctype/note/note.json msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "" +msgstr "Ako je omogućeno, korisnici će biti obaviješteni svaki put kada se prijave. Ako nije omogućeno, korisnici će biti obaviješteni samo jednom." #. Description of the 'Default Workspace' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If left empty, the default workspace will be the last visited workspace" -msgstr "" +msgstr "Ako ostane prazno, standard radni prostor bit će posljednji posjećeni radni prostor" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "If non standard port (e.g. 587)" -msgstr "" +msgstr "Ako nije standardni port (npr. 587)" #. Description of the 'Port' (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "" +msgstr "Ako nije standardni port (npr. 587). Ako koristite Google Cloud, pokušajte s portom 2525." #. Description of the 'Port' (Data) field in DocType 'Email Account' #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "" +msgstr "Ako nije standardani port (npr. POP3: 995/110, IMAP: 993/143)" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If not set, the currency precision will depend on number format" -msgstr "" +msgstr "Ako nije postavljeno, preciznost valute zavisiće o formatu broja" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." -msgstr "" +msgstr "Ako je postavljeno, samo korisnik sa ovim ulogama može pristupiti ovom grafikonu. Ako nije postavljeno, koristit će se dozvole DocType ili Izvještaj." #. Description of the 'User Type' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" -msgstr "" +msgstr "Ako korisnik ima odabranu bilo koju ulogu, tada korisnik postaje \"Korisnik Sistema\". \"Korisnik Sistema\" ima pristup radnoj površini" #: frappe/core/page/permission_manager/permission_manager_help.html:38 msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." -msgstr "" +msgstr "Ako vam ove upute nisu pomogle, dodajte svoje prijedloge o GitHub problemima." #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' @@ -12308,49 +12424,49 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "If unchecked, the value will always be re-fetched on save." -msgstr "" +msgstr "Ako nije označeno, vrijednost će se uvijek ponovo preuzeti prilikom spremanja." #. Label of the if_owner (Check) field in DocType 'Custom DocPerm' #. Label of the if_owner (Check) field in DocType 'DocPerm' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "If user is the owner" -msgstr "" +msgstr "Ako je korisnik vlasnik" #: frappe/core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." -msgstr "" +msgstr "Ako ažuriraš, odaberi \"Prepiši\" inače postojeći redovi neće biti izbrisani." #: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "" +msgstr "Ako učitavaš nove zapise, \"Imenovanje Serije\" postaje obavezno, ako postoji." #: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." -msgstr "" +msgstr "Ako učitavate nove zapise, ostavite kolonu \"ime\" (ID) praznom." #: frappe/utils/password.py:214 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." -msgstr "" +msgstr "Ako ste nedavno vratili web stranicu, možda ćete morati kopirati konfiguraciju web stranice koja sadrži izvorni ključ šifriranja." #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "" +msgstr "Ako ovo postaviš, pojaviće se unos u padajućem meniju nadređenog procesa." #: frappe/templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." -msgstr "" +msgstr "Ako mislite da je ovo neovlašteno, promijenite administratorsku lozinku." #. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." -msgstr "" +msgstr "Ako vaš CSV koristi drugačiji razdjelnik, dodajte taj znak ovdje, pazeći da nema razmaka ili dodatnih znakova." #. Description of the 'Source Text' (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "" +msgstr "Ako su vaši podaci u HTML-u, kopirajte i zalijepite tačan HTML kod sa oznakama." #. Label of the ignore_user_permissions (Check) field in DocType 'DocField' #. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' @@ -12360,7 +12476,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore User Permissions" -msgstr "" +msgstr "Zanemari Korisničke Dozvole" #. Label of the ignore_xss_filter (Check) field in DocType 'DocField' #. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' @@ -12370,7 +12486,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "" +msgstr "Zanemari XSS Filter" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' @@ -12379,25 +12495,25 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Ignore attachments over this size" -msgstr "" +msgstr "Zanemari priloge veće od ove veličine" #. Label of the ignored_apps (Table) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Ignored Apps" -msgstr "" +msgstr "Ignorisane Aplikacije" #: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" -msgstr "" +msgstr "Ilegalan Status Dokumenta za {0}" #: frappe/model/db_query.py:452 frappe/model/db_query.py:455 #: frappe/model/db_query.py:1129 msgid "Illegal SQL Query" -msgstr "" +msgstr "Ilegalan SQL Upit" #: frappe/utils/jinja.py:127 msgid "Illegal template" -msgstr "" +msgstr "Ilegalan Šablon" #. Label of the image (Attach Image) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'DocField' @@ -12422,86 +12538,86 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Image" -msgstr "" +msgstr "Slika" #. Label of the image_field (Data) field in DocType 'DocType' #. Label of the image_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Image Field" -msgstr "" +msgstr "Polje Slike" #. Label of the image_height (Float) field in DocType 'Letter Head' #. Label of the footer_image_height (Float) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Height" -msgstr "" +msgstr "Visina Slike" #. Label of the image_link (Attach) field in DocType 'About Us Team Member' #: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "Image Link" -msgstr "" +msgstr "Veza Slike" #: frappe/public/js/frappe/list/base_list.js:208 msgid "Image View" -msgstr "" +msgstr "Prikaz Slike" #. Label of the image_width (Float) field in DocType 'Letter Head' #. Label of the footer_image_width (Float) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Width" -msgstr "" +msgstr "Širina Slike" #: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" -msgstr "" +msgstr "Polje slike mora biti važeće ime polja" #: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" -msgstr "" +msgstr "Polje za sliku mora biti tipa Priloži Sliku" #: frappe/core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" -msgstr "" +msgstr "Veza slike '{0}' nije važeća" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" -msgstr "" +msgstr "Slika optimizovana" #: frappe/core/doctype/file/utils.py:289 msgid "Image: Corrupted Data Stream" -msgstr "" +msgstr "Slika: Oštećen Tok Podataka" #: frappe/public/js/frappe/views/image/image_view.js:13 msgid "Images" -msgstr "" +msgstr "Slike" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.js:378 msgid "Impersonate" -msgstr "" +msgstr "Oponašaj" #: frappe/core/doctype/user/user.js:405 msgid "Impersonate as {0}" -msgstr "" +msgstr "Oponašaj {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 msgid "Impersonated by {0}" -msgstr "" +msgstr "Oponašan od {0}" #: frappe/public/js/frappe/ui/toolbar/navbar.html:21 msgid "Impersonating {0}" -msgstr "" +msgstr "Oponaša {0}" #: frappe/core/doctype/log_settings/log_settings.py:56 msgid "Implement `clear_old_logs` method to enable auto error clearing." -msgstr "" +msgstr "Implementiraj metodu `clear_old_logs` da omogućite automatsko brisanje grešaka." #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Implicit" -msgstr "" +msgstr "Implicitno" #. Label of the import (Check) field in DocType 'Custom DocPerm' #. Label of the import (Check) field in DocType 'DocPerm' @@ -12510,118 +12626,118 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:16 #: frappe/email/doctype/email_group/email_group.js:31 msgid "Import" -msgstr "" +msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" -msgstr "" +msgstr "Uvezi" #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Import Data" -msgstr "" +msgstr "Uvoz Podataka" #: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" -msgstr "" +msgstr "Uvezi e-poštu iz" #. Label of the import_file (Attach) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import File" -msgstr "" +msgstr "Uvezi Datoteku" #. Label of the import_warnings_section (Section Break) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import File Errors and Warnings" -msgstr "" +msgstr "Uvezi Greške i Upozorenja Datoteke" #. Label of the import_log_section (Section Break) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Log" -msgstr "" +msgstr "Zapisnik Uvoza" #. Label of the import_log_preview (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Log Preview" -msgstr "" +msgstr "Pregled Zapisnika Uvoza" #. Label of the import_preview (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Preview" -msgstr "" +msgstr "Pregled Uvoza" #: frappe/core/doctype/data_import/data_import.js:41 msgid "Import Progress" -msgstr "" +msgstr "Napredak Uvoza" #: frappe/email/doctype/email_group/email_group.js:8 #: frappe/email/doctype/email_group/email_group.js:30 msgid "Import Subscribers" -msgstr "" +msgstr "Uvezij Pretplatnike" #. Label of the import_type (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Type" -msgstr "" +msgstr "Tip Uvoza" #. Label of the import_warnings (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Warnings" -msgstr "" +msgstr "Upozorenja Uvoza" #: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" -msgstr "" +msgstr "Uvezi Zip" #. Label of the google_sheets_url (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import from Google Sheets" -msgstr "" +msgstr "Uvezi iz Google Sheet" #: frappe/core/doctype/data_import/importer.py:612 msgid "Import template should be of type .csv, .xlsx or .xls" -msgstr "" +msgstr "Šablon za Uvoz treba biti tipa .csv, .xlsx ili .xls" #: frappe/core/doctype/data_import/importer.py:482 msgid "Import template should contain a Header and atleast one row." -msgstr "" +msgstr "Šablon za Uvoz treba da sadrži Zaglavlje i najmanje jedan red." #: frappe/core/doctype/data_import/data_import.js:165 msgid "Import timed out, please re-try." -msgstr "" +msgstr "Uvoz je istekao, pokušaj ponovo." #: frappe/core/doctype/data_import/data_import.py:68 msgid "Importing {0} is not allowed." -msgstr "" +msgstr "Uvoz {0} nije dozvoljen." #: frappe/integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" -msgstr "" +msgstr "Uvoz {0} od {1}" #: frappe/core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" -msgstr "" +msgstr "Uvozi se {0} od {1}, {2}" #: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" -msgstr "" +msgstr "U" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In Days" -msgstr "" +msgstr "U Danima" #. Label of the in_filter (Check) field in DocType 'DocField' #. Label of the in_filter (Check) field in DocType 'Customize Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Filter" -msgstr "" +msgstr "U Filteru" #. Label of the in_global_search (Check) field in DocType 'DocField' #. Label of the in_global_search (Check) field in DocType 'Custom Field' @@ -12631,16 +12747,16 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "" +msgstr "U Globalnoj Pretrazi" #: frappe/core/doctype/doctype/doctype.js:88 msgid "In Grid View" -msgstr "" +msgstr "U Prikazu Mreže" #. Label of the in_standard_filter (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "In List Filter" -msgstr "" +msgstr "U Filteru Liste" #. Label of the in_list_view (Check) field in DocType 'DocField' #. Label of the in_list_view (Check) field in DocType 'Custom Field' @@ -12650,11 +12766,11 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In List View" -msgstr "" +msgstr "U Prikazu Liste" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 msgid "In Minutes" -msgstr "" +msgstr "U Minutama" #. Label of the in_preview (Check) field in DocType 'DocField' #. Label of the in_preview (Check) field in DocType 'Custom Field' @@ -12663,20 +12779,20 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Preview" -msgstr "" +msgstr "U Pregledu" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "" +msgstr "U Toku" #: frappe/database/database.py:287 msgid "In Read Only Mode" -msgstr "" +msgstr "U Samo za Čitanje Načinu" #. Label of the in_reply_to (Link) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "" +msgstr "U Odgovoru" #. Label of the in_standard_filter (Check) field in DocType 'Custom Field' #. Label of the in_standard_filter (Check) field in DocType 'Customize Form @@ -12684,140 +12800,144 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Standard Filter" -msgstr "" +msgstr "U Standardnom Filteru" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "" +msgstr "U Pixelima. Standard je 9." #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In seconds" -msgstr "" +msgstr "U sekundama" #: frappe/core/doctype/recorder/recorder_list.js:209 msgid "Inactive" -msgstr "" +msgstr "Neaktivan" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/email/doctype/email_account/email_account_list.js:19 msgid "Inbox" -msgstr "" +msgstr "Pristigla Pošta" #. Name of a role #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_account/email_account.json msgid "Inbox User" -msgstr "" +msgstr "Korisnik Pristigle Pošte" #: frappe/public/js/frappe/list/base_list.js:209 msgid "Inbox View" -msgstr "" +msgstr "Prikaz Pristigle Pošte" #: frappe/public/js/frappe/views/treeview.js:110 msgid "Include Disabled" -msgstr "" +msgstr "Uključi Onemogućene" #. Label of the include_name_field (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Include Name Field" -msgstr "" +msgstr "Uključi Polje Naziva" #. Label of the navbar_search (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Include Search in Top Bar" -msgstr "" +msgstr "Uključi Pretragu u Gornju Traku" #: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" -msgstr "" +msgstr "Uključite Teme iz Aplikacija" #. Label of the attach_view_link (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Include Web View Link in Email" -msgstr "" +msgstr "Uključi Web Pregled vezu u e-poštu" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" -msgstr "" +msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "Uključi skrivene stupce" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" -msgstr "" +msgstr "Uključi Uvlačenje" #: frappe/public/js/frappe/form/controls/password.js:106 msgid "Include symbols, numbers and capital letters in the password" -msgstr "" +msgstr "Uključi simbole, brojeve i velika slova u lozinku" #. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Incoming" -msgstr "" +msgstr "Dolazna" #. Label of the mailbox_settings (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Incoming (POP/IMAP) Settings" -msgstr "" +msgstr "Dolazne (POP/IMAP) Postavke" #. Label of the incoming_emails_last_7_days_column (Column Break) field in #. DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Incoming Emails (Last 7 days)" -msgstr "" +msgstr "Dolazna e-pošta (posljednjih 7 dana)" #. Label of the email_server (Data) field in DocType 'Email Account' #. Label of the email_server (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Server" -msgstr "" +msgstr "Dolazni Server" #. Label of the mailbox_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Settings" -msgstr "" +msgstr "Dolazne Postavke" #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" -msgstr "" +msgstr "Račun dolazne e-pošte nije ispravan" #: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" -msgstr "" +msgstr "Nepotpuna implementacija virtualnog tipa dokumenta" #: frappe/auth.py:255 msgid "Incomplete login details" -msgstr "" +msgstr "Nepotpuni podaci prijave" #: frappe/email/smtp.py:104 msgid "Incorrect Configuration" -msgstr "" +msgstr "Neispravna Konfiguracija" #: frappe/utils/csvutils.py:234 msgid "Incorrect URL" -msgstr "" +msgstr "Neispravan URL" #: frappe/utils/password.py:101 msgid "Incorrect User or Password" -msgstr "" +msgstr "Netačan korisnik ili lozinka" #: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" -msgstr "" +msgstr "Netačan Verifikacioni Kod" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" -msgstr "" +msgstr "Netačna vrijednost u redu {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" -msgstr "" +msgstr "Netačna vrijednost:" #. Label of the search_index (Check) field in DocType 'DocField' #. Label of the index (Int) field in DocType 'Recorder Query' @@ -12829,163 +12949,163 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:124 #: frappe/public/js/frappe/views/reports/report_view.js:1005 msgid "Index" -msgstr "" +msgstr "Indeks" #. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Index Web Pages for Search" -msgstr "" +msgstr "Indeksiraj Web Stranice za Pretragu" #: frappe/core/doctype/recorder/recorder.py:132 msgid "Index created successfully on column {0} of doctype {1}" -msgstr "" +msgstr "Indeks je uspješno kreiran na koloni {0} tipa dokumenta {1}" #. Label of the indexing_authorization_code (Data) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing authorization code" -msgstr "" +msgstr "Autorizacijski kod za indeksiranje" #. Label of the indexing_refresh_token (Data) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing refresh token" -msgstr "" +msgstr "Token za osvježavanje indeksiranja" #. Label of the indicator (Select) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Indicator" -msgstr "" +msgstr "Pokazatelj" #. Label of the indicator_color (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Indicator Color" -msgstr "" +msgstr "Boja Pokazatelja" #: frappe/public/js/frappe/views/workspace/workspace.js:463 msgid "Indicator color" -msgstr "" +msgstr "Boja Pokazatelja" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/core/doctype/comment/comment.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Info" -msgstr "" +msgstr "Info" #: frappe/core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "" +msgstr "Info:" #. Label of the initial_sync_count (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Initial Sync Count" -msgstr "" +msgstr "Početni Broj Sinkronizacije" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "InnoDB" -msgstr "" +msgstr "InnoDB" #. Description of the 'New Role' (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "Input existing role name if you would like to extend it with access of another role." -msgstr "" +msgstr "Unesi ime postojeće uloge ako želite da je proširite pristupom druge uloge." #: frappe/core/doctype/data_import/data_import_list.js:35 msgid "Insert" -msgstr "" +msgstr "Umetni" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Above" -msgstr "" +msgstr "Umetni Iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" -msgstr "" +msgstr "Umetni Poslije" #: frappe/custom/doctype/custom_field/custom_field.py:251 msgid "Insert After cannot be set as {0}" -msgstr "" +msgstr "Umetni Nakon ne može se postaviti kao {0}" #: frappe/custom/doctype/custom_field/custom_field.py:244 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" -msgstr "" +msgstr "Umetni Nakon polja '{0}' spomenutog u prilagođenom polju '{1}', sa oznakom '{2}', ne postoji" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Below" -msgstr "" +msgstr "Umetni Ispod" #: frappe/public/js/frappe/views/reports/report_view.js:390 msgid "Insert Column Before {0}" -msgstr "" +msgstr "Umetni Kolonu Ispred {0}" #: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" -msgstr "" +msgstr "Umetnite sliku u Markdown" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Insert New Records" -msgstr "" +msgstr "Umetni Nove Zapise" #. Label of the insert_style (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Insert Style" -msgstr "" +msgstr "Umetni Stil" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 msgid "Install {0} from Marketplace" -msgstr "" +msgstr "Instaliraj {0} sa Marketplace" #. Name of a DocType #: frappe/core/doctype/installed_application/installed_application.json msgid "Installed Application" -msgstr "" +msgstr "Instalirana Aplikacija" #. Name of a DocType #. Label of the installed_applications (Table) field in DocType 'Installed #. Applications' #: frappe/core/doctype/installed_applications/installed_applications.json msgid "Installed Applications" -msgstr "" +msgstr "Instalirane Aplikacije" #: frappe/core/doctype/installed_applications/installed_applications.js:18 #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" -msgstr "" +msgstr "Instalirane Aplikacije" #. Label of the instructions (HTML) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Instructions" -msgstr "" +msgstr "Instrukcije" #: frappe/templates/includes/login/login.js:261 msgid "Instructions Emailed" -msgstr "" +msgstr "Instrukcije Poslane e-poštom" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" -msgstr "" +msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" -msgstr "" +msgstr "Nedovoljne Dozvole za {0}" #: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" -msgstr "" +msgstr "Nedovoljne dozvole za brisanje izvještaja" #: frappe/desk/reportview.py:331 msgid "Insufficient Permissions for editing Report" -msgstr "" +msgstr "Nedovoljne Dozvole za uređivanje Izvještaja" #: frappe/core/doctype/doctype/doctype.py:445 msgid "Insufficient attachment limit" -msgstr "" +msgstr "Nedovoljno ograničenje priloga" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -13002,12 +13122,12 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Int" -msgstr "" +msgstr "Cijeli Broj" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" -msgstr "" +msgstr "Zahtjev Integracije" #. Group in User's connections #. Name of a Workspace @@ -13016,48 +13136,48 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" -msgstr "" +msgstr "Integracije" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "" +msgstr "Integracije mogu koristiti ovo polje za postavljanje statusa isporuke e-pošte" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Inter" -msgstr "" +msgstr "Inter" #. Label of the interest (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "" +msgstr "Interesi" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Intermediate" -msgstr "" +msgstr "Srednji" #: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" -msgstr "" +msgstr "Interna Greška Servera" #. Description of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "Internal record of document shares" -msgstr "" +msgstr "Interni zapsi djeljenja dokumenata" #. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Intro Video URL" -msgstr "" +msgstr "URL Uvodnog Videa" #. Description of the 'Company Introduction' (Text Editor) field in DocType #. 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Introduce your company to the website visitor." -msgstr "" +msgstr "Predstavite svoju kompaniju posjetitelju web stranice." #. Label of the introduction_section (Section Break) field in DocType 'Contact #. Us Settings' @@ -13067,305 +13187,385 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form/web_form.json msgid "Introduction" -msgstr "" +msgstr "Uvod" #. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Introductory information for the Contact Us Page" -msgstr "" +msgstr "Uvodne informacije za stranicu Kontaktirajte nas" #. Label of the introspection_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Introspection URI" -msgstr "" +msgstr "Introspekcija URI" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Invalid" -msgstr "" +msgstr "Nevažeći" #: frappe/public/js/form_builder/utils.js:221 #: frappe/public/js/frappe/form/grid_row.js:833 #: frappe/public/js/frappe/form/layout.js:811 #: frappe/public/js/frappe/views/reports/report_view.js:716 msgid "Invalid \"depends_on\" expression" -msgstr "" +msgstr "Nevažeći izraz \"depends_on\"" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" -msgstr "" +msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}" #: frappe/public/js/frappe/form/save.js:159 msgid "Invalid \"mandatory_depends_on\" expression" -msgstr "" +msgstr "Nevažeći izraz \"mandatory_depends_on\"" #: frappe/utils/nestedset.py:178 msgid "Invalid Action" -msgstr "" +msgstr "Nevažeća Radnja" #: frappe/utils/csvutils.py:37 msgid "Invalid CSV Format" -msgstr "" +msgstr "Nevažeći CSV format" #: frappe/integrations/frappe_providers/frappecloud_billing.py:111 msgid "Invalid Code. Please try again." -msgstr "" +msgstr "Nevažeći Kod. Pkušaj ponovo." #: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" -msgstr "" +msgstr "Nevažeći Uslov: {}" #: frappe/email/smtp.py:135 msgid "Invalid Credentials" -msgstr "" +msgstr "Nevažeći Podaci" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" -msgstr "" +msgstr "Nevažeći Datum" #: frappe/www/list.py:85 msgid "Invalid DocType" -msgstr "" +msgstr "Nevažeći DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" -msgstr "" +msgstr "Nevažeći DocType: {0}" #: frappe/core/doctype/doctype/doctype.py:1272 msgid "Invalid Fieldname" -msgstr "" +msgstr "Nevažeći Naziv Polja" #: frappe/core/doctype/file/file.py:209 msgid "Invalid File URL" -msgstr "" +msgstr "Nevažeći URL Datoteke" + +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "Nevažeći Filter" #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" -msgstr "" +msgstr "Nevažeći Format Filtera za polje {0} tipa {1}. Pokušajte koristiti ikonu filtera na polju da ga ispravno postavite" #: frappe/utils/dashboard.py:61 msgid "Invalid Filter Value" -msgstr "" +msgstr "Nevažeća Vrijednost Filtera" #: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" -msgstr "" +msgstr "Nevažeća Početna Stranica" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" -msgstr "" +msgstr "Nevažeća Veza" #: frappe/www/login.py:128 msgid "Invalid Login Token" -msgstr "" +msgstr "Nevažeći Token Prijave" #: frappe/templates/includes/login/login.js:290 msgid "Invalid Login. Try again." -msgstr "" +msgstr "Nevažeća Prijava. Pokušaj ponovo." #: frappe/email/receive.py:112 frappe/email/receive.py:149 msgid "Invalid Mail Server. Please rectify and try again." -msgstr "" +msgstr "Nevažeći Server Pošte. Ispravi i pokušaj ponovo." #: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" -msgstr "" +msgstr "Nevažeća Serija Imenovanja: {}" #: frappe/core/doctype/rq_job/rq_job.py:113 #: frappe/core/doctype/rq_job/rq_job.py:122 msgid "Invalid Operation" -msgstr "" +msgstr "Nevažeća Operacija" #: frappe/core/doctype/doctype/doctype.py:1641 #: frappe/core/doctype/doctype/doctype.py:1650 msgid "Invalid Option" -msgstr "" +msgstr "Nevažeća Opcija" #: frappe/email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" -msgstr "" +msgstr "Nevažeći Server Odlazne Pošte ili port: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" -msgstr "" +msgstr "Nevažeći Izlazni Format" #: frappe/model/base_document.py:116 msgid "Invalid Override" -msgstr "" +msgstr "Nevažeće Nadjačavanje" #: frappe/integrations/doctype/connected_app/connected_app.py:195 msgid "Invalid Parameters." -msgstr "" +msgstr "Nevažeći Parametri." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" -msgstr "" +msgstr "Nevažeća Lozinka" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" -msgstr "" +msgstr "Nevažeći Broj Telefona" #: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" -msgstr "" +msgstr "Nevažeći Zahtjev" #: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" -msgstr "" +msgstr "Nevažeće Polje Pretrage {0}" #: frappe/core/doctype/doctype/doctype.py:1214 msgid "Invalid Table Fieldname" -msgstr "" +msgstr "Nevažeći Naziv Polja Tabele" #: frappe/public/js/workflow_builder/store.js:192 msgid "Invalid Transition" -msgstr "" +msgstr "Nevažeća Tranzicija" #: frappe/core/doctype/file/file.py:220 #: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" -msgstr "" +msgstr "Nevažeći URL" #: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." -msgstr "" +msgstr "Nevažeće Korisničko Ime ili Lozinka Podrške. Ispravi i pokušaj ponovo." #: frappe/public/js/frappe/ui/field_group.js:137 msgid "Invalid Values" -msgstr "" +msgstr "Nevažeće Vrijednosti" #: frappe/integrations/doctype/webhook/webhook.py:116 msgid "Invalid Webhook Secret" -msgstr "" +msgstr "Nevažeća Tajna Webhooka" #: frappe/desk/reportview.py:186 msgid "Invalid aggregate function" -msgstr "" +msgstr "Nevažeća agregatna funkcija" + +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja." + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Nevažeća vrsta argumenta: {0}. Dopušteni su samo nizovi, brojevi i None." + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojevi i podcrte." + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "Nevažeći znakovi u nazivu tablice: {0}" #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" -msgstr "" +msgstr "Nevažeća kolona" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'." + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" -msgstr "" +msgstr "Nevažeći status dokumenta" #: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" -msgstr "" +msgstr "Nevažeći izraz postavljen u filteru {0}" #: frappe/public/js/frappe/utils/dashboard_utils.js:219 msgid "Invalid expression set in filter {0} ({1})" -msgstr "" +msgstr "Nevažeći izraz postavljen u filteru {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, s obrnutim ukrštenim slovima, kvalificirani prema tablici, aliasi ili '*'." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'." + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Nevažeći naziv polja u funkciji: {0}. Dopušteni su samo jednostavni nazivi polja." + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" -msgstr "" +msgstr "Nevažeći naziv polja {0}" + +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "Nevažeći naziv polja: {0}" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "Nevažeći tip polja: {0}" #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" -msgstr "" +msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" #: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" -msgstr "" +msgstr "Nevažeći put datoteke: {0}" + +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka." + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'." -#: frappe/database/query.py:189 #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" -msgstr "" +msgstr "Nevažeći filter: {0}" + +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None." + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "Nevažeći format rječnika funkcija" #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" -msgstr "" +msgstr "Nevažeći json dodan u prilagođene opcije: {0}" #: frappe/model/naming.py:490 msgid "Invalid name type (integer) for varchar name column" -msgstr "" +msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar" #: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" -msgstr "" +msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)" #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" -msgstr "" +msgstr "Nevažeći ili oštećeni sadržaj za uvoz" #: frappe/website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" -msgstr "" +msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" -msgstr "" +msgstr "Nevažeći argumenti zahtjeva" + +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Nevažeći format jednostavnog filtra: {0}" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka." + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "Nevažeći format niza literala: {0}" #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" -msgstr "" +msgstr "Nevažeća datoteka šablona za uvoz" #: frappe/integrations/doctype/connected_app/connected_app.py:201 msgid "Invalid token state! Check if the token has been created by the OAuth user." -msgstr "" +msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik." #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 msgid "Invalid username or password" -msgstr "" +msgstr "Neispravno korisničko Ime ili lozinka" #: frappe/model/naming.py:168 msgid "Invalid value specified for UUID: {}" -msgstr "" +msgstr "Nevažeća vrijednost navedena za UUID: {}" #: frappe/public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" -msgstr "" +msgstr "Nevažeće vrijednosti za polja:" #: frappe/printing/page/print/print.js:614 msgid "Invalid wkhtmltopdf version" -msgstr "" +msgstr "Nevažeća verzija wkhtmltopdf" #: frappe/core/doctype/doctype/doctype.py:1564 msgid "Invalid {0} condition" -msgstr "" +msgstr "Nevažeći {0} uslov" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Inverse" -msgstr "" +msgstr "Obrnuto" #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" -msgstr "" +msgstr "Kreiraj Korisnika" #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" -msgstr "" +msgstr "Je" #. Label of the is_active (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Is Active" -msgstr "" +msgstr "Aktivan" #. Label of the is_attachments_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Attachments Folder" -msgstr "" +msgstr "Je Mapa Priloga" #. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' #. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" -msgstr "" +msgstr "Je Kalendar i Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' @@ -13373,31 +13573,31 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:49 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" -msgstr "" +msgstr "Je Podređena Tabela" #. Label of the is_complete (Check) field in DocType 'Module Onboarding' #. Label of the is_complete (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/module_onboarding/module_onboarding.json #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Complete" -msgstr "" +msgstr "Je Završeno" #. Label of the is_completed (Check) field in DocType 'Email Flag Queue' #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Is Completed" -msgstr "" +msgstr "Je Završeno" #. Label of the is_custom (Check) field in DocType 'Role' #. Label of the is_custom (Check) field in DocType 'User Document Type' #: frappe/core/doctype/role/role.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" -msgstr "" +msgstr "Je Prilagođeno" #. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Custom Field" -msgstr "" +msgstr "Je Prilagođeno Polje" #. Label of the is_default (Check) field in DocType 'Address Template' #. Label of the is_default (Check) field in DocType 'User Permission' @@ -13407,101 +13607,101 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:69 #: frappe/desk/doctype/dashboard/dashboard.json msgid "Is Default" -msgstr "" +msgstr "Je Standard" #. Label of the is_dynamic_url (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Is Dynamic URL?" -msgstr "" +msgstr "Je Dinamički URL?" #. Label of the is_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Folder" -msgstr "" +msgstr "Je Mapa" #: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" -msgstr "" +msgstr "Je Globalno" #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" -msgstr "" +msgstr "Je Skriveno" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "" +msgstr "Je početna fascikla" #. Label of the reqd (Check) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "" +msgstr "Je Obavezno Polje" #. Label of the is_optional_state (Check) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Is Optional State" -msgstr "" +msgstr "Je Opciono Stanje" #. Label of the is_primary (Check) field in DocType 'Contact Email' #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Is Primary" -msgstr "" +msgstr "Je Primarno" #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Is Primary Contact" -msgstr "" +msgstr "Je Primarni Kontakt" #. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "" +msgstr "Je Primarni Mobilni" #. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "" +msgstr "Je Primarni Telefon" #. Label of the is_private (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Private" -msgstr "" +msgstr "Je Privatno" #. Label of the is_public (Check) field in DocType 'Dashboard Chart' #. Label of the is_public (Check) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "" +msgstr "Je Javno" #. Label of the is_published_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Is Published Field" -msgstr "" +msgstr "Je Objavljeno Polje" #: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" -msgstr "" +msgstr "Je Objavljeno Polje mora biti važeći naziv polja" #. Label of the is_query_report (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:341 msgid "Is Query Report" -msgstr "" +msgstr "Je Izvještaj Upita" #. Label of the is_remote_request (Check) field in DocType 'Integration #. Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Is Remote Request?" -msgstr "" +msgstr "Je Daljinski Zahtjev?" #. Label of the is_setup_complete (Check) field in DocType 'Installed #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Is Setup Complete?" -msgstr "" +msgstr "Je li postavljanje dovršeno?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' @@ -13509,17 +13709,17 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:64 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" -msgstr "" +msgstr "Je Sam" #. Label of the is_skipped (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Skipped" -msgstr "" +msgstr "Je Preskočen" #. Label of the is_spam (Check) field in DocType 'Email Rule' #: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "" +msgstr "Je Neželjena Pošta" #. Label of the is_standard (Check) field in DocType 'Navbar Item' #. Label of the is_standard (Select) field in DocType 'Report' @@ -13538,13 +13738,13 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/email/doctype/notification/notification.json msgid "Is Standard" -msgstr "" +msgstr "Je Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" -msgstr "" +msgstr "Je Podnošljiv" #. Label of the is_system_generated (Check) field in DocType 'Custom Field' #. Label of the is_system_generated (Check) field in DocType 'Customize Form @@ -13554,27 +13754,27 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" -msgstr "" +msgstr "Je Sistem Generisano" #. Label of the istable (Check) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Table" -msgstr "" +msgstr "Je Tabela" #. Label of the is_table_field (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Is Table Field" -msgstr "" +msgstr "Je Polje Tabele" #. Label of the is_tree (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Is Tree" -msgstr "" +msgstr "Je Stablo" #. Label of the is_unique (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Is Unique" -msgstr "" +msgstr "Je Unikatno" #. Label of the is_virtual (Check) field in DocType 'DocType' #. Label of the is_virtual (Check) field in DocType 'Custom Field' @@ -13583,40 +13783,40 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Virtual" -msgstr "" +msgstr "Je Virtualan" #. Label of the is_standard (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Is standard" -msgstr "" +msgstr "Je Standard" #: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." -msgstr "" +msgstr "Rizično je brisati ovu datoteku: {0}. Kontaktiraj Upravitelja Sistema." #. Label of the item_label (Data) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Label" -msgstr "" +msgstr "Oznaka Artikla" #. Label of the item_type (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Type" -msgstr "" +msgstr "Tip Artikla" #: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" -msgstr "" +msgstr "Artikal se ne može dodati svom podređenom" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "JS" -msgstr "" +msgstr "JS" #. Label of the js_message (HTML) field in DocType 'Custom HTML Block' #: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "JS Message" -msgstr "" +msgstr "JS Poruka" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the json (Code) field in DocType 'Report' @@ -13629,26 +13829,26 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/integrations/doctype/webhook/webhook.json msgid "JSON" -msgstr "" +msgstr "JSON" #. Label of the webhook_json (Code) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "JSON Request Body" -msgstr "" +msgstr "JSON Tijelo Zahtjeva" #: frappe/templates/signup.html:5 msgid "Jane Doe" -msgstr "" +msgstr "Jane Doe" #. Label of the js (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #. Description of the 'Javascript' (Code) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "" +msgstr "JavaScript format: frappe.query_reports['REPORTNAME'] = {}" #. Label of the javascript (Code) field in DocType 'Report' #. Label of the javascript_section (Section Break) field in DocType 'Custom @@ -13660,78 +13860,78 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_script/website_script.json msgid "Javascript" -msgstr "" +msgstr "JavaScript" #: frappe/www/login.html:74 msgid "Javascript is disabled on your browser" -msgstr "" +msgstr "Javascript je onemogućen na vašem pretraživaču" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Jinja" -msgstr "" +msgstr "Jinja" #. Label of the job_id (Data) field in DocType 'Prepared Report' #. Label of the job_id (Data) field in DocType 'RQ Job' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/rq_job/rq_job.json msgid "Job ID" -msgstr "" +msgstr "ID Posla" #. Label of the job_id (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Job Id" -msgstr "" +msgstr "Id Posla" #. Label of the job_info_section (Section Break) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Info" -msgstr "" +msgstr "Informacije Posla" #. Label of the job_name (Data) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Name" -msgstr "" +msgstr "Naziv Posla" #. Label of the job_status_section (Section Break) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Status" -msgstr "" +msgstr "Status Posla" #: frappe/core/doctype/rq_job/rq_job.js:24 msgid "Job Stopped Successfully" -msgstr "" +msgstr "Posao Uspješno Zaustavljen" #: frappe/core/doctype/rq_job/rq_job.py:121 msgid "Job is in {0} state and can't be cancelled" -msgstr "" +msgstr "Posao je u {0} stanju i ne može se otkazati" #: frappe/core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." -msgstr "" +msgstr "Posao se ne izvodi." #: frappe/desk/doctype/event/event.js:55 msgid "Join video conference with {0}" -msgstr "" +msgstr "Pridruži se video konferenciji sa {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" -msgstr "" +msgstr "Skoči na polje" #: frappe/public/js/frappe/utils/number_systems.js:17 #: frappe/public/js/frappe/utils/number_systems.js:31 #: frappe/public/js/frappe/utils/number_systems.js:53 msgctxt "Number system" msgid "K" -msgstr "" +msgstr "K" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "" +msgstr "Oglasna Tabla" #. Name of a DocType #. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' @@ -13739,37 +13939,37 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:511 msgid "Kanban Board" -msgstr "" +msgstr "Oglasna Tabla" #. Name of a DocType #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" -msgstr "" +msgstr "Kolona Oglasne Table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" -msgstr "" +msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" -msgstr "" +msgstr "Postavke Oglasne Table" #: frappe/public/js/frappe/list/base_list.js:206 msgid "Kanban View" -msgstr "" +msgstr "Prikaz Oglasne Table" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json msgid "Keep track of all update feeds" -msgstr "" +msgstr "Pratite sve feedove ažuriranja" #. Description of a DocType #: frappe/core/doctype/communication/communication.json msgid "Keeps track of all communications" -msgstr "" +msgstr "Prati Konverzaciju" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' @@ -13784,24 +13984,24 @@ msgstr "" #: frappe/integrations/doctype/webhook_header/webhook_header.json #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Key" -msgstr "" +msgstr "Ključ" #. Label of a standard help item #. Type: Action #: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Prečice Tastature" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Keycloak" -msgstr "" +msgstr "Keycloak" #: frappe/public/js/frappe/utils/number_systems.js:37 msgctxt "Number system" msgid "Kh" -msgstr "" +msgstr "Kh" #. Label of a Card Break in the Website Workspace #: frappe/website/doctype/help_article/help_article.py:80 @@ -13809,165 +14009,165 @@ msgstr "" #: frappe/website/doctype/help_article/templates/help_article_list.html:11 #: frappe/website/workspace/website/website.json msgid "Knowledge Base" -msgstr "" +msgstr "Baza Znanja" #. Name of a role #: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Contributor" -msgstr "" +msgstr "Saradnik Baze Znanja" #. Name of a role #: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Editor" -msgstr "" +msgstr "Uređivač Baze Znanja" #: frappe/public/js/frappe/utils/number_systems.js:27 #: frappe/public/js/frappe/utils/number_systems.js:49 msgctxt "Number system" msgid "L" -msgstr "" +msgstr "L" #. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" -msgstr "" +msgstr "LDAP autentifikacija" #. Label of the ldap_custom_settings_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" -msgstr "" +msgstr "LDAP Prilagođene Postavke" #. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "" +msgstr "LDAP Polje e-pošte" #. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP First Name Field" -msgstr "" +msgstr "LDAP Polje Imena" #. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group" -msgstr "" +msgstr "LDAP Grupa" #. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Field" -msgstr "" +msgstr "LDAP Polje Grupe" #. Name of a DocType #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group Mapping" -msgstr "" +msgstr "LDAP Mapiranje Grupe" #. Label of the ldap_group_mappings_section (Section Break) field in DocType #. 'LDAP Settings' #. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Mappings" -msgstr "" +msgstr "LDAP Grupna Mapiranja" #. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Member attribute" -msgstr "" +msgstr "LDAP Atribut Člana Grupe" #. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Last Name Field" -msgstr "" +msgstr "LDAP Polje Prezimena" #. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Middle Name Field" -msgstr "" +msgstr "LDAP Polje Srednjeg Imena" #. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Mobile Field" -msgstr "" +msgstr "LDAP Polje Mobilnog" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" -msgstr "" +msgstr "LDAP Nije Instaliran" #. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Phone Field" -msgstr "" +msgstr "LDAP Telefonsko Polje" #. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search String" -msgstr "" +msgstr "LDAP Niz Pretraživanja" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" -msgstr "" +msgstr "LDAP niz za pretraživanje mora biti priložen u '()' i mora sadržavati rezervisano mjesto korisnika {0}, npr. sAMAccountName={0}" #. Label of the ldap_search_and_paths_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search and Paths" -msgstr "" +msgstr "LDAP Pretraga i Putanje" #. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Security" -msgstr "" +msgstr "LDAP Sigurnost" #. Label of the ldap_server_settings_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Settings" -msgstr "" +msgstr "LDAP Postavke Servera" #. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Url" -msgstr "" +msgstr "LDAP URL Servera" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "LDAP Settings" -msgstr "" +msgstr "LDAP Postavke" #. Label of the ldap_user_creation_and_mapping_section (Section Break) field in #. DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP User Creation and Mapping" -msgstr "" +msgstr "LDAP Kreiranje i Mapiranje Korisnika" #. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Username Field" -msgstr "" +msgstr "LDAP Polje Korisničkog Imena" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 msgid "LDAP is not enabled." -msgstr "" +msgstr "LDAP Onemogućen." #. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Groups" -msgstr "" +msgstr "LDAP Put Pretraživanja za Grupe" #. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Users" -msgstr "" +msgstr "LDAP put pretraživanja za Korisnike" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 msgid "LDAP settings incorrect. validation response was: {0}" -msgstr "" +msgstr "LDAP postavke su netačne. odgovor validacije je bio: {0}" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Label of the label (Data) field in DocType 'DocField' @@ -14018,31 +14218,31 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Label" -msgstr "" +msgstr "Oznaka" #. Label of the label_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "" +msgstr "Pomoć za Oznake" #. Label of the label_and_type (Section Break) field in DocType 'Customize Form #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "" +msgstr "Oznaka i Tip" #: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" -msgstr "" +msgstr "Oznaka je obavezna" #. Label of the sb0 (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Landing Page" -msgstr "" +msgstr "Početna Stranica" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" -msgstr "" +msgstr "Pejzaž" #. Name of a DocType #. Label of the language (Link) field in DocType 'System Settings' @@ -14054,100 +14254,100 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" -msgstr "" +msgstr "Jezik" #. Label of the language_code (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Code" -msgstr "" +msgstr "Kod Jezika" #. Label of the language_name (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Name" -msgstr "" +msgstr "Naziv Jezika" #. Label of the last_10_active_users (Code) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Last 10 active users" -msgstr "" +msgstr "Zadnjih 10 aktivnih korisnika" #: frappe/public/js/frappe/ui/filters/filter.js:628 msgid "Last 14 Days" -msgstr "" +msgstr "Posljednjih 14 Dana" #: frappe/public/js/frappe/ui/filters/filter.js:632 msgid "Last 30 Days" -msgstr "" +msgstr "Posljednjih 30 Dana" #: frappe/public/js/frappe/ui/filters/filter.js:652 msgid "Last 6 Months" -msgstr "" +msgstr "Poslednjih 6 Mjeseci" #: frappe/public/js/frappe/ui/filters/filter.js:624 msgid "Last 7 Days" -msgstr "" +msgstr "Posljednjih 7 Dana" #: frappe/public/js/frappe/ui/filters/filter.js:636 msgid "Last 90 Days" -msgstr "" +msgstr "Posljednjih 90 Dana" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "" +msgstr "Zadnja Aktivnost" #. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Last Execution" -msgstr "" +msgstr "Zadnje Izvršavanje" #. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" -msgstr "" +msgstr "Zadnji Otkucaji" #. Label of the last_ip (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "" +msgstr "Zadnji IP" #. Label of the last_known_versions (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Known Versions" -msgstr "" +msgstr "Posljednja Poznate Verzije" #. Label of the last_login (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Login" -msgstr "" +msgstr "Zadnja Prijava" #: frappe/email/doctype/notification/notification.js:32 msgid "Last Modified Date" -msgstr "" +msgstr "Datum Posljednje Izmjene" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 msgid "Last Modified On" -msgstr "" +msgstr "Zadnji Put Izmjenjeno" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "" +msgstr "Prošli Mjesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 msgid "Last Name" -msgstr "" +msgstr "Prezime" #. Label of the last_password_reset_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Password Reset Date" -msgstr "" +msgstr "Poslednji Datum Poništavanja Lozinke" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -14159,42 +14359,42 @@ msgstr "Prošlo Tromjesečje" #. DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Reset Password Key Generated On" -msgstr "" +msgstr "Ključ Poništavanje Lozinke je zadnji put generisan" #. Label of the datetime_last_run (Datetime) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Last Run" -msgstr "" +msgstr "Zadnje Izvođenje" #. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Last Sync On" -msgstr "" +msgstr "Zadnja Sinhronizacija" #. Label of the last_synced_at (Datetime) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Last Synced At" -msgstr "" +msgstr "Zadnja Sinhronizacija" #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "" +msgstr "Zadnja Sinhronizacija" #: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 #: frappe/public/js/frappe/model/model.js:130 msgid "Last Updated By" -msgstr "" +msgstr "Posljednji put Ažurirano od" #: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 #: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" -msgstr "" +msgstr "Zadnji put Ažurirano" #. Label of the last_user (Link) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Last User" -msgstr "" +msgstr "Zadnji Korisnik" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -14206,38 +14406,38 @@ msgstr "Prošli Tjedan" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:656 msgid "Last Year" -msgstr "" +msgstr "Prošle Godine" #: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" -msgstr "" +msgstr "Zadnja Sinhronizacija {0}" #: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" -msgstr "" +msgstr "Poništi Izgled" #: frappe/custom/doctype/customize_form/customize_form.js:186 msgid "Layout will be reset to standard layout, are you sure you want to do this?" -msgstr "" +msgstr "Izgled će biti vraćen na standardni izgled, jeste li sigurni da želite to učiniti?" #: frappe/website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" -msgstr "" +msgstr "Saznaj Više" #. Description of the 'Repeat Till' (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Leave blank to repeat always" -msgstr "" +msgstr "Ostavite prazno da se uvijek ponavlja" #: frappe/core/doctype/communication/mixins.py:207 #: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" -msgstr "" +msgstr "Napusti ovu konverzaciju" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "" +msgstr "Registar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -14246,32 +14446,32 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Left" -msgstr "" +msgstr "Lijevo" #: frappe/printing/page/print_format_builder/print_format_builder.js:483 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 msgctxt "alignment" msgid "Left" -msgstr "" +msgstr "Lijevo" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Bottom" -msgstr "" +msgstr "Lijevo Dno" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Center" -msgstr "" +msgstr "Lijevo Centar" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" -msgstr "" +msgstr "Napustio je ovaj razgovor" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Legal" -msgstr "" +msgstr "Pravno" #. Label of the length (Int) field in DocType 'DocField' #. Label of the length (Int) field in DocType 'Custom Field' @@ -14280,99 +14480,99 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Length" -msgstr "" +msgstr "Dužina" #: frappe/public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" -msgstr "" +msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!" #: frappe/database/schema.py:134 msgid "Length of {0} should be between 1 and 1000" -msgstr "" +msgstr "Dužina {0} bi trebala biti između 1 i 1000" #: frappe/public/js/frappe/widgets/chart_widget.js:729 msgid "Less" -msgstr "" +msgstr "Manje" #: frappe/public/js/frappe/ui/filters/filter.js:24 msgid "Less Than" -msgstr "" +msgstr "Manje Od" #: frappe/public/js/frappe/ui/filters/filter.js:26 msgid "Less Than Or Equal To" -msgstr "" +msgstr "Manje Od ili Jednako" #: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Let us continue with the onboarding" -msgstr "" +msgstr "Nastavimo sa Introdukcijom" #: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 #: frappe/public/js/frappe/widgets/onboarding_widget.js:597 msgid "Let's Get Started" -msgstr "" +msgstr "Hajde da Počnemo" #: frappe/utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" -msgstr "" +msgstr "Hajde da izbjegnemo ponavljane riječi i znakova" #: frappe/desk/page/setup_wizard/setup_wizard.js:474 msgid "Let's set up your account" -msgstr "" +msgstr "Hajde da postavimo vaš račun" #: frappe/public/js/frappe/widgets/onboarding_widget.js:263 #: frappe/public/js/frappe/widgets/onboarding_widget.js:304 #: frappe/public/js/frappe/widgets/onboarding_widget.js:375 #: frappe/public/js/frappe/widgets/onboarding_widget.js:414 msgid "Let's take you back to onboarding" -msgstr "" +msgstr "Hajde da vas vratimo na introdukciju" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Letter" -msgstr "" +msgstr "Pismo" #. Label of the letter_head (Link) field in DocType 'Report' #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 msgid "Letter Head" -msgstr "" +msgstr "Zaglavlje" #. Label of the source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Based On" -msgstr "" +msgstr "Zaglavlje Pisma na Osnovu" #. Label of the letter_head_image_section (Section Break) field in DocType #. 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Image" -msgstr "" +msgstr "Slika Zaglavlja" #. Label of the letter_head_name (Data) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 msgid "Letter Head Name" -msgstr "" +msgstr "Naziv Zaglavlja" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Letter Head Scripts" -msgstr "" +msgstr "Skripte Zaglavlja" #: frappe/printing/doctype/letter_head/letter_head.py:48 msgid "Letter Head cannot be both disabled and default" -msgstr "" +msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard" #. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head in HTML" -msgstr "" +msgstr "Zaglavlje u HTML-u" #. Label of the permlevel (Int) field in DocType 'Custom DocPerm' #. Label of the permlevel (Int) field in DocType 'DocPerm' @@ -14384,90 +14584,94 @@ msgstr "" #: frappe/public/js/frappe/roles_editor.js:66 #: frappe/website/doctype/help_article/help_article.json msgid "Level" -msgstr "" +msgstr "Nivo" #: frappe/core/page/permission_manager/permission_manager.js:467 msgid "Level 0 is for document level permissions, higher levels for field level permissions." -msgstr "" +msgstr "Nivo 0 je za dozvole na nivou dokumenta, viši nivoi za dozvole na nivou polja." #: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 msgid "Library" -msgstr "" +msgstr "Biblioteka" #. Label of the license (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 msgid "License" -msgstr "" +msgstr "Licenca" #. Label of the license_type (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "License Type" -msgstr "" +msgstr "Tip Licence" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Light" -msgstr "" +msgstr "Svijetlo" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Light Blue" -msgstr "" +msgstr "Svijetlo Plava" #. Label of the light_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Light Color" -msgstr "" +msgstr "Svijetla Boja" #: frappe/public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" -msgstr "" +msgstr "Svijetla Tema" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "" +msgstr "Lajk" #. Label of the like_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit" -msgstr "" +msgstr "Ograničenje Lajkova" #. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit per hour" -msgstr "" +msgstr "Ograničenje lajkova po satu" #: frappe/templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" -msgstr "" +msgstr "Lajk na {0}: {1}" #: frappe/desk/like.py:92 msgid "Liked" -msgstr "" +msgstr "Lajk" #: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 #: frappe/public/js/frappe/model/model.js:134 msgid "Liked By" -msgstr "" +msgstr "Lajkad Od" #. Label of the likes (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Likes" -msgstr "" +msgstr "Lajkova" #. Label of the limit (Int) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Limit" -msgstr "" +msgstr "Ograniči" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Granica mora biti cijeli broj koji nije negativan" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "" +msgstr "Linija" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -14495,23 +14699,23 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Link" -msgstr "" +msgstr "Veza" #. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Link Cards" -msgstr "" +msgstr "Kartice Veza" #. Label of the link_count (Int) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Count" -msgstr "" +msgstr "Broj Veza" #. Label of the link_details_section (Section Break) field in DocType #. 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" -msgstr "" +msgstr "Detalji Veze" #. Label of the link_doctype (Link) field in DocType 'Activity Log' #. Label of the link_doctype (Link) field in DocType 'Communication Link' @@ -14520,28 +14724,28 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "" +msgstr "DocType Veza" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "" +msgstr "Veza Tipa Dokumenta" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 #: frappe/workflow/doctype/workflow_action/workflow_action.py:202 msgid "Link Expired" -msgstr "" +msgstr "Veza Istekla" #. Label of the link_field_results_limit (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Link Field Results Limit" -msgstr "" +msgstr "Ograničenje Rezultata Polja Veze" #. Label of the link_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link Fieldname" -msgstr "" +msgstr "Naziv Polja Veze" #. Label of the link_filters (JSON) field in DocType 'DocField' #. Label of the link_filters (JSON) field in DocType 'Custom Field' @@ -14552,7 +14756,7 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" -msgstr "" +msgstr "Filteri Veza" #. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' @@ -14561,14 +14765,14 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "" +msgstr "Naziv Veze" #. Label of the link_title (Read Only) field in DocType 'Communication Link' #. Label of the link_title (Read Only) field in DocType 'Dynamic Link' #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "" +msgstr "Naziv Veze" #. Label of the link_to (Dynamic Link) field in DocType 'Workspace' #. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' @@ -14580,11 +14784,11 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:281 #: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "" +msgstr "Poveži Sa" #: frappe/public/js/frappe/widgets/widget_dialog.js:363 msgid "Link To in Row" -msgstr "" +msgstr "Poveži sa Redom" #. Label of the link_type (Select) field in DocType 'Workspace' #. Label of the link_type (Select) field in DocType 'Workspace Link' @@ -14593,36 +14797,36 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:410 #: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" -msgstr "" +msgstr "Tip Veze" #: frappe/public/js/frappe/widgets/widget_dialog.js:359 msgid "Link Type in Row" -msgstr "" +msgstr "Tip Veze u Redu" #: frappe/website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." -msgstr "" +msgstr "Veza za stranicu O nama je \"/about\"." #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "" +msgstr "Veza koja je početna stranica web stranice. Standardni linkovi (početna, prijava, proizvodi, blog, o, kontakt)" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "" +msgstr "Veza do stranice koju želite otvoriti. Ostavite prazno ako želite da bude nadređena grupe." #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json msgid "Linked" -msgstr "" +msgstr "Povezano" #: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" -msgstr "" +msgstr "Povezano Sa" #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' @@ -14637,7 +14841,7 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" -msgstr "" +msgstr "Veze" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' #. Option for the 'View' (Select) field in DocType 'Form Tour' @@ -14646,25 +14850,25 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" -msgstr "" +msgstr "Lista" #. Label of the list__search_settings_section (Section Break) field in DocType #. 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "List / Search Settings" -msgstr "" +msgstr "Lista / Postavke Pretrage" #. Label of the list_columns (Table) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "List Columns" -msgstr "" +msgstr "Izlistaj Kolone" #. Name of a DocType #: frappe/desk/doctype/list_filter/list_filter.json msgid "List Filter" -msgstr "" +msgstr "Filter Liste" #. Label of the list_settings_section (Section Break) field in DocType 'User' #. Label of the section_break_8 (Section Break) field in DocType 'Customize @@ -14674,72 +14878,73 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/website/doctype/web_form/web_form.json msgid "List Settings" -msgstr "" +msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" -msgstr "" +msgstr "Postavke Liste" #: frappe/public/js/frappe/list/base_list.js:202 msgid "List View" -msgstr "" +msgstr "Prikaz Liste" #. Name of a DocType #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "List View Settings" -msgstr "" +msgstr "Postavke Prikaza Liste" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 msgid "List a document type" -msgstr "" +msgstr "Izlistaj Tip Dokumenta" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "" +msgstr "Izlistaj kao [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" #. Description of the 'Send Notification to' (Small Text) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "List of email addresses, separated by comma or new line." -msgstr "" +msgstr "Lista adresa e-pošte, odvojenih zarezom ili novim redom." #. Description of a DocType #: frappe/core/doctype/patch_log/patch_log.json msgid "List of patches executed" -msgstr "" +msgstr "Lista izvršenih zakrpa" #. Label of the list_setting_message (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "List setting message" -msgstr "" +msgstr "Poruka podešavanja liste" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" -msgstr "" +msgstr "Liste" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Load Balancing" -msgstr "" +msgstr "Balansiranje Opterećenja" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" -msgstr "" +msgstr "Učitaj Još" #: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" msgid "Load More Communications" -msgstr "" +msgstr "Učitaj još Konverzacije" #: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 msgid "Load more" -msgstr "" +msgstr "Učitaj više" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 @@ -14747,21 +14952,21 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" -msgstr "" +msgstr "Učitava se" #: frappe/public/js/frappe/widgets/widget_dialog.js:107 msgid "Loading Filters..." -msgstr "" +msgstr "Učitavanje Filtera u toku..." #: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." -msgstr "" +msgstr "Učitavanje datoteke za uvoz..." #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Loading versions..." -msgstr "" +msgstr "Učitavanje verzija u toku..." #: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 #: frappe/public/js/frappe/form/sidebar/share.js:51 @@ -14772,67 +14977,67 @@ msgstr "" #: frappe/public/js/frappe/widgets/number_card_widget.js:176 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." -msgstr "" +msgstr "Učitavanje u toku..." #. Label of the location (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Location" -msgstr "" +msgstr "Lokacija" #. Label of the log (Code) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json msgid "Log" -msgstr "" +msgstr "Dnevnik" #. Label of the log_api_requests (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Log API Requests" -msgstr "" +msgstr "Zapisuj API Zahtjeve" #. Label of the log_data_section (Section Break) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Log Data" -msgstr "" +msgstr "Podaci dnevnika" #. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" -msgstr "" +msgstr "DocType Registara Sustava" #: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" -msgstr "" +msgstr "Prijavite se na {0}" #. Label of the log_index (Int) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Log Index" -msgstr "" +msgstr "Indeks Zapisnika" #. Name of a DocType #: frappe/core/doctype/log_setting_user/log_setting_user.json msgid "Log Setting User" -msgstr "" +msgstr "Korisnik Postavki Zapisnika" #. Name of a DocType #: frappe/core/doctype/log_settings/log_settings.json #: frappe/public/js/frappe/logtypes.js:20 msgid "Log Settings" -msgstr "" +msgstr "Postavke Zapisnika" #: frappe/www/app.py:23 msgid "Log in to access this page." -msgstr "" +msgstr "Prijavite se da pristupite ovoj stranici." #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "" +msgstr "Odjava" #: frappe/handler.py:118 msgid "Logged Out" -msgstr "" +msgstr "Odjavljen" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #. Label of the security_tab (Tab Break) field in DocType 'System Settings' @@ -14846,90 +15051,90 @@ msgstr "" #: frappe/website/page_renderers/not_permitted_page.py:24 #: frappe/www/login.html:45 msgid "Login" -msgstr "" +msgstr "Prijava" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "" +msgstr "Prijava Nakon" #. Label of the login_before (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "" +msgstr "Prijavia Prije" #: frappe/public/js/frappe/desk.js:256 msgid "Login Failed please try again" -msgstr "" +msgstr "Prijava nije Uspjela, pokušaj ponovo" #: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" -msgstr "" +msgstr "Id Prijave je obavezan" #. Label of the login_methods_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login Methods" -msgstr "" +msgstr "Metode Prijave" #. Label of the misc_section (Section Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" -msgstr "" +msgstr "Stranica Prijave" #: frappe/www/login.py:156 msgid "Login To {0}" -msgstr "" +msgstr "Prijavite se na {0}" #: frappe/twofactor.py:260 msgid "Login Verification Code from {}" -msgstr "" +msgstr "Kod Potvrdu Prijave od {}" #: frappe/templates/emails/new_message.html:4 msgid "Login and view in Browser" -msgstr "" +msgstr "Prijavi se i pregledaj u Pretraživaču" #: frappe/website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" -msgstr "" +msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste" #: frappe/templates/includes/login/login.js:69 msgid "Login link sent to your email" -msgstr "" +msgstr "Veza za prijavu poslana je na vašu e-poštu" #: frappe/auth.py:339 frappe/auth.py:342 msgid "Login not allowed at this time" -msgstr "" +msgstr "Prijava trenutno nije dozvoljena" #. Label of the login_required (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Login required" -msgstr "" +msgstr "Prijava je obavezna" #: frappe/twofactor.py:164 msgid "Login session expired, refresh page to retry" -msgstr "" +msgstr "Sesija prijave je istekla, osvježite stranicu za ponovni pokušaj" #: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" -msgstr "" +msgstr "Prijavi se za komentar" #: frappe/templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" -msgstr "" +msgstr "Prijavi se da započnete novu diskusiju" #: frappe/www/login.html:64 msgid "Login to {0}" -msgstr "" +msgstr "Prijavi se na {0}" #: frappe/templates/includes/login/login.js:319 msgid "Login token required" -msgstr "" +msgstr "Token je obavezan za prijavu" #: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" -msgstr "" +msgstr "Prijavi se putem e-mail veze" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" @@ -14937,64 +15142,69 @@ msgstr "Prijavite se s Frappe Cloudom" #: frappe/www/login.html:49 msgid "Login with LDAP" -msgstr "" +msgstr "Prijavi se putem LDAP-a" #. Label of the login_with_email_link (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" -msgstr "" +msgstr "Prijavi se putem veze e-pošte" #. Label of the login_with_email_link_expiry (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link expiry (in minutes)" -msgstr "" +msgstr "Prijavite se sa istekom veze e-pošte (u minutama)" #: frappe/auth.py:144 msgid "Login with username and password is not allowed." -msgstr "" +msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." #: frappe/www/login.html:100 msgid "Login with {0}" -msgstr "" +msgstr "Prijavi se sa {0}" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "URI Logotipa" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 msgid "Logout" -msgstr "" +msgstr "Odjava" #: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" -msgstr "" +msgstr "Odjava sa Svih Sesija" #. Label of the logout_on_password_reset (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Logout All Sessions on Password Reset" -msgstr "" +msgstr "Odjavi sa Svih Sesija pri Poništavanju Lozinke" #. Label of the logout_all_sessions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Logout From All Devices After Changing Password" -msgstr "" +msgstr "Odjava sa Svih Uređaja nakon Promjene Lozinke" #. Group in User's connections #. Label of a Card Break in the Users Workspace #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Logs" -msgstr "" +msgstr "Zapisi" #. Name of a DocType #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Logs To Clear" -msgstr "" +msgstr "Zapisi za Brisanje" #. Label of the logs_to_clear (Table) field in DocType 'Log Settings' #: frappe/core/doctype/log_settings/log_settings.json msgid "Logs to Clear" -msgstr "" +msgstr "Zapisi za Brisanje" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -15003,80 +15213,80 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Long Text" -msgstr "" +msgstr "Dugi Tekst" #: frappe/public/js/frappe/widgets/onboarding_widget.js:317 msgid "Looks like you didn't change the value" -msgstr "" +msgstr "Izgleda da niste promijenili vrijednost" #: frappe/www/third_party_apps.html:59 msgid "Looks like you haven’t added any third party apps." -msgstr "" +msgstr "Izgleda da niste dodali nijednu aplikaciju trećih strana." #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "Looks like you haven’t received any notifications." -msgstr "" +msgstr "Izgleda da niste primili nijedno obavještenje." #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:217 msgid "Low" -msgstr "" +msgstr "Nisko" #: frappe/public/js/frappe/utils/number_systems.js:13 msgctxt "Number system" msgid "M" -msgstr "" +msgstr "M" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "MIT License" -msgstr "" +msgstr "MIT Licenca" #: frappe/desk/page/setup_wizard/install_fixtures.py:48 msgid "Madam" -msgstr "" +msgstr "Gospođa" #. Label of the main_section (Text Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section" -msgstr "" +msgstr "Glavna Sekcija" #. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section (HTML)" -msgstr "" +msgstr "Glavna Sekcija (HTML)" #. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section (Markdown)" -msgstr "" +msgstr "Glavna Sekcija (Markdown)" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" -msgstr "" +msgstr "Upravitelj Održavanja" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance User" -msgstr "" +msgstr "Korisnik Održavanja" #. Label of the major (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Major" -msgstr "" +msgstr "Velika" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Make \"name\" searchable in Global Search" -msgstr "" +msgstr "Neka \"ime\" bude pretraživo u globalnoj pretrazi" #. Label of the make_attachment_public (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Make Attachment Public (by default)" -msgstr "" +msgstr "Učini Prilog Javnim (standard)" #. Label of the make_attachments_public (Check) field in DocType 'DocType' #. Label of the make_attachments_public (Check) field in DocType 'Customize @@ -15084,38 +15294,38 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" -msgstr "" +msgstr "Učini Priloge Javnim prema Standard Postavkama" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" -msgstr "" +msgstr "Obavezno konfiguriši Društveni Ključ za prijavu prije deaktiviranja kako biste spriječili zaključavanje" #: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" -msgstr "" +msgstr "Koristi duže mustre tastature" #: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" -msgstr "" +msgstr "Napravi {0}" #: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" -msgstr "" +msgstr "Čini stranicu javnom" #: frappe/desk/page/setup_wizard/install_fixtures.py:28 msgid "Male" -msgstr "" +msgstr "Muško" #: frappe/www/me.html:56 msgid "Manage 3rd party apps" -msgstr "" +msgstr "Upravljaj aplikacijama trećih strana" #. Description of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Manage your data" -msgstr "" +msgstr "Upravljaj svojim podacima" #. Label of the reqd (Check) field in DocType 'DocField' #. Label of the mandatory (Check) field in DocType 'Report Filter' @@ -15128,7 +15338,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Mandatory" -msgstr "" +msgstr "Obavezno" #. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' #. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form @@ -15138,124 +15348,122 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Mandatory Depends On" -msgstr "" +msgstr "Obavezno Zavisi od" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "" +msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" -msgstr "" +msgstr "Nedostaju obavezne informacije:" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" -msgstr "" +msgstr "Obavezno polje: postavi ulogu za" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" -msgstr "" +msgstr "Obavezno polje: {0}" #: frappe/public/js/frappe/form/save.js:120 msgid "Mandatory fields required in table {0}, Row {1}" -msgstr "" +msgstr "Obavezna polja u tabeli {0}, red {1}" #: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" -msgstr "" +msgstr "Obavezna polja nedostaju u {0}" #: frappe/public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" msgid "Mandatory fields required:" -msgstr "" +msgstr "Obavezna polja nedostaju:" #: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" -msgstr "" +msgstr "Obavezno:" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Map" -msgstr "" +msgstr "Karta" #: frappe/public/js/frappe/data_import/import_preview.js:194 #: frappe/public/js/frappe/data_import/import_preview.js:306 msgid "Map Columns" -msgstr "" +msgstr "Kolone Karte" #: frappe/public/js/frappe/list/base_list.js:211 msgid "Map View" -msgstr "" +msgstr "Prikaz Karte" #: frappe/public/js/frappe/data_import/import_preview.js:294 msgid "Map columns from {0} to fields in {1}" -msgstr "" +msgstr "Mapiraj kolone od {0} na polja u {1}" #. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Map route parameters into form variables. Example /project/<name>" -msgstr "" +msgstr "Mapirajte parametre rute u varijable obrasca. Primjer /project/<name>" #: frappe/core/doctype/data_import/importer.py:924 msgid "Mapping column {0} to field {1}" -msgstr "" +msgstr "Mapiranje kolone {0} u polje {1}" #. Label of the margin_bottom (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" -msgstr "" +msgstr "Donja Margina" #. Label of the margin_left (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Left" -msgstr "" +msgstr "Lijeva Margina" #. Label of the margin_right (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Right" -msgstr "" +msgstr "Desna Margina" #. Label of the margin_top (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" -msgstr "" +msgstr "Gornja Margina" #. Label of the mariadb_variables_section (Section Break) field in DocType #. 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "MariaDB Variables" -msgstr "" +msgstr "MariaDB Varijable" #: frappe/public/js/frappe/ui/notifications/notifications.js:45 msgid "Mark all as read" -msgstr "" +msgstr "Označi sve kao pročitano" #: frappe/core/doctype/communication/communication.js:78 #: frappe/core/doctype/communication/communication_list.js:19 msgid "Mark as Read" -msgstr "" +msgstr "Označi kao Pročitano" #: frappe/core/doctype/communication/communication.js:95 msgid "Mark as Spam" -msgstr "" +msgstr "Označi kao Neželjenu Poštu" #: frappe/core/doctype/communication/communication.js:78 #: frappe/core/doctype/communication/communication_list.js:22 msgid "Mark as Unread" -msgstr "" +msgstr "Označi kao Nepročitano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" -msgstr "" +msgstr "Markdown" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -15266,138 +15474,138 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Markdown Editor" -msgstr "" +msgstr "Markdown Uređivač" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Marked As Spam" -msgstr "" +msgstr "Označeno kao Neželjena Pošta" #. Name of a role #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json msgid "Marketing Manager" -msgstr "" +msgstr "Upravitelj Marketinga" #: frappe/desk/page/setup_wizard/install_fixtures.py:50 msgid "Master" -msgstr "" +msgstr "Postavke" #. Description of the 'Limit' (Int) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Max 500 records at a time" -msgstr "" +msgstr "Maksimalno 500 zapisa odjednom" #. Label of the max_attachments (Int) field in DocType 'DocType' #. Label of the max_attachments (Int) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Max Attachments" -msgstr "" +msgstr "Maksimalni broj Priloga" #. Label of the max_file_size (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max File Size (MB)" -msgstr "" +msgstr "Maksimalna Veličina Datoteke (MB)" #. Label of the max_height (Data) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Max Height" -msgstr "" +msgstr "Maksimalna Visina" #. Label of the max_length (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Length" -msgstr "" +msgstr "Maksimalna Dužina" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "" +msgstr "Maksimalan broj redaka izvješća" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Value" -msgstr "" +msgstr "Maksimalna Vrijednost" #. Label of the max_attachment_size (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Max attachment size" -msgstr "" +msgstr "Maksimalna Veličina Priloga" #. Label of the max_auto_email_report_per_user (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max auto email report per user" -msgstr "" +msgstr "Maksimalni broj automatskih izvještaja putem e-pošte po korisniku" #: frappe/core/doctype/doctype/doctype.py:1342 msgid "Max width for type Currency is 100px in row {0}" -msgstr "" +msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Maximum" -msgstr "" +msgstr "Maksimum" #: frappe/core/doctype/file/file.py:320 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." -msgstr "" +msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}." #. Label of the total_fields (Select) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Maximum Number of Fields" -msgstr "" +msgstr "Maksimalni Broj Polja" #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." -msgstr "" +msgstr "Maksimalno ograničenje priloga od {0} je dostignuto." #: frappe/model/rename_doc.py:690 msgid "Maximum {0} rows allowed" -msgstr "" +msgstr "Maksimalno je dozvoljeno {0} redova" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" -msgstr "" +msgstr "Ja" #: frappe/core/page/permission_manager/permission_manager_help.html:14 msgid "Meaning of Submit, Cancel, Amend" -msgstr "" +msgstr "Značenje Podnesi, Otkaži, Izmjeni" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" -msgstr "" +msgstr "Srednje" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json msgid "Meeting" -msgstr "" +msgstr "Sastanak" #: frappe/email/doctype/notification/notification.js:196 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" -msgstr "" +msgstr "Ispunjava uslove?" #. Group in Email Group's connections #: frappe/email/doctype/email_group/email_group.json msgid "Members" -msgstr "" +msgstr "Članovi" #. Label of the cache_memory_usage (Data) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Memory Usage" -msgstr "" +msgstr "Upotreba Memorije" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" @@ -15406,27 +15614,27 @@ msgstr "Upotreba Memorije u MB" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Mention" -msgstr "" +msgstr "Spominjanje" #. Label of the enable_email_mention (Check) field in DocType 'Notification #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Mentions" -msgstr "" +msgstr "Spominjanja" #: frappe/public/js/frappe/ui/page.html:41 #: frappe/public/js/frappe/ui/page.js:162 msgid "Menu" -msgstr "" +msgstr "Meni" #: frappe/public/js/frappe/form/toolbar.js:242 #: frappe/public/js/frappe/model/model.js:705 msgid "Merge with existing" -msgstr "" +msgstr "Spoji sa postojećim" #: frappe/utils/nestedset.py:307 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" -msgstr "" +msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podređeni" #. Label of the message (Text) field in DocType 'Auto Repeat' #. Label of the content (Text Editor) field in DocType 'Activity Log' @@ -15438,7 +15646,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15451,100 +15658,89 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" -msgstr "" +msgstr "Poruka" #: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" -msgstr "" - -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" +msgstr "Poruka" #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" -msgstr "" +msgstr "Primjeri Poruka" #. Label of the message_id (Small Text) field in DocType 'Communication' #. Label of the message_id (Small Text) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Message ID" -msgstr "" +msgstr "ID Poruke" #. Label of the message_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "" +msgstr "Parametar Poruke" #: frappe/templates/includes/contact.js:36 msgid "Message Sent" -msgstr "" +msgstr "Poruka Poslata" #. Label of the message_type (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Type" -msgstr "" +msgstr "Tip Poruke" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" -msgstr "" +msgstr "Poruka je isječena" #: frappe/email/doctype/email_account/email_account.py:344 msgid "Message from server: {0}" -msgstr "" +msgstr "Poruka sa servera: {0}" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Message not setup" -msgstr "" +msgstr "Poruka nije postavljena" #. Description of the 'Success message' (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Message to be displayed on successful completion" -msgstr "" +msgstr "Poruka će se prikazati po uspješnom završetku" #. Label of the message_id (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Message-id" -msgstr "" +msgstr "Poruka-id" #. Label of the messages (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" -msgstr "" +msgstr "Poruke" #. Label of the meta_section (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta" -msgstr "" +msgstr "Meta" #. Label of the meta_description (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" -msgstr "" +msgstr "Meta Opis" #. Label of the meta_image (Attach Image) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" -msgstr "" +msgstr "Meta Slika" #. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' @@ -15553,32 +15749,38 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "" +msgstr "Meta Oznake" #. Label of the meta_title (Data) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" -msgstr "" +msgstr "Meta Naziv" #. Label of the meta_description (Small Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta description" -msgstr "" +msgstr "Meta Opis" #. Label of the meta_image (Attach Image) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta image" -msgstr "" +msgstr "Meta Slika" #. Label of the meta_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta title" -msgstr "" +msgstr "Meta Naziv" #: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" -msgstr "" +msgstr "Meta naslov za SEO" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Metapodaci" #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' @@ -15597,72 +15799,77 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/notification/notification.json msgid "Method" -msgstr "" +msgstr "Metoda" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" -msgstr "" +msgstr "Metoda nije Dozvoljena" #: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" -msgstr "" +msgstr "Metoda je potrebna za kreiranje numeričke kartice" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" -msgstr "" +msgstr "Sredina Centar" #. Label of the middle_name (Data) field in DocType 'Contact' #. Label of the middle_name (Data) field in DocType 'User' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json msgid "Middle Name" -msgstr "" +msgstr "Srednje Ime" #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json #: frappe/automation/workspace/tools/tools.json msgid "Milestone" -msgstr "" +msgstr "Prekretnica" #. Label of the milestone_tracker (Link) field in DocType 'Milestone' #. Name of a DocType #: frappe/automation/doctype/milestone/milestone.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "" +msgstr "Praćenje Prekretnice" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Minimum" -msgstr "" +msgstr "Minimum" #. Label of the minimum_password_score (Select) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Minimum Password Score" -msgstr "" +msgstr "Minimalna Vrijdnost Lozinke" #. Label of the minor (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Minor" -msgstr "" +msgstr "Manja" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minuta" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" -msgstr "" +msgstr "Minuta Poslije" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Before" -msgstr "" +msgstr "Minuta Prije" #. Label of the minutes_offset (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Offset" -msgstr "" +msgstr "Odstup Minuta" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 @@ -15670,46 +15877,46 @@ msgstr "" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Misconfigured" -msgstr "" +msgstr "Pogrešno konfigurisano" #: frappe/desk/page/setup_wizard/install_fixtures.py:49 msgid "Miss" -msgstr "" +msgstr "Gospođica" #: frappe/desk/form/meta.py:194 msgid "Missing DocType" -msgstr "" +msgstr "Nedostaje DocType" #: frappe/core/doctype/doctype/doctype.py:1526 msgid "Missing Field" -msgstr "" +msgstr "Nedostaje Polje" #: frappe/public/js/frappe/form/save.js:131 msgid "Missing Fields" -msgstr "" +msgstr "Nedostajuća Polja" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" -msgstr "" +msgstr "Obavezni Nedostajući Filteri" #: frappe/desk/form/assign_to.py:110 msgid "Missing Permission" -msgstr "" +msgstr "Nedostaje Dozvola" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" -msgstr "" +msgstr "Nedostaje Vrijednost" #: frappe/public/js/frappe/ui/field_group.js:124 #: frappe/public/js/frappe/widgets/widget_dialog.js:374 #: frappe/public/js/workflow_builder/store.js:97 #: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" -msgstr "" +msgstr "Nedostajuće vrijednosti su obavezne" #: frappe/www/login.py:107 msgid "Mobile" -msgstr "" +msgstr "Mobilni Broj" #. Label of the mobile_no (Data) field in DocType 'Contact' #. Label of the mobile_no (Data) field in DocType 'User' @@ -15718,16 +15925,16 @@ msgstr "" #: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 #: frappe/tests/test_translate.py:94 msgid "Mobile No" -msgstr "" +msgstr "Mobilni Broj" #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" -msgstr "" +msgstr "Modalni Okidač" #: frappe/core/report/transaction_log_report/transaction_log_report.py:106 msgid "Modified By" -msgstr "" +msgstr "Izmijenio" #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' @@ -15762,12 +15969,12 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Module" -msgstr "" +msgstr "Modul" #. Label of the module (Link) field in DocType 'Server Script' #. Label of the module (Link) field in DocType 'Client Script' @@ -15780,7 +15987,7 @@ msgstr "" #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" -msgstr "" +msgstr "Modul (za izvoz)" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -15788,26 +15995,26 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/workspace/build/build.json msgid "Module Def" -msgstr "" +msgstr "Definicija Modula" #. Label of the module_html (HTML) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module HTML" -msgstr "" +msgstr "Modul HTML" #. Label of the module_name (Data) field in DocType 'Module Def' #. Label of the module_name (Data) field in DocType 'Desktop Icon' #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Module Name" -msgstr "" +msgstr "Naziv Modula" #. Label of a Link in the Build Workspace #. Name of a DocType #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" -msgstr "" +msgstr "Introdukcija Modula" #. Name of a DocType #. Label of the module_profile (Link) field in DocType 'User' @@ -15815,36 +16022,36 @@ msgstr "" #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" -msgstr "" +msgstr "Profil Modula" #. Label of the module_profile_name (Data) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module Profile Name" -msgstr "" +msgstr "Naziv Profila Modula" #: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" -msgstr "" +msgstr "Poništavanje introdukcijskog progresa modula" #: frappe/custom/doctype/customize_form/customize_form.js:250 msgid "Module to Export" -msgstr "" +msgstr "Modul za Izvoz" #: frappe/modules/utils.py:273 msgid "Module {} not found" -msgstr "" +msgstr "Modul {} nije pronađen" #. Group in Package's connections #. Label of a Card Break in the Build Workspace #: frappe/core/doctype/package/package.json #: frappe/core/workspace/build/build.json msgid "Modules" -msgstr "" +msgstr "Moduli" #. Label of the modules_html (HTML) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "" +msgstr "Moduli HTML" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -15860,21 +16067,21 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Monday" -msgstr "" +msgstr "Ponedjeljak" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Monitor logs for errors, background jobs, communications, and user activity" -msgstr "" +msgstr "Pratite zapisnike radi pogrešaka, pozadinskih poslova, komunikacije i aktivnosti korisnika" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "" +msgstr "Monospace" #: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" -msgstr "" +msgstr "Mjesec" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -15894,14 +16101,14 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:400 #: frappe/website/report/website_analytics/website_analytics.js:25 msgid "Monthly" -msgstr "" +msgstr "Mjesečno" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Monthly Long" -msgstr "" +msgstr "Cijeli Mjesec" #: frappe/public/js/frappe/form/link_selector.js:39 #: frappe/public/js/frappe/form/multi_select_dialog.js:45 @@ -15912,13 +16119,13 @@ msgstr "" #: frappe/templates/includes/list/list.html:25 #: frappe/templates/includes/search_template.html:13 msgid "More" -msgstr "" +msgstr "Više" #. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission #. Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "More Info" -msgstr "" +msgstr "Više Informacija" #. Label of the more_info (Section Break) field in DocType 'Contact' #. Label of the additional_info (Section Break) field in DocType 'Activity Log' @@ -15930,166 +16137,166 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json msgid "More Information" -msgstr "" +msgstr "Više Informacija" #: frappe/website/doctype/help_article/templates/help_article.html:19 #: frappe/website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" -msgstr "" +msgstr "Više Članaka o {0}" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "More content for the bottom of the page." -msgstr "" +msgstr "Više sadržaja na dnu stranice." #: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" -msgstr "" +msgstr "Najviše Korišten" #: frappe/utils/password.py:76 msgid "Most probably your password is too long." -msgstr "" +msgstr "Najvjerovatnije je vaša lozinka predugačka." #: frappe/core/doctype/communication/communication.js:86 #: frappe/core/doctype/communication/communication.js:194 #: frappe/core/doctype/communication/communication.js:212 #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Move" -msgstr "" +msgstr "Premjesti" #: frappe/public/js/frappe/form/grid_row.js:193 msgid "Move To" -msgstr "" +msgstr "Premjesti u" #: frappe/core/doctype/communication/communication.js:104 msgid "Move To Trash" -msgstr "" +msgstr "Premjesti u Smeće" #: frappe/public/js/form_builder/components/Section.vue:295 msgid "Move current and all subsequent sections to a new tab" -msgstr "" +msgstr "Premjestite trenutni i sve naredne sekcije na novu karticu" #: frappe/public/js/frappe/form/form.js:177 msgid "Move cursor to above row" -msgstr "" +msgstr "Pomjerite kursor na gornji red" #: frappe/public/js/frappe/form/form.js:181 msgid "Move cursor to below row" -msgstr "" +msgstr "Pomjerite kursor ispod reda" #: frappe/public/js/frappe/form/form.js:185 msgid "Move cursor to next column" -msgstr "" +msgstr "Pomerite kursor na sledeću kolonu" #: frappe/public/js/frappe/form/form.js:189 msgid "Move cursor to previous column" -msgstr "" +msgstr "Pomjerite kursor na prethodnu kolonu" #: frappe/public/js/form_builder/components/Section.vue:294 msgid "Move sections to new tab" -msgstr "" +msgstr "Premjesti sekciju na novu karticu" #: frappe/public/js/form_builder/components/Field.vue:237 msgid "Move the current field and the following fields to a new column" -msgstr "" +msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu" #: frappe/public/js/frappe/form/grid_row.js:168 msgid "Move to Row Number" -msgstr "" +msgstr "Pomjeri na Red Broj" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Move to next step when clicked inside highlighted area." -msgstr "" +msgstr "Prijeđi na sljedeći korak kada kliknete unutar označenog područja." #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" -msgstr "" +msgstr "Mozilla ne podržava :has() tako da ovdje možete proslijediti nadređeni birač kao zaobilazno rješenje" #: frappe/desk/page/setup_wizard/install_fixtures.py:43 msgid "Mr" -msgstr "" +msgstr "Gosp" #: frappe/desk/page/setup_wizard/install_fixtures.py:47 msgid "Mrs" -msgstr "" +msgstr "Gđa." #: frappe/desk/page/setup_wizard/install_fixtures.py:44 msgid "Ms" -msgstr "" +msgstr "Gđa" #: frappe/utils/nestedset.py:331 msgid "Multiple root nodes not allowed." -msgstr "" +msgstr "Više početnih članova nije dozvoljeno." #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Must be a publicly accessible Google Sheets URL" -msgstr "" +msgstr "Mora biti javno dostupan URL Google Sheet" #. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" -msgstr "" +msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za korisničko/prijavno ime. tj (&(objectclass=user)(uid={0}))" #. Description of the 'Image Field' (Data) field in DocType 'DocType' #. Description of the 'Image Field' (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Must be of type \"Attach Image\"" -msgstr "" +msgstr "Mora biti tipa \"Priloži Sliku\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." -msgstr "" +msgstr "Mora imati dozvolu za pristup ovom izvještaju." #: frappe/core/doctype/report/report.py:151 msgid "Must specify a Query to run" -msgstr "" +msgstr "Mora se navesti Upit za pokretanje" #. Label of the mute_sounds (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Mute Sounds" -msgstr "" +msgstr "Utišaj Zvuk" #: frappe/desk/page/setup_wizard/install_fixtures.py:45 msgid "Mx" -msgstr "" +msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" -msgstr "" +msgstr "Moj Račun" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 msgid "My Device" -msgstr "" +msgstr "Moj Uređaj" #: frappe/public/js/frappe/ui/apps_switcher.js:71 msgid "My Workspaces" -msgstr "" +msgstr "Moj Radni Prostor" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "MyISAM" -msgstr "" +msgstr "MyISAM" #: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." -msgstr "" +msgstr "NAPOMENA: Ako dodate stanja ili tranzicije u tablicu, to će se odraziti u Alatu Razvoja Radnog Toka, ali ćete ih morati ručno pozicionirati. Takođe Alat Razvoja Radnog Toka je trenutno u BETA verziji." #. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" -msgstr "" +msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad sa novijim postavkama" #. Label of the fieldname (Data) field in DocType 'DocField' #. Label of the fieldname (Data) field in DocType 'Customize Form Field' @@ -16106,35 +16313,35 @@ msgstr "" #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" -msgstr "" +msgstr "Naziv" #: frappe/integrations/doctype/webhook/webhook.js:29 msgid "Name (Doc Name)" -msgstr "" +msgstr "Naziv (Naziv dokumenta)" #: frappe/desk/utils.py:22 msgid "Name already taken, please set a new name" -msgstr "" +msgstr "Naziv je već zauzet, postavite novi naziv" #: frappe/model/naming.py:504 msgid "Name cannot contain special characters like {0}" -msgstr "" +msgstr "Naziv ne može sadržavati posebne znakove poput {0}" #: frappe/custom/doctype/custom_field/custom_field.js:91 msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" -msgstr "" +msgstr "Naziv tipa dokumenta (DocType) sa kojim želite da se ovo polje poveže. npr. Kupac" #: frappe/printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" -msgstr "" +msgstr "Naziv novog formata za ispisivanje" #: frappe/model/naming.py:499 msgid "Name of {0} cannot be {1}" -msgstr "" +msgstr "Naziv {0} ne može biti {1}" #: frappe/utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." -msgstr "" +msgstr "Imena i prezimena sama po sebi je lako pogoditi." #. Label of the sb1 (Tab Break) field in DocType 'DocType' #. Label of the naming_section (Section Break) field in DocType 'Document @@ -16145,31 +16352,33 @@ msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "" +msgstr "Imenovanje" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" -msgstr "" +msgstr "Opcije imenovanja:\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.
" #. Label of the naming_rule (Select) field in DocType 'DocType' #. Label of the naming_rule (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" -msgstr "" +msgstr "Pravilo Imenovanja" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "" +msgstr "Imenovanje Serije" #: frappe/model/naming.py:260 msgid "Naming Series mandatory" -msgstr "" +msgstr "Imenovanje Serije Obavezno" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -16177,69 +16386,73 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "" +msgstr "Navigacijska Traka" #. Name of a DocType #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Navbar Item" -msgstr "" +msgstr "Stavka Navigacijske Trake" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/core/workspace/build/build.json msgid "Navbar Settings" -msgstr "" +msgstr "Postavke Navigacijske Trake" #. Label of the navbar_template (Link) field in DocType 'Website Settings' #. Label of the navbar_template_section (Section Break) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template" -msgstr "" +msgstr "Šablon Navigacijske Trake" #. Label of the navbar_template_values (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template Values" -msgstr "" +msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" -msgstr "" +msgstr "Kreći se po listi prema dolje" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" -msgstr "" +msgstr "Kreći se po listi prema gore" #: frappe/public/js/frappe/ui/page.js:175 msgid "Navigate to main content" -msgstr "" +msgstr "Idi na glavni sadržaj" #. Label of the navigation_settings_section (Section Break) field in DocType #. 'User' #: frappe/core/doctype/user/user.json msgid "Navigation Settings" -msgstr "" +msgstr "Postavke Navigacije" #: frappe/desk/doctype/workspace/workspace.py:319 msgid "Need Workspace Manager role to edit private workspace of other users" -msgstr "" +msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" -msgstr "" +msgstr "Negativna Vrijednost" + +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Ugniježđeni filtri moraju biti navedeni kao popis ili torka." #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." -msgstr "" +msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." #. Name of a DocType #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Network Printer Settings" -msgstr "" +msgstr "Postavke Mrežnog Pisača" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' @@ -16254,175 +16467,192 @@ msgstr "" #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 msgid "New" -msgstr "" +msgstr "Novi" #: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" -msgstr "" +msgstr "Nova Aktivnost" #: frappe/public/js/frappe/form/templates/address_list.html:3 #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 #: frappe/public/js/frappe/utils/address_and_contact.js:71 msgid "New Address" -msgstr "" +msgstr "Nova Adresa" #: frappe/public/js/frappe/widgets/widget_dialog.js:58 msgid "New Chart" -msgstr "" +msgstr "Novi Grafikon" #: frappe/templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" -msgstr "" +msgstr "Novi Komentar {0}: {1}" #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" -msgstr "" +msgstr "Novi Kontakt" #: frappe/public/js/frappe/widgets/widget_dialog.js:70 msgid "New Custom Block" -msgstr "" +msgstr "Novi Prilagođeni Blok" #: frappe/printing/page/print/print.js:295 #: frappe/printing/page/print/print.js:342 msgid "New Custom Print Format" -msgstr "" +msgstr "Novi Prilagođeni Format Ispisa" #. Label of the new_document_form (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "New Document Form" -msgstr "" +msgstr "Nova Forma Dokumenta" #: frappe/desk/doctype/notification_log/notification_log.py:154 msgid "New Document Shared {0}" -msgstr "" +msgstr "Novi Dokument Dijeljen {0}" #: frappe/public/js/frappe/form/footer/form_timeline.js:27 #: frappe/public/js/frappe/views/communication.js:23 msgid "New Email" -msgstr "" +msgstr "Nova e-pošta" #: frappe/public/js/frappe/list/list_view_select.js:98 #: frappe/public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" -msgstr "" +msgstr "Novi Račun e-pošte" #: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" -msgstr "" +msgstr "Novi Događaj" #: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" -msgstr "" +msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" -msgstr "" +msgstr "Nova Oglasna Tabla" #: frappe/public/js/frappe/widgets/widget_dialog.js:62 msgid "New Links" -msgstr "" +msgstr "Nove Veze" #: frappe/desk/doctype/notification_log/notification_log.py:152 msgid "New Mention on {0}" -msgstr "" +msgstr "Novo Spominjanje {0}" #: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" -msgstr "" +msgstr "Nova Pruka sa Kontaktne Web Stranice" #. Label of the new_name (Read Only) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json #: frappe/public/js/frappe/form/toolbar.js:218 #: frappe/public/js/frappe/model/model.js:713 msgid "New Name" -msgstr "" - -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" +msgstr "Novo Ime" #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" -msgstr "" +msgstr "Novo Obavještenje" #: frappe/public/js/frappe/widgets/widget_dialog.js:64 msgid "New Number Card" -msgstr "" +msgstr "Nova Numerička Kartica" #: frappe/public/js/frappe/widgets/widget_dialog.js:66 msgid "New Onboarding" -msgstr "" +msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" -msgstr "" +msgstr "Nova Lozinka" #: frappe/printing/page/print/print.js:267 #: frappe/printing/page/print/print.js:321 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" -msgstr "" +msgstr "Novo Ime Formata Ispisa" #: frappe/public/js/frappe/widgets/widget_dialog.js:68 msgid "New Quick List" -msgstr "" +msgstr "Nova Brza Lista" #: frappe/public/js/frappe/views/reports/report_view.js:1384 msgid "New Report name" -msgstr "" +msgstr "Novi Naziv Izvještaja" #. Label of the new_role (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "New Role" -msgstr "" +msgstr "Nova Uloga" #: frappe/public/js/frappe/widgets/widget_dialog.js:60 msgid "New Shortcut" -msgstr "" +msgstr "Nova Prečica" #. Label of the new_users (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "New Users (Last 30 days)" -msgstr "" +msgstr "Novi Korisnici (posljednjih 30 dana)" #: frappe/core/doctype/version/version_view.html:14 #: frappe/core/doctype/version/version_view.html:76 msgid "New Value" -msgstr "" +msgstr "Nova Vrijednost" #: frappe/workflow/page/workflow_builder/workflow_builder.js:61 msgid "New Workflow Name" -msgstr "" +msgstr "Novi Naziv Radnog Toka" #: frappe/public/js/frappe/views/workspace/workspace.js:390 msgid "New Workspace" -msgstr "" +msgstr "Novi Radni Prostor" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "Popis dopuštenih URL-ova javnih klijenata odvojen je novim retkom (npr. https://frappe.io) ili * za prihvaćanje svih.\n" +"
\n" +"Javni klijenti su prema zadanim postavkama ograničeni." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Popis vrijednosti opsega odvojen novim retkom." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Popis nizova koji predstavljaju načine kontaktiranja osoba odgovornih za ovog klijenta, obično adrese e-pošte, odvojen novim retcima." + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" -msgstr "" +msgstr "Nova lozinka ne može biti ista kao stara lozinka" #: frappe/utils/change_log.py:389 msgid "New updates are available" -msgstr "" +msgstr "Dostupna su nova ažuriranja" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." -msgstr "" +msgstr "Nove korisnike će morati manualno registrovati sistemski menadžeri." #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "New value to be set" -msgstr "" +msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/form/quick_entry.js:179 #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16430,75 +16660,40 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" -msgstr "" +msgstr "Novi {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" -msgstr "" +msgstr "Novi {0} Kreiran" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" -msgstr "" +msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" -msgstr "" +msgstr "Novi {0} {1} kreiran" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 msgid "New {0}: {1}" -msgstr "" +msgstr "Novi {0}: {1}" #: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" -msgstr "" +msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." -msgstr "" - -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" +msgstr "Novokreirani korisnik {0} nema omogućene uloge." #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" +msgstr "Upravitelj Biltena" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 @@ -16508,100 +16703,100 @@ msgstr "" #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 #: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" -msgstr "" +msgstr "Sljedeća" #: frappe/public/js/frappe/ui/slides.js:359 msgctxt "Go to next slide" msgid "Next" -msgstr "" +msgstr "Sljedeći" #: frappe/public/js/frappe/ui/filters/filter.js:684 msgid "Next 14 Days" -msgstr "" +msgstr "Sljedećih 14 Dana" #: frappe/public/js/frappe/ui/filters/filter.js:688 msgid "Next 30 Days" -msgstr "" +msgstr "Sljedećih 30 Dana" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" -msgstr "" +msgstr "Sljedećih 6 Mjeseci" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" -msgstr "" +msgstr "Sljedećih 7 Dana" #. Label of the next_action_email_template (Link) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Next Action Email Template" -msgstr "" +msgstr "Šablon Sljedeće Akcije e-pošte" #. Label of the next_actions_html (HTML) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "Next Actions HTML" -msgstr "" +msgstr "HTML Sljedeće Akcije" #. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Next Execution" -msgstr "" +msgstr "Sljedeće Izvršenje" #. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Form Tour" -msgstr "" +msgstr "Sljedeća Intrudukcija Forme" #: frappe/public/js/frappe/ui/filters/filter.js:696 msgid "Next Month" -msgstr "" +msgstr "Sljedeći Mjesec" #: frappe/public/js/frappe/ui/filters/filter.js:700 msgid "Next Quarter" -msgstr "" +msgstr "Sljedeći Kvartal" #. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Next Schedule Date" -msgstr "" +msgstr "Datum Sljedećeg Rasporeda" #: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 msgid "Next Scheduled Date" -msgstr "" +msgstr "Sljedeći Zakazani Datum" #. Label of the next_state (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Next State" -msgstr "" +msgstr "Sljedeće Stanje" #. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Step Condition" -msgstr "" +msgstr "Uslov Sljedećeg Koraka" #. Label of the next_sync_token (Password) field in DocType 'Google Calendar' #. Label of the next_sync_token (Password) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Next Sync Token" -msgstr "" +msgstr "Sljedeći Token Sinhronizacije" #: frappe/public/js/frappe/ui/filters/filter.js:692 msgid "Next Week" -msgstr "" +msgstr "Sljedeći Tjedan" #: frappe/public/js/frappe/ui/filters/filter.js:708 msgid "Next Year" -msgstr "" +msgstr "Sljedeće Godine" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Next actions" -msgstr "" +msgstr "Sljedeće Akcije" #. Label of the next_on_click (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next on Click" -msgstr "" +msgstr "Dalje na klik" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -16616,24 +16811,24 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "" +msgstr "Ne" #: frappe/public/js/frappe/ui/filters/filter.js:546 msgctxt "Checkbox is not checked" msgid "No" -msgstr "" +msgstr "Ne" #: frappe/public/js/frappe/ui/messages.js:37 msgctxt "Dismiss confirmation dialog" msgid "No" -msgstr "" +msgstr "Ne" #: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" -msgstr "" +msgstr "Nema Aktivnih Sesija" #. Label of the no_copy (Check) field in DocType 'DocField' #. Label of the no_copy (Check) field in DocType 'Custom Field' @@ -16642,53 +16837,53 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "No Copy" -msgstr "" +msgstr "Ne Kopiraj" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 #: frappe/public/js/frappe/utils/datatable.js:10 #: frappe/public/js/frappe/widgets/chart_widget.js:57 msgid "No Data" -msgstr "" +msgstr "Nema Podataka" #: frappe/public/js/frappe/widgets/quick_list_widget.js:134 msgid "No Data..." -msgstr "" +msgstr "Nema Podataka..." #: frappe/public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" -msgstr "" +msgstr "Nema Računa e-pošte" #: frappe/public/js/frappe/views/inbox/inbox_view.js:196 msgid "No Email Accounts Assigned" -msgstr "" +msgstr "Nema dodeljenih naloga e-pošte" #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" -msgstr "" +msgstr "Nema e-pošte" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 msgid "No Entry for the User {0} found within LDAP!" -msgstr "" +msgstr "Nema Unosa pronađenog za korisnika {0} unutar LDAP-a!" #: frappe/public/js/frappe/widgets/chart_widget.js:407 msgid "No Filters Set" -msgstr "" +msgstr "Nema Postavljenih Filtera" #: frappe/integrations/doctype/google_calendar/google_calendar.py:372 msgid "No Google Calendar Event to sync." -msgstr "" +msgstr "Nema Događaja Google Kalendara za sinhronizaciju." #: frappe/public/js/frappe/ui/capture.js:262 msgid "No Images" -msgstr "" +msgstr "Nema Slika" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 msgid "No LDAP User found for email: {0}" -msgstr "" +msgstr "Nije pronađen LDAP Korisnik za e-poštu: {0}" #: frappe/public/js/form_builder/components/EditableInput.vue:11 #: frappe/public/js/form_builder/components/EditableInput.vue:14 @@ -16699,7 +16894,7 @@ msgstr "" #: frappe/public/js/workflow_builder/components/StateNode.vue:47 #: frappe/public/js/workflow_builder/store.js:51 msgid "No Label" -msgstr "" +msgstr "Nema Oznake" #: frappe/printing/page/print/print.js:703 #: frappe/printing/page/print/print.js:784 @@ -16707,286 +16902,282 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" -msgstr "" +msgstr "Bez Zaglavlja" #: frappe/model/naming.py:481 msgid "No Name Specified for {0}" -msgstr "" +msgstr "Nije Navedeno Ime za {0}" #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "No New notifications" -msgstr "" +msgstr "Nema Novih obavještenja" #: frappe/core/doctype/doctype/doctype.py:1743 msgid "No Permissions Specified" -msgstr "" +msgstr "Nema Navedenih Dozvola" #: frappe/core/page/permission_manager/permission_manager.js:199 msgid "No Permissions set for this criteria." -msgstr "" +msgstr "Nisu ostavljene Dozvole za ovaj kriterij." #: frappe/core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" -msgstr "" +msgstr "Nema Dozvoljenih Grafikona" #: frappe/core/page/dashboard_view/dashboard_view.js:92 msgid "No Permitted Charts on this Dashboard" -msgstr "" +msgstr "Nema Dozvoljenih Grafikona na ovoj Nadzornoj Tabli" #: frappe/printing/doctype/print_settings/print_settings.js:13 msgid "No Preview" -msgstr "" +msgstr "Nema Pregleda" #: frappe/printing/page/print/print.js:707 msgid "No Preview Available" -msgstr "" +msgstr "Pregled nije Dostupan" #: frappe/printing/page/print/print.js:862 msgid "No Printer is Available." -msgstr "" +msgstr "Nijedan Pisač nije Dostupan." #: frappe/core/doctype/rq_worker/rq_worker_list.js:3 msgid "No RQ Workers connected. Try restarting the bench." -msgstr "" +msgstr "RQ Radnici nisu priključeni. Pokušaj ponovo pokrenuti bench." #: frappe/public/js/frappe/form/link_selector.js:135 msgid "No Results" -msgstr "" +msgstr "Nema Rezultata" #: frappe/public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" -msgstr "" +msgstr "Nema Rezultata" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" -msgstr "" +msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" -msgstr "" +msgstr "Nije Pronađeno Odabirno Polje" #: frappe/core/doctype/recorder/recorder.py:179 msgid "No Suggestions" -msgstr "" +msgstr "Nema Prijedloga" #: frappe/desk/reportview.py:672 msgid "No Tags" -msgstr "" +msgstr "Nema Oznaka" #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "No Upcoming Events" -msgstr "" +msgstr "Nema Nadolazećih Događaja" #: frappe/public/js/frappe/form/templates/address_list.html:43 msgid "No address added yet." -msgstr "" +msgstr "Adresa još nije dodana." #: frappe/email/doctype/notification/notification.js:229 msgid "No alerts for today" -msgstr "" +msgstr "Nema upozorenja za danas" #: frappe/core/doctype/recorder/recorder.py:178 msgid "No automatic optimization suggestions available." -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" +msgstr "Nema dostupnih prijedloga za automatsku optimizaciju." #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" -msgstr "" +msgstr "Nema promjena u dokumentu" #: frappe/public/js/frappe/views/workspace/workspace.js:662 msgid "No changes made" -msgstr "" +msgstr "Nisu napravljene promjene" #: frappe/model/rename_doc.py:369 msgid "No changes made because old and new name are the same." -msgstr "" +msgstr "Nema promjena jer su stari i novi naziv isti." #: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 msgid "No changes to sync" -msgstr "" +msgstr "Nema promjena za sinhronizaciju" #: frappe/core/doctype/data_import/importer.py:298 msgid "No changes to update" -msgstr "" +msgstr "Nema promjena za ažuriranje" #: frappe/website/doctype/blog_post/blog_post.py:378 msgid "No comments yet" -msgstr "" +msgstr "Još nema komentara" #: frappe/templates/includes/comments/comments.html:4 msgid "No comments yet. " -msgstr "" +msgstr "Još nema komentara. " #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." -msgstr "" +msgstr "Još nema dodanih kontakata." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 msgid "No contacts linked to document" -msgstr "" +msgstr "Nema kontakata povezanih s dokumentom" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" -msgstr "" +msgstr "Nema podataka za izvoz" #: frappe/contacts/doctype/address/address.py:246 msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." -msgstr "" +msgstr "Nije pronađen standard Šablon Adrese. Kreiraj novi iz Postavljanje > Ispisivanje i Brendiranje > Šablon Adrese." #: frappe/public/js/frappe/ui/toolbar/search.js:71 msgid "No documents found tagged with {0}" -msgstr "" +msgstr "Nije pronađen nijedan dokument označen sa {0}" #: frappe/public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." -msgstr "" +msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Korisnik > Pristigla pošta." #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" -msgstr "" +msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." -msgstr "" +msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"." #: frappe/utils/file_manager.py:143 msgid "No file attached" -msgstr "" +msgstr "Nema priložene datoteke" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 msgid "No filters found" -msgstr "" +msgstr "Nije pronađen nijedan filter" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "No filters selected" -msgstr "" +msgstr "Nijedan filter nije odabran" #: frappe/desk/form/utils.py:111 msgid "No further records" -msgstr "" +msgstr "Nema daljnjih zapisa" #: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" -msgstr "" +msgstr "Nema podudarnih zapisa. Traži nešto novo" #: frappe/public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" -msgstr "" +msgstr "Nema više artikala za prikaz" #: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." -msgstr "" +msgstr "Nema potrebe za simbolima, ciframa ili velikim slovima." #: frappe/integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." -msgstr "" +msgstr "Nema novih sinhroniziranih Google Kontakata." #: frappe/public/js/frappe/ui/toolbar/navbar.html:46 msgid "No new notifications" -msgstr "" +msgstr "Nema novih obavijesti" #: frappe/printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" -msgstr "" +msgstr "Broj Kolona" #. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "No of Requested SMS" -msgstr "" +msgstr "Broj Traženih SMS-ova" #. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "No of Rows (Max 500)" -msgstr "" +msgstr "Broj Redova (Max. 500)" #. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "No of Sent SMS" -msgstr "" +msgstr "Broj Poslanih SMS-ova" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" -msgstr "" +msgstr "Nema dozvole za {0}" #: frappe/public/js/frappe/form/form.js:1142 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" -msgstr "" +msgstr "Nema dozvole za '{0}' {1}" #: frappe/model/db_query.py:950 msgid "No permission to read {0}" -msgstr "" +msgstr "Nema dozvole za čitanje {0}" #: frappe/share.py:220 msgid "No permission to {0} {1} {2}" -msgstr "" +msgstr "Nema dozvole za {0} {1} {2}" #: frappe/core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" -msgstr "" +msgstr "Nema izbrisanih zapisa" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" -msgstr "" +msgstr "Nema zapisa u {0}" #: frappe/public/js/frappe/list/list_sidebar_stat.html:3 msgid "No records tagged." -msgstr "" +msgstr "Nema označenih zapisa." #: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" -msgstr "" +msgstr "Nijedan zapis neće biti izvezen" #: frappe/public/js/frappe/form/grid.js:66 msgid "No rows" -msgstr "" +msgstr "Nema redova" #: frappe/email/doctype/notification/notification.py:129 msgid "No subject" -msgstr "" +msgstr "Nema predmeta" #: frappe/www/printview.py:472 msgid "No template found at path: {0}" -msgstr "" +msgstr "Nije pronađen šablon na putu: {0}" #: frappe/public/js/frappe/form/controls/multiselect_list.js:262 msgid "No values to show" -msgstr "" +msgstr "Nema vrijednosti za prikaz" #: frappe/website/web_template/discussions/discussions.html:2 msgid "No {0}" -msgstr "" +msgstr "Bez {0}" #: frappe/public/js/frappe/list/list_view_select.js:157 msgid "No {0} Found" -msgstr "" +msgstr "Nije pronađeno {0}" #: frappe/public/js/frappe/web_form/web_form_list.js:233 msgid "No {0} found" -msgstr "" +msgstr "Nije pronađeno {0}" #: frappe/public/js/frappe/list/list_view.js:494 msgid "No {0} found with matching filters. Clear filters to see all {0}." -msgstr "" +msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obrišite filtere da vidite sve {0}." #: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" -msgstr "" +msgstr "Nema {0} pošte" #: frappe/public/js/form_builder/utils.js:117 #: frappe/public/js/frappe/form/grid_row.js:256 msgctxt "Title of the 'row number' column" msgid "No." -msgstr "" +msgstr "Broj." #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Nomatim" -msgstr "" +msgstr "Nomatim" #. Label of the non_negative (Check) field in DocType 'DocField' #. Label of the non_negative (Check) field in DocType 'Custom Field' @@ -16995,192 +17186,197 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Non Negative" -msgstr "" +msgstr "Nije Negativno" #: frappe/desk/page/setup_wizard/install_fixtures.py:33 msgid "Non-Conforming" -msgstr "" +msgstr "Neusklađen" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Nijedan" #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" -msgstr "" +msgstr "Ništa: Kraj Radnog Toka" #. Label of the normalized_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Copies" -msgstr "" +msgstr "Normalizovane Kopije" #. Label of the normalized_query (Data) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" -msgstr "" +msgstr "Normalizovani Upit" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" -msgstr "" +msgstr "Nije Dozvoljeno" #: frappe/templates/includes/login/login.js:259 msgid "Not Allowed: Disabled User" -msgstr "" +msgstr "Nije Dozvoljeno: Onemogućen Korisnik" #: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" -msgstr "" +msgstr "Nisu Nadređeni Od" #: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "" +msgstr "Nisu Podređeni Od" #: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" -msgstr "" +msgstr "Nije Jednako" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" -msgstr "" +msgstr "Nije Pronađeno" #. Label of the not_helpful (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Not Helpful" -msgstr "" +msgstr "Nije Korisno" #: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" -msgstr "" +msgstr "Nije u" #: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "" +msgstr "Nije Kao" #: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" -msgstr "" +msgstr "Nije povezano ni sa jednim zapisom" #. Label of the not_nullable (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Not Nullable" -msgstr "" +msgstr "Nemože se Nulirati" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" -msgstr "" +msgstr "Nije Dozvoljeno" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" -msgstr "" +msgstr "Nije Dozvoljeno čitati {0}" #: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" -msgstr "" +msgstr "Nije Objavljeno" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" -msgstr "" +msgstr "Nespremljeno" #: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" -msgstr "" +msgstr "Nije Viđeno" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" -msgstr "" +msgstr "Nije Poslano" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" -msgstr "" +msgstr "Nije Postavljeno" #: frappe/public/js/frappe/ui/filters/filter.js:608 msgctxt "Field value is not set" msgid "Not Set" -msgstr "" +msgstr "Nije Postavljeno" #: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" -msgstr "" +msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." -msgstr "" +msgstr "Nije važeća Korisnička slika." #: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" -msgstr "" +msgstr "Nije važeća Akcija Radnog Toka" #: frappe/templates/includes/login/login.js:255 msgid "Not a valid user" -msgstr "" +msgstr "Nije važeći korisnik" #: frappe/workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" -msgstr "" +msgstr "Nije aktivno" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" -msgstr "" +msgstr "Nije dozvoljeno za {0}: {1}" #: frappe/email/doctype/notification/notification.py:595 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" -msgstr "" +msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa" #: frappe/core/doctype/doctype/doctype.py:335 msgid "Not allowed to create custom Virtual DocType." -msgstr "" +msgstr "Nije dozvoljeno kreirati prilagođeni Virtualni DocType." #: frappe/www/printview.py:165 msgid "Not allowed to print cancelled documents" -msgstr "" +msgstr "Nije dozvoljen ispis otkazanih dokumenata" #: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" -msgstr "" +msgstr "Nije dozvoljen ispis nacrta dokumenata" #: frappe/permissions.py:213 msgid "Not allowed via controller permission check" -msgstr "" +msgstr "Nije dozvoljeno putem provjere dozvole kontrolora" #: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 msgid "Not found" -msgstr "" +msgstr "Nije pronađeno" #: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" -msgstr "" +msgstr "Nije u načinu rada za programere" #: frappe/core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." -msgstr "" +msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType." #: frappe/core/doctype/system_settings/system_settings.py:215 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" -msgstr "" +msgstr "Nije dozvoljeno" #: frappe/public/js/frappe/list/list_view.js:50 msgid "Not permitted to view {0}" -msgstr "" +msgstr "Nije dozvoljen pregled {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17188,60 +17384,60 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" -msgstr "" +msgstr "Napomena" #. Name of a DocType #: frappe/desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" -msgstr "" +msgstr "Napomena Viđena Od" #: frappe/www/confirm_workflow_action.html:8 msgid "Note:" -msgstr "" +msgstr "Napomena:" #: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." -msgstr "" +msgstr "Napomena: Promjena naziva stranice će prekinuti prethodni URL na ovu stranicu." #: frappe/core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." -msgstr "" +msgstr "Napomena: Etc vremenske zone imaju obrnuti predznak." #. Description of the 'sb0' (Section Break) field in DocType 'Website #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "" +msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a širina mora biti veća od visine." #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "" +msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja" #: frappe/core/doctype/user/user.js:393 msgid "Note: This will be shared with user." -msgstr "" +msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." #: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." -msgstr "" +msgstr "Napomena: Vaš zahtjev za brisanje računa će biti ispunjen u roku od {0} sati." #: frappe/core/doctype/data_export/exporter.py:183 msgid "Notes:" -msgstr "" +msgstr "Napomene:" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "Nothing New" -msgstr "" +msgstr "Ništa Novo" #: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" -msgstr "" +msgstr "Ništa nije ostalo za ponoviti" #: frappe/public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" -msgstr "" +msgstr "Ništa nije ostalo za poništiti" #: frappe/public/js/frappe/list/base_list.js:372 #: frappe/public/js/frappe/views/reports/query_report.js:105 @@ -17249,11 +17445,11 @@ msgstr "" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" -msgstr "" +msgstr "Ništa za pokazati" #: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" -msgstr "" +msgstr "Ništa za ažuriranje" #. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace @@ -17263,17 +17459,17 @@ msgstr "" #: frappe/core/doctype/communication/mixins.py:142 #: frappe/email/doctype/notification/notification.json msgid "Notification" -msgstr "" +msgstr "Obavještenje" #. Name of a DocType #: frappe/desk/doctype/notification_log/notification_log.json msgid "Notification Log" -msgstr "" +msgstr "Zapisnik Obavještenja" #. Name of a DocType #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" -msgstr "" +msgstr "Primalac Obaveštenja" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17281,109 +17477,109 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/ui/notifications/notifications.js:37 msgid "Notification Settings" -msgstr "" +msgstr "Postavke Obaveštenja" #. Name of a DocType #: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgid "Notification Subscribed Document" -msgstr "" +msgstr "Obavijest Pretplaćeni Dokument" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 msgid "Notification sent to" -msgstr "" +msgstr "Obavještenje je poslano za" #: frappe/email/doctype/notification/notification.py:500 msgid "Notification: customer {0} has no Mobile number set" -msgstr "" +msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona" #: frappe/email/doctype/notification/notification.py:486 msgid "Notification: document {0} has no {1} number set (field: {2})" -msgstr "" +msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})" #: frappe/email/doctype/notification/notification.py:495 msgid "Notification: user {0} has no Mobile number set" -msgstr "" +msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" #. Label of the notifications (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json #: frappe/public/js/frappe/ui/notifications/notifications.js:50 #: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" -msgstr "" +msgstr "Obavještenja" #: frappe/public/js/frappe/ui/notifications/notifications.js:299 msgid "Notifications Disabled" -msgstr "" +msgstr "Obavještenja Onemogućena" #. Description of the 'Default Outgoing' (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "" +msgstr "Obavještenja i masovne poruke će se slati sa ovog odlaznog servera." #. Label of the notify_on_every_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify Users On Every Login" -msgstr "" +msgstr "Obavijesti Korisnike o Svakoj Prijavi" #. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "" +msgstr "Obavijesti putem e-pošte" #. Label of the notify_by_email (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json msgid "Notify by email" -msgstr "" +msgstr "Obavijesti putem e-pošte" #. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "" +msgstr "Obavijesti ako nema odgovora" #. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "" +msgstr "Obavijesti ako nema odgovora za (u minutama)" #. Label of the notify_on_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" -msgstr "" +msgstr "Obavijestite korisnike skočnim prozorom kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" -msgstr "" +msgstr "Sad" #. Label of the phone (Data) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Number" -msgstr "" +msgstr "Broj" #. Name of a DocType #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" -msgstr "" +msgstr "Numerička Kartica" #. Name of a DocType #: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" -msgstr "" +msgstr "Veza Kartice sa brojem" #. Label of the number_card_name (Link) field in DocType 'Workspace Number #. Card' #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" -msgstr "" +msgstr "Naziv Numeričke Kartice" #. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' #. Label of the number_cards (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/widgets/widget_dialog.js:658 msgid "Number Cards" -msgstr "" +msgstr "Numeričke Kartice" #. Label of the number_format (Select) field in DocType 'Language' #. Label of the number_format (Select) field in DocType 'System Settings' @@ -17392,399 +17588,408 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/currency/currency.json msgid "Number Format" -msgstr "" +msgstr "Format Broja" #. Label of the backup_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of Backups" -msgstr "" +msgstr "Broj Sigurnosnih Kopija" #. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Number of Groups" -msgstr "" +msgstr "Broj Grupa" #. Label of the number_of_queries (Int) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" -msgstr "" +msgstr "Broj Upita" #: frappe/core/doctype/doctype/doctype.py:442 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." -msgstr "" +msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}." #: frappe/core/doctype/system_settings/system_settings.py:170 msgid "Number of backups must be greater than zero." -msgstr "" +msgstr "Broj Sigurnosnih Kopija mora biti veći od nule." #. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "" +msgstr "Broj kolona za polje u Mreži (Ukupni Broj Kolona u mreži trebao bi biti manji od 11)" #. Description of the 'Columns' (Int) field in DocType 'DocField' #. Description of the 'Columns' (Int) field in DocType 'Custom Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "" +msgstr "Broj kolona za polje u Prikazu Liste ili Mreži (Ukupni Broj Kolona bi trebao biti manji od 11)" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" -msgstr "" +msgstr "Broj dana nakon kojih će veza Web Prikaza dokumenta podijeljena putem e-pošte isteći" #. Label of the cache_keys (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Number of keys" -msgstr "" +msgstr "Broj ključeva" #. Label of the onsite_backups (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Number of onsite backups" -msgstr "" +msgstr "Broj lokalnih Sigurnosnih Kopija" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "OAuth" -msgstr "" +msgstr "OAuth" #. Name of a DocType #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "OAuth Authorization Code" -msgstr "" +msgstr "OAuth Autorizacijski Kod" #. Name of a DocType #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" -msgstr "" +msgstr "OAuth Token Nosioca" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Client" -msgstr "" +msgstr "OAuth Klijent" #. Label of the sb_00 (Section Break) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "OAuth Client ID" -msgstr "" +msgstr "OAuth ID Klijenta" #. Name of a DocType #: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json msgid "OAuth Client Role" -msgstr "" +msgstr "OAuth Uloga Klijenta" #: frappe/email/oauth.py:30 msgid "OAuth Error" -msgstr "" +msgstr "OAuth Greška" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Provider Settings" -msgstr "" +msgstr "OAuth Postavke Dobavljača" #. Name of a DocType #: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "OAuth Scope" -msgstr "" +msgstr "OAuth Opseg" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "OAuth Postavke" #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." -msgstr "" +msgstr "OAuth je omogućen, ali nije ovlašten. Koristi dugme \"Odobri API Pristup\" da učinite isto." #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "OPTIONS" -msgstr "" +msgstr "OPCIJE" #: frappe/public/js/form_builder/components/Tabs.vue:190 msgid "OR" -msgstr "" +msgstr "ILI" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP App" -msgstr "" +msgstr "OTP Aplikacija" #. Label of the otp_issuer_name (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP Issuer Name" -msgstr "" +msgstr "Naziv OTP Izdavaoca" #: frappe/twofactor.py:445 msgid "OTP Secret Reset - {0}" -msgstr "" +msgstr "OTP Poništavanje Tajne - {0}" #: frappe/twofactor.py:464 msgid "OTP Secret has been reset. Re-registration will be required on next login." -msgstr "" +msgstr "OTP Tajna je resetovana. Ponovna registracija će biti potrebna prilikom sljedeće prijave." #: frappe/templates/includes/login/login.js:355 msgid "OTP setup using OTP App was not completed. Please contact Administrator." -msgstr "" +msgstr "Postavljanje OTP pomoću OTP Aplikacije nije završeno. Kontaktiraj Administratora." #. Label of the occurrences (Int) field in DocType 'System Health Report #. Errors' #: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json msgid "Occurrences" -msgstr "" +msgstr "Ponavljanja" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "" +msgstr "Isključen" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Office" -msgstr "" +msgstr "Ured" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Office 365" -msgstr "" +msgstr "Office 365" #: frappe/core/doctype/server_script/server_script.js:36 msgid "Official Documentation" -msgstr "" +msgstr "Službena Dokumentacija" #. Label of the offset_x (Int) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset X" -msgstr "" +msgstr "Pomak X" #. Label of the offset_y (Int) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset Y" -msgstr "" +msgstr "Pomak Y" + +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Pomak mora biti cijeli broj koji nije negativan" #: frappe/www/update-password.html:38 msgid "Old Password" -msgstr "" +msgstr "Stara Lozinka" #: frappe/custom/doctype/custom_field/custom_field.py:412 msgid "Old and new fieldnames are same." -msgstr "" +msgstr "Stari i novi nazivi polja su isti." #. Description of the 'Number of Backups' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Older backups will be automatically deleted" -msgstr "" +msgstr "Starije sigurnosne kopije će se automatski izbrisati" #. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Oldest Unscheduled Job" -msgstr "" +msgstr "Najstariji Neraspoređeni Posao" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "On Hold" -msgstr "" +msgstr "Na Čekanju" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Authorization" -msgstr "" +msgstr "Pri Autorizaciji Plaćanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Charge Processed" -msgstr "" +msgstr "Pri Plaćanju Obrađene Naknade" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Failed" -msgstr "" +msgstr "Pri Slučaju Neuspjelog Plaćanja" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Mandate Acquisition Processed" -msgstr "" +msgstr "Pri Naloga Plaćanja Obrađeno Preuzimanje" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Mandate Charge Processed" -msgstr "" +msgstr "Pri Naloga Plaćanja Obrađena Naknada" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Paid" -msgstr "" +msgstr "Pri Izvršenoj Uplati" #. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "On checking this option, URL will be treated like a jinja template string" -msgstr "" +msgstr "Kada označite ovu opciju, URL će se tretirati kao niz jinja šablona" #: frappe/public/js/frappe/ui/filters/filter.js:66 #: frappe/public/js/frappe/ui/filters/filter.js:72 msgid "On or After" -msgstr "" +msgstr "Na ili Poslije" #: frappe/public/js/frappe/ui/filters/filter.js:65 #: frappe/public/js/frappe/ui/filters/filter.js:71 msgid "On or Before" -msgstr "" +msgstr "Na ili Prije" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" -msgstr "" +msgstr "{0}, {1} je napisao:" #. Label of the onboard (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:335 msgid "Onboard" -msgstr "" +msgstr "Introdukcija" #: frappe/public/js/frappe/widgets/widget_dialog.js:232 msgid "Onboarding Name" -msgstr "" +msgstr "Naziv Introdukcije" #. Name of a DocType #: frappe/desk/doctype/onboarding_permission/onboarding_permission.json msgid "Onboarding Permission" -msgstr "" +msgstr "Dozvola Introdukcije" #. Label of the onboarding_status (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Onboarding Status" -msgstr "" +msgstr "Status Introdukcije" #. Name of a DocType #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Onboarding Step" -msgstr "" +msgstr "Korak Introdukcije" #. Name of a DocType #: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Onboarding Step Map" -msgstr "" +msgstr "Mapa Koraka Introdukcije" #: frappe/public/js/frappe/widgets/onboarding_widget.js:264 msgid "Onboarding complete" -msgstr "" +msgstr "Introdukcija Završena" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "" +msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti." #: frappe/core/page/permission_manager/permission_manager_help.html:35 msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." -msgstr "" +msgstr "Nakon što ovo postavite, korisnici će moći pristupiti samo dokumentima (npr. Blog Post) gdje postoji veza (npr. Blogger)." #: frappe/www/complete_signup.html:7 msgid "One Last Step" -msgstr "" +msgstr "Posljednji Korak" #: frappe/twofactor.py:278 msgid "One Time Password (OTP) Registration Code from {}" -msgstr "" +msgstr "Jednokratna Lozinka (OTP) registracijski kod od {}" #: frappe/core/doctype/data_export/exporter.py:331 msgid "One of" -msgstr "" +msgstr "Jedan od" #: frappe/client.py:213 msgid "Only 200 inserts allowed in one request" -msgstr "" +msgstr "Dozvoljeno je samo 200 umetanja u jednom zahtjevu" #: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" -msgstr "" +msgstr "Samo Administrator može izbrisati red čekanja e-pošte" #: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" -msgstr "" +msgstr "Samo Administrator može uređivati" #: frappe/core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." -msgstr "" +msgstr "Samo Administrator može spremiti standardni izvještaj. Preimenuj i spremi." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" -msgstr "" +msgstr "Samo Administrator može koristiti Snimač" #. Label of the allow_edit (Link) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Only Allow Edit For" -msgstr "" +msgstr "Dozvoli samo uređivanje za" #: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" -msgstr "" +msgstr "Jedine dopuštene opcije za polje podataka su:" #. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Only Send Records Updated in Last X Hours" -msgstr "" +msgstr "Pošalji Zapise Ažurirane u Posljednjih X Sati" #: frappe/desk/doctype/workspace/workspace.js:32 msgid "Only Workspace Manager can edit public workspaces" -msgstr "" +msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore" #: frappe/modules/utils.py:65 msgid "Only allowed to export customizations in developer mode" -msgstr "" +msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" -msgstr "" +msgstr "Mogu se odbaciti samo nacrti dokumenata" #. Label of the only_for (Link) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" -msgstr "" +msgstr "Samo za" #: frappe/core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." -msgstr "" +msgstr "Za nove zapise neophodna su samo obavezna polja. Ako želite, možete izbrisati neobavezne kolone." #: frappe/contacts/doctype/contact/contact.py:131 #: frappe/contacts/doctype/contact/contact.py:158 msgid "Only one {0} can be set as primary." -msgstr "" +msgstr "Samo jedan {0} može biti postavljen kao primarni." #: frappe/desk/reportview.py:357 msgid "Only reports of type Report Builder can be deleted" -msgstr "" +msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" #: frappe/desk/reportview.py:328 msgid "Only reports of type Report Builder can be edited" -msgstr "" +msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" #: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Only standard DocTypes are allowed to be customized from Customize Form." -msgstr "" +msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." -msgstr "" +msgstr "Samo Administrator može izbrisati standardni DocType." #: frappe/desk/form/assign_to.py:198 msgid "Only the assignee can complete this to-do." -msgstr "" +msgstr "Samo dodjeljeni može izvršiti ovu obavezu." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." -msgstr "" +msgstr "Dozvoljeni su samo {0} izvještaja poslatih e-poštom po korisniku." #: frappe/templates/includes/login/login.js:291 msgid "Oops! Something went wrong." -msgstr "" +msgstr "Ups! Nešto je pošlo po zlu." #. Option for the 'Status' (Select) field in DocType 'Contact' #. Option for the 'Status' (Select) field in DocType 'Communication' @@ -17798,86 +18003,86 @@ msgstr "" #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Open" -msgstr "" +msgstr "Otvori" #: frappe/desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" -msgstr "" +msgstr "Otvori" #: frappe/public/js/frappe/ui/keyboard.js:207 #: frappe/public/js/frappe/ui/keyboard.js:217 msgid "Open Awesomebar" -msgstr "" +msgstr "Otvori Awesomebar" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 #: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 #: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 msgid "Open Communication" -msgstr "" +msgstr "Otvori Konverzaciju" #: frappe/templates/emails/new_notification.html:10 msgid "Open Document" -msgstr "" +msgstr "Otvori Dokument" #. Label of the subscribed_documents (Table MultiSelect) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Open Documents" -msgstr "" +msgstr "Otvori Dokumente" #: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" -msgstr "" +msgstr "Otvori Pomoć" #. Label of the open_reference_document (Button) field in DocType 'Notification #. Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Open Reference Document" -msgstr "" +msgstr "Otvori Referentni Dokument" #: frappe/public/js/frappe/ui/keyboard.js:226 msgid "Open Settings" -msgstr "" +msgstr "Otvori Postavke" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Open Source Applications for the Web" -msgstr "" +msgstr "Aplikacije otvorenog koda za Web" #. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Open URL in a New Tab" -msgstr "" +msgstr "Otvori URL u novoj kartici" #. Description of the 'Quick Entry' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." -msgstr "" +msgstr "Otvorite dijalog sa obaveznim poljima da brzo kreirate novi zapis. Mora postojati barem jedno obavezno polje za prikaz u dijalogu." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 msgid "Open a module or tool" -msgstr "" +msgstr "Otvori modul ili alat" #: frappe/public/js/frappe/ui/keyboard.js:366 msgid "Open console" -msgstr "" +msgstr "Otvori konzolu" #: frappe/public/js/print_format_builder/Preview.vue:17 msgid "Open in a new tab" -msgstr "" +msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" -msgstr "" +msgstr "Otvorite stavku liste" #: frappe/core/doctype/error_log/error_log.js:15 msgid "Open reference document" -msgstr "" +msgstr "Otvorite referentni dokument" #: frappe/www/qrcode.html:13 msgid "Open your authentication app on your mobile phone." -msgstr "" +msgstr "Otvorite aplikaciju za autentifikaciju na svom mobilnom telefonu." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 @@ -17889,67 +18094,67 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 msgid "Open {0}" -msgstr "" +msgstr "Otvori {0}" #. Label of the openid_configuration (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "OpenID Configuration" -msgstr "" +msgstr "OpenID konfiguracija" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" -msgstr "" +msgstr "OpenLDAP" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Opened" -msgstr "" +msgstr "Otvoreno" #. Label of the operation (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Operation" -msgstr "" +msgstr "Operacija" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" -msgstr "" +msgstr "Operator mora biti jedan od {0}" #: frappe/core/doctype/file/file.js:34 #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 msgid "Optimize" -msgstr "" +msgstr "Optimiziraj" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." -msgstr "" +msgstr "Optimiziranje slike u toku..." #: frappe/custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" -msgstr "" +msgstr "Opcija 1" #: frappe/custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" -msgstr "" +msgstr "Opcija 2" #: frappe/custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" -msgstr "" +msgstr "Opcija 3" #: frappe/core/doctype/doctype/doctype.py:1638 msgid "Option {0} for field {1} is not a child table" -msgstr "" +msgstr "Opcija {0} za polje {1} nije podređena tabela" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "" +msgstr "Opcija: Uvijek šaljite na ove Id-ove. Svaka adresa e-pošte u novom redu" #. Description of the 'Condition' (Code) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Optional: The alert will be sent if this expression is true" -msgstr "" +msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #. Label of the options (Small Text) field in DocType 'DocField' #. Label of the options (Data) field in DocType 'Report Column' @@ -17967,54 +18172,58 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" -msgstr "" +msgstr "Opcije" #: frappe/core/doctype/doctype/doctype.py:1366 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" -msgstr "" +msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'" #. Label of the options_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Options Help" -msgstr "" +msgstr "Pomoć Opcija" #: frappe/core/doctype/doctype/doctype.py:1660 msgid "Options for Rating field can range from 3 to 10" -msgstr "" +msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10" #: frappe/custom/doctype/custom_field/custom_field.js:96 msgid "Options for select. Each option on a new line." -msgstr "" +msgstr "Opcije za odabir. Svaka opcija u novom redu." #: frappe/core/doctype/doctype/doctype.py:1383 msgid "Options for {0} must be set before setting the default value." -msgstr "" +msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti." #: frappe/public/js/form_builder/store.js:182 msgid "Options is required for field {0} of type {1}" -msgstr "" +msgstr "Opcije su potrebne za polje {0} tipa {1}" #: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" -msgstr "" +msgstr "Opcije nisu postavljene za polje veze {0}" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Orange" -msgstr "" +msgstr "Narandžasta" #. Label of the order (Code) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" -msgstr "" +msgstr "Red" + +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "Sortiraj Po mora biti niz" #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History" -msgstr "" +msgstr "Istorija" #. Label of the company_history_heading (Data) field in DocType 'About Us #. Settings' @@ -18022,14 +18231,14 @@ msgstr "" msgid "Org History Heading" msgstr "Naslov Povijesti Organizacije" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" -msgstr "" +msgstr "Orijentacija" #: frappe/core/doctype/version/version_view.html:13 #: frappe/core/doctype/version/version_view.html:75 msgid "Original Value" -msgstr "" +msgstr "Originalna Vrijednost" #. Option for the 'Address Type' (Select) field in DocType 'Address' #. Option for the 'Type' (Select) field in DocType 'Communication' @@ -18041,46 +18250,46 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/page/setup_wizard/install_fixtures.py:30 msgid "Other" -msgstr "" +msgstr "Ostalo" #. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing" -msgstr "" +msgstr "Odlazeća" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" -msgstr "" +msgstr "Odlazne Postavke (SMTP)" #. Label of the outgoing_emails_column (Column Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Outgoing Emails (Last 7 days)" -msgstr "" +msgstr "Odlazna e-pošta (Zadnjih 7 dana)" #. Label of the smtp_server (Data) field in DocType 'Email Account' #. Label of the smtp_server (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" -msgstr "" +msgstr "Odlazni Server" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Settings" -msgstr "" +msgstr "Odlazne Postavke" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" -msgstr "" +msgstr "Odlazni račun e-pošte nije ispravan" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outlook.com" -msgstr "" +msgstr "Outlook.com" #. Label of the output (Code) field in DocType 'Permission Inspector' #. Label of the output (Code) field in DocType 'System Console' @@ -18089,30 +18298,32 @@ msgstr "" #: frappe/desk/doctype/system_console/system_console.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Output" -msgstr "" +msgstr "Izlaz" #: frappe/public/js/frappe/form/templates/form_dashboard.html:5 msgid "Overview" -msgstr "" +msgstr "Pregled" #: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" -msgstr "" +msgstr "Vlasnik" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" -msgstr "" +msgstr "ZAKRPA" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" -msgstr "" +msgstr "PDF" #: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 msgid "PDF Generation in Progress" -msgstr "" +msgstr "PDF Generisanje u toku" #. Label of the pdf_generator (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -18122,57 +18333,57 @@ msgstr "PDF Generator" #. Label of the pdf_page_height (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Height (in mm)" -msgstr "" +msgstr "PDF Visina Stranice (u mm)" #. Label of the pdf_page_size (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Size" -msgstr "" +msgstr "PDF Veličina Stranice" #. Label of the pdf_page_width (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Width (in mm)" -msgstr "" +msgstr "PDF Širina Stranice (u mm)" #. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Settings" -msgstr "" +msgstr "PDF Postavke" #: frappe/utils/print_format.py:289 msgid "PDF generation failed" -msgstr "" +msgstr "PDF Generisanje nije uspjelo" #: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" -msgstr "" +msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika" #: frappe/printing/page/print/print.js:616 msgid "PDF generation may not work as expected." -msgstr "" +msgstr "PDF Generisanje možda neće raditi kako se očekuje." #: frappe/printing/page/print/print.js:534 msgid "PDF printing via \"Raw Print\" is not supported." -msgstr "" +msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano." #. Label of the pid (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "PID" -msgstr "" +msgstr "PID" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "POST" -msgstr "" +msgstr "POST" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "PUT" -msgstr "" +msgstr "PUT" #. Label of the package (Link) field in DocType 'Module Def' #. Name of a DocType @@ -18183,34 +18394,34 @@ msgstr "" #: frappe/core/doctype/package_release/package_release.json #: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" -msgstr "" +msgstr "Applikacija" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/package_import/package_import.json #: frappe/core/workspace/build/build.json msgid "Package Import" -msgstr "" +msgstr "Uvoz Aplikacije" #. Label of the package_name (Data) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Package Name" -msgstr "" +msgstr "Naziv Aplikacije" #. Name of a DocType #: frappe/core/doctype/package_release/package_release.json msgid "Package Release" -msgstr "" +msgstr "Izdanje Aplikacije" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Packages" -msgstr "" +msgstr "Aplikacije" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" -msgstr "" +msgstr "Applikacije su lagane aplikacije (zbirka Module Defs) koje se mogu izraditi, uvesti ili objaviti izravno iz korisničkog sučelja" #. Label of the page (Link) field in DocType 'Custom Role' #. Name of a DocType @@ -18232,217 +18443,217 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Page" -msgstr "" +msgstr "Stranica" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Page Break" -msgstr "" +msgstr "Prijelom stranice" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Page Builder" -msgstr "" +msgstr "Izrada Stranica" #. Label of the page_blocks (Table) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Page Building Blocks" -msgstr "" +msgstr "Elementi Stranice" #. Label of the page_html (Section Break) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "" +msgstr "HTML Stranice" #: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" -msgstr "" +msgstr "Visina Stranice (u mm)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 msgid "Page Margins" -msgstr "" +msgstr "Margine Stranice" #. Label of the page_name (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page Name" -msgstr "" +msgstr "Naziv Stranice" #. Label of the page_number (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" -msgstr "" +msgstr "Broj Stranice" #. Label of the page_route (Small Text) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Page Route" -msgstr "" +msgstr "Ruta Stranice" #. Label of the view_link_in_email (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Page Settings" -msgstr "" +msgstr "Postavke Stranice" #: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" -msgstr "" +msgstr "Prečice Stranice" #: frappe/public/js/frappe/list/bulk_operations.js:66 msgid "Page Size" -msgstr "" +msgstr "Veličina Stranice" #. Label of the page_title (Data) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Page Title" -msgstr "" +msgstr "Naslov Stranice" #: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" -msgstr "" +msgstr "Širina Stranice (u mm)" #: frappe/www/qrcode.py:35 msgid "Page has expired!" -msgstr "" +msgstr "Stranica je istekla!" #: frappe/printing/doctype/print_settings/print_settings.py:70 #: frappe/public/js/frappe/list/bulk_operations.js:106 msgid "Page height and width cannot be zero" -msgstr "" +msgstr "Visina i širina stranice ne mogu biti nula" #: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" -msgstr "" +msgstr "Stranica nije pronađena" #. Description of a DocType #: frappe/website/doctype/web_page/web_page.json msgid "Page to show on the website\n" -msgstr "" +msgstr "Stranica za prikaz na web stranici\n" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 #: frappe/public/js/frappe/web_form/web_form.js:264 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" -msgstr "" +msgstr "Stranica {0} od {1}" #. Label of the parameter (Data) field in DocType 'SMS Parameter' #: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "Parameter" -msgstr "" +msgstr "Parametar" #: frappe/public/js/frappe/model/model.js:142 #: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" -msgstr "" +msgstr "Nadređeni" #. Label of the parent_doctype (Link) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" -msgstr "" +msgstr "Nadređeni DocType" #. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' #. Label of the parent_document_type (Link) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Parent Document Type" -msgstr "" +msgstr "Nadređeni Tip Dokumenta" #: frappe/desk/doctype/number_card/number_card.py:65 msgid "Parent Document Type is required to create a number card" -msgstr "" +msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice" #. Label of the parent_element_selector (Data) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Element Selector" -msgstr "" +msgstr "Birač Nadređenog Elementa" #. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Field" -msgstr "" +msgstr "Nadređeno Polje" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype.py:933 msgid "Parent Field (Tree)" -msgstr "" +msgstr "Nadređeno Polje (Stablo)" #: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" -msgstr "" +msgstr "Nadređeno Polje mora biti važeće ime polja" #. Label of the parent_label (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Parent Label" -msgstr "" +msgstr "Nadređena Oznaka" #: frappe/core/doctype/doctype/doctype.py:1197 msgid "Parent Missing" -msgstr "" +msgstr "Nedostaje Nadređeni" #. Label of the parent_page (Link) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Parent Page" -msgstr "" +msgstr "Nadređena Stranica" #: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" -msgstr "" +msgstr "Nadređena Tabela" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 msgid "Parent document type is required to create a dashboard chart" -msgstr "" +msgstr "Tip nadređenog dokumenta je obavezan za kreiranje grafikona nadzorne table" #: frappe/core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." -msgstr "" +msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "" +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Nadređeni-Podređeni ili Podređeni-Drugi Podrđeni nije dopušteno." -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" -msgstr "" +msgstr "Nadređeno polje nije navedeno u {0}: {1}" #: frappe/client.py:467 msgid "Parenttype, Parent and Parentfield are required to insert a child record" -msgstr "" +msgstr "Za umetanje podređenog zapisa potrebni su nadređeni tip, nadređeni i nadređeno polje" #. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Partial" -msgstr "" +msgstr "Djelimično" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Partial Success" -msgstr "" +msgstr "Djelimičan Uspjeh" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Partially Sent" -msgstr "" +msgstr "Djelimično Poslano" #. Label of the participants (Section Break) field in DocType 'Event' #: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json msgid "Participants" -msgstr "" +msgstr "Učesnici" #. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Pass" -msgstr "" +msgstr "Uspješno" #. Option for the 'Status' (Select) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Passive" -msgstr "" +msgstr "Pasivno" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the password_settings (Section Break) field in DocType 'System @@ -18463,93 +18674,89 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/www/login.html:22 msgid "Password" -msgstr "" +msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" -msgstr "" +msgstr "E-pošta s lozinkom poslana" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" -msgstr "" +msgstr "Poništavanje Lozinke" #. Label of the password_reset_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Password Reset Link Generation Limit" -msgstr "" +msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu" #: frappe/public/js/frappe/form/grid_row.js:880 msgid "Password cannot be filtered" -msgstr "" +msgstr "Lozinka se ne može filtrirati" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 msgid "Password changed successfully." -msgstr "" +msgstr "Lozinka je uspješno promijenjena." #. Label of the password (Password) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Password for Base DN" -msgstr "" +msgstr "Lozinka za Osnovni DN" #: frappe/email/doctype/email_account/email_account.py:189 msgid "Password is required or select Awaiting Password" -msgstr "" +msgstr "Lozinka je obavezna ili odaberi Čekam Lozinku" #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" -msgstr "" +msgstr "Nedostaje Lozinka za Račun e-pošte" #: frappe/utils/password.py:47 msgid "Password not found for {0} {1} {2}" -msgstr "" +msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" -msgstr "" +msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" -msgstr "" +msgstr "Lozinka postavljena" #: frappe/auth.py:258 msgid "Password size exceeded the maximum allowed size" -msgstr "" +msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." -msgstr "" +msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" -msgstr "" +msgstr "Lozinke se ne podudaraju" #: frappe/core/doctype/user/user.js:205 msgid "Passwords do not match!" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" +msgstr "Lozinke se ne podudaraju!" #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" -msgstr "" +msgstr "Zalijepi" #. Label of the patch (Int) field in DocType 'Package Release' #. Label of the patch (Code) field in DocType 'Patch Log' #: frappe/core/doctype/package_release/package_release.json #: frappe/core/doctype/patch_log/patch_log.json msgid "Patch" -msgstr "" +msgstr "Zakrpa" #. Name of a DocType #: frappe/core/doctype/patch_log/patch_log.json msgid "Patch Log" -msgstr "" +msgstr "Zapisnik Zakrpa" #: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" -msgstr "" +msgstr "Tip Zakrpe {} nije pronađen u patches.txt" #. Label of the path (Data) field in DocType 'API Request Log' #. Label of the path (Small Text) field in DocType 'Package Release' @@ -18563,37 +18770,37 @@ msgstr "" #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:35 msgid "Path" -msgstr "" +msgstr "Put" #. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to CA Certs File" -msgstr "" +msgstr "Put do datoteke CA certifikata" #. Label of the local_server_certificate_file (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to Server Certificate" -msgstr "" +msgstr "Put do Certifikata Servera" #. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to private Key File" -msgstr "" +msgstr "Put do Datoteke Privatnog Ključa" #: frappe/website/path_resolver.py:208 msgid "Path {0} it not a valid path" -msgstr "" +msgstr "Put {0} nije važeći put" #. Label of the payload_count (Int) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Payload Count" -msgstr "" +msgstr "Broj Nosivosti" #. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Peak Memory Usage" -msgstr "" +msgstr "Maksimalna Upotreba Memorije" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' @@ -18603,30 +18810,30 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" -msgstr "" +msgstr "Na Čekanju" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Approval" -msgstr "" +msgstr "Na čekanju na Odobrenje" #. Label of the pending_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Pending Emails" -msgstr "" +msgstr "E-pošta na Čekanju" #. Label of the pending_jobs (Int) field in DocType 'System Health Report #. Queue' #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Pending Jobs" -msgstr "" +msgstr "Poslovi na Čekanju" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Verification" -msgstr "" +msgstr "Čeka se Verifikacija" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -18635,91 +18842,91 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Percent" -msgstr "" +msgstr "Procenat" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Percentage" -msgstr "" +msgstr "Procenat" #. Label of the dynamic_date_period (Select) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Period" -msgstr "" +msgstr "Razdoblje" #. Label of the permlevel (Int) field in DocType 'DocField' #. Label of the permlevel (Int) field in DocType 'Customize Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Perm Level" -msgstr "" +msgstr "Nivo Dozvola" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Permanent" -msgstr "" +msgstr "Trajno" #: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" -msgstr "" +msgstr "Trajno Otkaži {0}?" #: frappe/public/js/frappe/form/form.js:1074 msgid "Permanently Discard {0}?" -msgstr "" +msgstr "Trajno Odbaci {0}?" #: frappe/public/js/frappe/form/form.js:861 msgid "Permanently Submit {0}?" -msgstr "" +msgstr "Trajno Podnesi {0}?" #: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" -msgstr "" +msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" -msgstr "" +msgstr "Greška Dozvole" #. Name of a DocType #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Inspector" -msgstr "" +msgstr "Inspektor Dozvola" #. Label of the permlevel (Int) field in DocType 'Custom Field' #: frappe/core/page/permission_manager/permission_manager.js:463 #: frappe/custom/doctype/custom_field/custom_field.json msgid "Permission Level" -msgstr "" +msgstr "Nivo Dozvole" #: frappe/core/page/permission_manager/permission_manager_help.html:22 msgid "Permission Levels" -msgstr "" +msgstr "Nivoi Dozvola" #. Name of a DocType #: frappe/core/doctype/permission_log/permission_log.json msgid "Permission Log" -msgstr "" +msgstr "Zapisnik Dozvola" #. Label of a shortcut in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Permission Manager" -msgstr "" +msgstr "Upravitelj Dozvola" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Permission Query" -msgstr "" +msgstr "Upit za Dozvolu" #. Label of the permission_rules (Section Break) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json msgid "Permission Rules" -msgstr "" +msgstr "Pravila Dozvole" #. Label of the permission_type (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Type" -msgstr "" +msgstr "Tip Dozvole" #. Label of the section_break_4 (Section Break) field in DocType 'Custom #. DocPerm' @@ -18742,65 +18949,65 @@ msgstr "" #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" -msgstr "" +msgstr "Dozvole" #: frappe/core/doctype/doctype/doctype.py:1834 #: frappe/core/doctype/doctype/doctype.py:1844 msgid "Permissions Error" -msgstr "" +msgstr "Greška Dozvola" #: frappe/core/page/permission_manager/permission_manager_help.html:10 msgid "Permissions are automatically applied to Standard Reports and searches." -msgstr "" +msgstr "Dozvole se automatski primjenjuju na Standardne Izvještaje i pretrage." #: frappe/core/page/permission_manager/permission_manager_help.html:5 msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." -msgstr "" +msgstr "Dozvole se postavljaju za uloge i Tip Dokumenata (zvane DocTypes) postavljanjem prava kao što su čitanje, pisanje, kreiranje, brisanje, slanje, poništavanje, izmjena, izvještaj, uvoz, izvoz, ispisivanje, slanje e-pošte i postavljanje korisničkih dozvola." #: frappe/core/page/permission_manager/permission_manager_help.html:26 msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." -msgstr "" +msgstr "Dozvole na višim nivoima su dozvole na nivou polja. Sva polja imaju postavljen nivo dozvole i pravila definisana u tim dozvolama važe za polje. Ovo je korisno u slučaju da želite sakriti ili učiniti određeno polje samo za čitanje za određene uloge." #: frappe/core/page/permission_manager/permission_manager_help.html:24 msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." -msgstr "" +msgstr "Dozvole na nivou 0 su dozvole na nivou dokumenta, tj. primarne su za pristup dokumentu." #: frappe/core/page/permission_manager/permission_manager_help.html:6 msgid "Permissions get applied on Users based on what Roles they are assigned." -msgstr "" +msgstr "Dozvole se primjenjuju na korisnike na osnovu uloga koje su im dodijeljene." #. Name of a report #. Label of a Link in the Users Workspace #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json #: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" -msgstr "" +msgstr "Dozvoljeni Dokumenti za Korisnika" #. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow #. Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" -msgstr "" +msgstr "Dozvoljene Uloge" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Personal" -msgstr "" +msgstr "Lična" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" -msgstr "" +msgstr "Zahtjev Brisanja Ličnih Podataka" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Personal Data Deletion Step" -msgstr "" +msgstr "Korak Brisanja Ličnih Podataka" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "" +msgstr "Zahtjev Preuzimanje Ličnih Podataka" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' @@ -18821,39 +19028,39 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" -msgstr "" +msgstr "Telefon" #. Label of the phone_no (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Phone No." -msgstr "" +msgstr "Broj Telefona." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." -msgstr "" +msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" -msgstr "" +msgstr "Odaberi Kolone" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Pie" -msgstr "" +msgstr "Okrugli" #. Label of the pincode (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Pincode" -msgstr "" +msgstr "Mobilni Broj" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" -msgstr "" +msgstr "Roza" #. Label of the placeholder (Data) field in DocType 'DocField' #. Label of the placeholder (Data) field in DocType 'Custom Field' @@ -18862,129 +19069,129 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Placeholder" -msgstr "" +msgstr "Rezervisano" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Plain Text" -msgstr "" +msgstr "Obični Tekst" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Plant" -msgstr "" +msgstr "Pogon" #: frappe/email/doctype/email_account/email_account.py:544 msgid "Please Authorize OAuth for Email Account {0}" -msgstr "" +msgstr "Ovlasti OAuth za račun e-pošte {0}" #: frappe/email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" -msgstr "" +msgstr "Ovlastite OAuth za račun e-pošte {}" #: frappe/website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." -msgstr "" +msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili." #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "Please Install the ldap3 library via pip to use ldap functionality." -msgstr "" +msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" -msgstr "" +msgstr "Postavi Grafikon" #: frappe/core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" -msgstr "" +msgstr "Ažuriraj SMS Postavke" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 msgid "Please add a subject to your email" -msgstr "" +msgstr "Dodaj predmet e-pošti" #: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." -msgstr "" +msgstr "Dodaj relevantan komentar." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" -msgstr "" +msgstr "Zamoli administratora da potvrdi vašu registraciju" #: frappe/public/js/frappe/form/controls/select.js:101 msgid "Please attach a file first." -msgstr "" +msgstr "Priloži datoteku." #: frappe/printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." -msgstr "" +msgstr "Priloži datoteku slike da postavite HTML za Podnožje." #: frappe/printing/doctype/letter_head/letter_head.py:64 msgid "Please attach an image file to set HTML for Letter Head." -msgstr "" +msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje." #: frappe/core/doctype/package_import/package_import.py:39 msgid "Please attach the package" -msgstr "" +msgstr "Priloži Applikaciju" #: frappe/integrations/doctype/connected_app/connected_app.js:19 msgid "Please check OpenID Configuration URL" -msgstr "" +msgstr "Provjerite URL konfiguracije OpenID-a" #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" -msgstr "" +msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" #: frappe/model/base_document.py:951 msgid "Please check the value of \"Fetch From\" set for field {0}" -msgstr "" +msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" -msgstr "" +msgstr "Provjeri e-poštu za potvrdu" #: frappe/email/smtp.py:134 msgid "Please check your email login credentials." -msgstr "" +msgstr "Provjeri akreditive za prijavu putem e-pošte." #: frappe/twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." -msgstr "" +msgstr "Provjeri registrovanu adresu e-pošte za upute kako postupiti. Ne zatvarajte ovaj prozor jer ćete se morati vratiti na njega." #: frappe/desk/doctype/workspace/workspace.js:23 msgid "Please click Edit on the Workspace for best results" -msgstr "" +msgstr "Kliknite Uredi na radnom prostoru za najbolje rezultate" #: frappe/core/doctype/data_import/data_import.js:158 msgid "Please click on 'Export Errored Rows', fix the errors and import again." -msgstr "" +msgstr "Klikni na 'Izvezi Redove s Greškom', popravi greške i ponovo uvezi." #: frappe/twofactor.py:286 msgid "Please click on the following link and follow the instructions on the page. {0}" -msgstr "" +msgstr "Klikni na sljedeću vezu i slijedi upute na stranici. {0}" #: frappe/templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" -msgstr "" +msgstr "Klikni na sljedeću vezu da postavite novu lozinku" #: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." -msgstr "" +msgstr "Potvrdi akciju {0} ovog dokumenta." #: frappe/printing/page/print/print.js:618 msgid "Please contact your system manager to install correct version." -msgstr "" +msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju." #: frappe/desk/doctype/number_card/number_card.js:44 msgid "Please create Card first" -msgstr "" +msgstr "Kreiraj Numeričku Karticu" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" -msgstr "" +msgstr "Kreiraj Grafikon" #: frappe/desk/form/meta.py:190 msgid "Please delete the field from {0} or add the required doctype." -msgstr "" +msgstr "Izbriši polje iz {0} ili dodaj traženi dokument." #: frappe/core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." @@ -18992,236 +19199,232 @@ msgstr "Ne mijenjaj Naslove Predložaka." #: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" -msgstr "" +msgstr "Kopiraj ovo da izvršite promjene" #: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." -msgstr "" +msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" -msgstr "" +msgstr "Omogući iskačuće prozore" #: frappe/public/js/frappe/microtemplate.js:162 #: frappe/public/js/frappe/microtemplate.js:177 msgid "Please enable pop-ups in your browser" -msgstr "" +msgstr "Omogući iskačuće prozore u vašem pretraživaču" #: frappe/integrations/google_oauth.py:55 msgid "Please enable {} before continuing." -msgstr "" +msgstr "Omogući {} prije nego nastavite." #: frappe/utils/oauth.py:191 msgid "Please ensure that your profile has an email address" -msgstr "" +msgstr "Potvrdi da vaš profil ima adresu e-pošte" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" -msgstr "" +msgstr "Unesi URL Pristupnog Tokena" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" -msgstr "" +msgstr "Unesi URL Autorizacije" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" -msgstr "" +msgstr "Unesi Osnovni URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" -msgstr "" +msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mreže" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" -msgstr "" +msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama" #: frappe/integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" -msgstr "" +msgstr "Unesi URL Konfiguracije OpenID-a" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" -msgstr "" +msgstr "Unesi URL Preusmjeravanja" #: frappe/templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." -msgstr "" +msgstr "Unesite ispravnu adresu e-pošte." #: frappe/templates/includes/contact.js:15 msgid "Please enter both your email and message so that we can get back to you. Thanks!" -msgstr "" +msgstr "Unesi vašu e-poštu i poruku kako bismo vam mogli odgovoriti. Hvala!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" -msgstr "" +msgstr "Unesi Lozinku" #: frappe/public/js/frappe/desk.js:217 msgctxt "Email Account" msgid "Please enter the password for: {0}" -msgstr "" +msgstr "Unesi Lozinku za: {0}" #: frappe/core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" -msgstr "" +msgstr "Unesi važeće brojeve mobitela" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." -msgstr "" +msgstr "Unesi novu lozinku." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." -msgstr "" +msgstr "Unesi staru lozinku." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 msgid "Please find attached {0}: {1}" -msgstr "" +msgstr "Ppronađi priloženo {0}: {1}" #: frappe/templates/includes/comments/comments.py:31 msgid "Please login to post a comment." -msgstr "" +msgstr "Prijavi se da biste objavili komentar." #: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." -msgstr "" +msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." -msgstr "" +msgstr "Osvježi da dobijete najnoviji dokument." #: frappe/printing/page/print/print.js:535 msgid "Please remove the printer mapping in Printer Settings and try again." -msgstr "" +msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo." #: frappe/public/js/frappe/form/form.js:358 msgid "Please save before attaching." -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" +msgstr "Spremi prije prilaganja." #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" -msgstr "" +msgstr "Spremi dokument prije dodjele" #: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" -msgstr "" +msgstr "Spremi dokument prije uklanjanja dodjele" #: frappe/public/js/frappe/views/reports/report_view.js:1709 msgid "Please save the report first" -msgstr "" +msgstr "Prvo spremi izvještaj" #: frappe/website/doctype/web_template/web_template.js:22 msgid "Please save to edit the template." -msgstr "" +msgstr "Spremi da uredite šablon." #: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" -msgstr "" +msgstr "Odaberi DocType" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" -msgstr "" +msgstr "Odaberi Tip Entiteta" #: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" -msgstr "" +msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" -msgstr "" +msgstr "Odaberi X i Y polja" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." -msgstr "" +msgstr "Odaberi pozivni broj zemlje za polje {1}." #: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 msgid "Please select a file first." -msgstr "" +msgstr "Odaberi datoteku." #: frappe/utils/file_manager.py:50 msgid "Please select a file or url" -msgstr "" +msgstr "Odaberi datoteku ili url" #: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" -msgstr "" +msgstr "Odaberi važeću csv datoteku sa podacima" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" -msgstr "" +msgstr "Odaberi važeći filter datuma" #: frappe/core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" -msgstr "" +msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" -msgstr "" +msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" -msgstr "" +msgstr "Odaberi Prefiks" #: frappe/core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." -msgstr "" +msgstr "Odaberi Tip Dokumenta." #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Please select the LDAP Directory being used" -msgstr "" +msgstr "Odaberite LDAP mapu koja se koristi" #: frappe/website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" -msgstr "" +msgstr "Odaberi {0}" #: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" -msgstr "" +msgstr "Postavi adresu e-pošte" #: frappe/printing/page/print/print.js:549 msgid "Please set a printer mapping for this print format in the Printer Settings" -msgstr "" +msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" -msgstr "" +msgstr "Postavi filtere" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." -msgstr "" +msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja." #: frappe/model/naming.py:572 msgid "Please set the document name" -msgstr "" +msgstr "Molimo postavite naziv dokumenta" #: frappe/desk/doctype/dashboard/dashboard.py:120 msgid "Please set the following documents in this Dashboard as standard first." -msgstr "" +msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne." #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." -msgstr "" +msgstr "Postavi seriju imenovanja koja će se koristiti." #: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" -msgstr "" +msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Please setup a message first" -msgstr "" +msgstr "Postavi Poruku" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" -msgstr "" +msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte" #: frappe/email/doctype/email_account/email_account.py:432 msgid "Please setup default outgoing Email Account from Tools > Email Account" @@ -19229,69 +19432,74 @@ msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte" #: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" -msgstr "" +msgstr "Navedi" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" -msgstr "" +msgstr "Navedi važeći nadređeni DocType za {0}" #: frappe/email/doctype/notification/notification.py:154 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" -msgstr "" +msgstr "Navedi najmanje 10 minuta zbog ritma okidača raspoređivača" #: frappe/email/doctype/notification/notification.py:151 msgid "Please specify the minutes offset" -msgstr "" +msgstr "Molimo navedite pomak minuta" #: frappe/email/doctype/notification/notification.py:145 msgid "Please specify which date field must be checked" -msgstr "" +msgstr "Navedi koje polje datuma mora biti označeno" #: frappe/email/doctype/notification/notification.py:149 msgid "Please specify which datetime field must be checked" -msgstr "" +msgstr "Navedi koje polje datuma i vremena mora biti označeno" #: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which value field must be checked" -msgstr "" +msgstr "Navedi koje polje vrijednosti mora biti označeno" #: frappe/public/js/frappe/request.js:187 #: frappe/public/js/frappe/views/translation_manager.js:102 msgid "Please try again" -msgstr "" +msgstr "Pokušaj ponovo" #: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." -msgstr "" +msgstr "Ažuriraj {} prije nego nastavite." #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Please use a valid LDAP search filter" -msgstr "" +msgstr "Koristi važeći LDAP filter za pretraživanje" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Za preuzimanje sigurnosne kopije datoteka koristite sljedeće poveznice." #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." -msgstr "" +msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key." + +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "URI Pravila" #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Polling" -msgstr "" +msgstr "Polling" #. Label of the popover_element (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover Element" -msgstr "" +msgstr "Iskačući Prozor" #. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover or Modal Description" -msgstr "" +msgstr "Iskačići ili Modalni Opis" #. Label of the smtp_port (Data) field in DocType 'Email Account' #. Label of the incoming_port (Data) field in DocType 'Email Account' @@ -19302,33 +19510,33 @@ msgstr "" #: frappe/email/doctype/email_domain/email_domain.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "" +msgstr "Port" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Portal Menu" -msgstr "" +msgstr "Meni Portala" #. Name of a DocType #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Portal Menu Item" -msgstr "" +msgstr "Stavka Menija Portala" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/portal_settings/portal_settings.json #: frappe/website/workspace/website/website.json msgid "Portal Settings" -msgstr "" +msgstr "Postavke Portala" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" -msgstr "" +msgstr "Portret" #. Label of the position (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Position" -msgstr "" +msgstr "Pozicija" #: frappe/templates/discussions/comment_box.html:29 #: frappe/templates/discussions/reply_card.html:15 @@ -19336,34 +19544,38 @@ msgstr "" #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Post" -msgstr "" +msgstr "Objava" #: frappe/templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." -msgstr "" +msgstr "Objavi to ovdje, naši mentori će vam pomoći." #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Postal" -msgstr "" +msgstr "Pošte" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Postal Code" -msgstr "" +msgstr "Broj Pošte" #. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' #: frappe/desk/doctype/changelog_feed/changelog_feed.json msgid "Posting Timestamp" -msgstr "" +msgstr "Vremenska Oznaka" #: frappe/website/doctype/blog_post/blog_post.py:264 msgid "Posts by {0}" -msgstr "" +msgstr "Objave od {0}" #: frappe/website/doctype/blog_post/blog_post.py:256 msgid "Posts filed under {0}" -msgstr "" +msgstr "Objave zavedene pod {0}" + +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Potencijalno opasan sadržaj u nizu literala: {0}" #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' @@ -19374,29 +19586,29 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Precision" -msgstr "" +msgstr "Preciznost" #: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" -msgstr "" +msgstr "Preciznost bi trebala biti između 1 i 6" #: frappe/utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." -msgstr "" +msgstr "Predvidljive zamjene poput '@' umjesto 'a' ne pomažu mnogo." #: frappe/desk/page/setup_wizard/install_fixtures.py:34 msgid "Prefer not to say" -msgstr "" +msgstr "Radije neću reći" #. Label of the is_primary_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Billing Address" -msgstr "" +msgstr "Željena Adresa za Fakturu" #. Label of the is_shipping_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Shipping Address" -msgstr "" +msgstr "Željena Adresa za Dostavu" #. Label of the prefix (Data) field in DocType 'Document Naming Rule' #. Label of the prefix (Autocomplete) field in DocType 'Document Naming @@ -19404,7 +19616,7 @@ msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Prefix" -msgstr "" +msgstr "Prefiks" #. Name of a DocType #. Label of the prepared_report (Check) field in DocType 'Report' @@ -19412,7 +19624,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 msgid "Prepared Report" -msgstr "" +msgstr "Pripremljen Izvještaj" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json @@ -19422,27 +19634,27 @@ msgstr "Analitika Pripremljenog Izvješća" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" -msgstr "" +msgstr "Korisnik Pripremljenog Izvještaja" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" -msgstr "" +msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" -msgstr "" +msgstr "Priprema Izvještaja" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" -msgstr "" +msgstr "Priloži šablon poruci e-pošte" #: frappe/public/js/frappe/ui/keyboard.js:139 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "" +msgstr "Pritisni Alt taster da pokrenete dodatne prečice u Meniju i Bočnoj Traci" #: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" -msgstr "" +msgstr "Pritisni Enter da spremite" #. Label of the section_import_preview (Section Break) field in DocType 'Data #. Import' @@ -19453,8 +19665,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19462,46 +19672,46 @@ msgstr "" #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 #: frappe/public/js/frappe/ui/capture.js:236 msgid "Preview" -msgstr "" +msgstr "Pregled" #. Label of the preview_html (HTML) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Preview HTML" -msgstr "" +msgstr "Pregled HTML" #. Label of the preview_image (Attach Image) field in DocType 'Blog Category' #. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Preview Image" -msgstr "" +msgstr "Pregled Slike" #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" -msgstr "" +msgstr "Pregled Poruke" #: frappe/public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" -msgstr "" +msgstr "Način Pregleda" #. Label of the series_preview (Text) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" -msgstr "" +msgstr "Pregled generisanih imena" #: frappe/public/js/frappe/views/render_preview.js:19 msgid "Preview on {0}" -msgstr "" +msgstr "Pregled {0}" #: frappe/public/js/print_format_builder/Preview.vue:103 msgid "Preview type" -msgstr "" +msgstr "Pregled Tip" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" -msgstr "" +msgstr "Pregled:" #: frappe/public/js/frappe/form/form_tour.js:15 #: frappe/public/js/frappe/web_form/web_form.js:95 @@ -19509,56 +19719,56 @@ msgstr "" #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" -msgstr "" +msgstr "Prethodna" #: frappe/public/js/frappe/ui/slides.js:351 msgctxt "Go to previous slide" msgid "Previous" -msgstr "" +msgstr "Prethodna" #. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Previous Hash" -msgstr "" +msgstr "Prethodni Hash" #: frappe/public/js/frappe/form/form.js:2214 msgid "Previous Submission" -msgstr "" +msgstr "Prethodno Podnošenje" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Primary" -msgstr "" +msgstr "Primarni" #: frappe/public/js/frappe/form/templates/address_list.html:27 msgid "Primary Address" -msgstr "" +msgstr "Primarna Adresa" #. Label of the primary_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Primary Color" -msgstr "" +msgstr "Primarna Boja" #: frappe/public/js/frappe/form/templates/contact_list.html:23 msgid "Primary Contact" -msgstr "" +msgstr "Primarni Kontakt" #: frappe/public/js/frappe/form/templates/contact_list.html:69 msgid "Primary Email" -msgstr "" +msgstr "Primarna e-pošta" #: frappe/public/js/frappe/form/templates/contact_list.html:49 msgid "Primary Mobile" -msgstr "" +msgstr "Primarni Mobitel" #: frappe/public/js/frappe/form/templates/contact_list.html:41 msgid "Primary Phone" -msgstr "" +msgstr "Primarni Telefon" #: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 #: frappe/database/sqlite/schema.py:141 msgid "Primary key of doctype {0} can not be changed as there are existing values." -msgstr "" +msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje postojeće vrijednosti." #. Label of the print (Check) field in DocType 'Custom DocPerm' #. Label of the print (Check) field in DocType 'DocPerm' @@ -19570,23 +19780,23 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" -msgstr "" +msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" -msgstr "" +msgstr "Ispiši" #: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" -msgstr "" +msgstr "Ispiši Dokumente" #. Label of the print_format (Link) field in DocType 'Auto Repeat' #. Label of a Link in the Build Workspace @@ -19602,7 +19812,7 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" -msgstr "" +msgstr "Format za ispisivanje" #. Label of a Link in the Tools Workspace #. Label of the print_format_builder (Check) field in DocType 'Print Format' @@ -19612,41 +19822,50 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:67 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" -msgstr "" +msgstr "Konstruktor Formata Ispisa" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Print Format Builder (New)" -msgstr "" +msgstr "Konstruktor Formata Ispisa (Novo)" #. Label of the print_format_builder_beta (Check) field in DocType 'Print #. Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Builder Beta" -msgstr "" +msgstr "Konstruktor Formata Ispisa Beta" #: frappe/utils/pdf.py:63 msgid "Print Format Error" -msgstr "" +msgstr "Greška u Ispis Formatu" #. Name of a DocType #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Print Format Field Template" -msgstr "" +msgstr "Šablon Polja Ispis Formata" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Format Ispisa za" #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" -msgstr "" +msgstr "Pomoć Ispis Formata" #. Label of the print_format_type (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Type" -msgstr "" +msgstr "Tip Ispis Formata" + +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "Format Ispisa nije pronađen" #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" -msgstr "" +msgstr "Ispis Format {0} je onemogućen" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -19663,7 +19882,7 @@ msgstr "Naslov Ispisa" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide" -msgstr "" +msgstr "Sakrij" #. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' #. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' @@ -19673,21 +19892,21 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "" +msgstr "Sakrij ispis ako nema vrijednost" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" -msgstr "" +msgstr "Jezik Ispisa" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" -msgstr "" +msgstr "Ispis Poslan na pisač!" #. Label of the server_printer (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Server" -msgstr "" +msgstr "Ispisni Server" #. Label of a Link in the Tools Workspace #. Label of the column_break_25 (Section Break) field in DocType 'Notification' @@ -19697,10 +19916,10 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" -msgstr "" +msgstr "Postavke Ispisa" #. Label of the print_style_section (Section Break) field in DocType 'Print #. Settings' @@ -19709,17 +19928,17 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.json msgid "Print Style" -msgstr "" +msgstr "Ispisni Stil" #. Label of the print_style_name (Data) field in DocType 'Print Style' #: frappe/printing/doctype/print_style/print_style.json msgid "Print Style Name" -msgstr "" +msgstr "Naziv Ispisnog Stila" #. Label of the print_style_preview (HTML) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Style Preview" -msgstr "" +msgstr "Pregled Ispisnog Stila" #. Label of the print_width (Data) field in DocType 'DocField' #. Label of the print_width (Data) field in DocType 'Custom Field' @@ -19728,53 +19947,53 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width" -msgstr "" +msgstr "Ispisna Širina" #. Description of the 'Print Width' (Data) field in DocType 'Customize Form #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width of the field, if the field is a column in a table" -msgstr "" +msgstr "Ispis Širine polja, ako je polje kolona u tabeli" #: frappe/public/js/frappe/form/form.js:170 msgid "Print document" -msgstr "" +msgstr "Ispiši Dokument" #. Label of the with_letterhead (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "" +msgstr "Ispiši sa Zaglavljem" #: frappe/printing/page/print/print.js:830 msgid "Printer" -msgstr "" +msgstr "Pisač" #: frappe/printing/page/print/print.js:807 msgid "Printer Mapping" -msgstr "" +msgstr "Mapiranje Pisača" #. Label of the printer_name (Select) field in DocType 'Network Printer #. Settings' #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Printer Name" -msgstr "" +msgstr "Naziv Pisača" #: frappe/printing/page/print/print.js:799 msgid "Printer Settings" -msgstr "" +msgstr "Postavke Pisača" #: frappe/printing/page/print/print.js:548 msgid "Printer mapping not set." -msgstr "" +msgstr "Mapiranje pisača nije postavljeno." #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Printing" -msgstr "" +msgstr "Ispisivanje" #: frappe/utils/print_format.py:291 msgid "Printing failed" -msgstr "" +msgstr "Neuspješno Ispisivanje" #. Label of the priority (Int) field in DocType 'Assignment Rule' #. Label of the priority (Int) field in DocType 'Document Naming Rule' @@ -19788,7 +20007,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:211 #: frappe/website/doctype/web_page/web_page.json msgid "Priority" -msgstr "" +msgstr "Prioritet" #. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' @@ -19799,52 +20018,56 @@ msgstr "" #: frappe/desk/doctype/note/note_list.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" -msgstr "" +msgstr "Privatno" #. Label of the private_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Private Files (MB)" -msgstr "" +msgstr "Privatne datoteke (MB)" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Sigurnosna Kopija Privatnih Datoteka:" #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "" +msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name }} da pošaljete referencu dokumenta" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" -msgstr "" +msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" -msgstr "" +msgstr "Svejedno Nastavi" #: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" -msgstr "" +msgstr "Obrađuje se" #: frappe/email/doctype/email_queue/email_queue_list.js:52 msgid "Processing..." -msgstr "" +msgstr "Obrada u toku..." #: frappe/desk/page/setup_wizard/install_fixtures.py:51 msgid "Prof" -msgstr "" +msgstr "Prof" #. Group in User's connections #: frappe/core/doctype/user/user.json msgid "Profile" -msgstr "" +msgstr "Profil" #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" -msgstr "" +msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" -msgstr "" +msgstr "Projekat" #. Label of the property (Data) field in DocType 'Property Setter' #: frappe/core/doctype/version/version_view.html:12 @@ -19852,7 +20075,7 @@ msgstr "" #: frappe/core/doctype/version/version_view.html:74 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" -msgstr "" +msgstr "Svojstvo" #. Label of the property_depends_on_section (Section Break) field in DocType #. 'Customize Form Field' @@ -19861,22 +20084,22 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Property Depends On" -msgstr "" +msgstr "Svojstvo Zavisi Od" #. Name of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter" -msgstr "" +msgstr "Postavljač Svojstva" #. Description of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter overrides a standard DocType or Field property" -msgstr "" +msgstr "Postavljač Svojstva nadjačava standardno svojstvo DocType ili Polja" #. Label of the property_type (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Type" -msgstr "" +msgstr "Tip Svojstva" #. Label of the protect_attached_files (Check) field in DocType 'DocType' #. Label of the protect_attached_files (Check) field in DocType 'Customize @@ -19884,24 +20107,24 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Protect Attached Files" -msgstr "" +msgstr "Zaštiti Priložene Datoteke" #: frappe/core/doctype/file/file.py:501 msgid "Protected File" -msgstr "" +msgstr "Zaštićena Datoteka" #. Description of the 'Allowed File Extensions' (Small Text) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" -msgstr "" +msgstr "Navedi popis dopuštenih ekstenzija datoteka za učitavanje datoteka. Svaki red treba sadržavati jedan dopušteni tip datoteke. Ako nije postavljeno, dopuštene su sve ekstenzije datoteka. Primjer:
CSV
JPG
PNG" #. Label of the provider (Data) field in DocType 'User Social Login' #. Label of the provider (Select) field in DocType 'Geolocation Settings' #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Provider" -msgstr "" +msgstr "Dostavljač" #. Label of the provider_name (Data) field in DocType 'Connected App' #. Label of the provider_name (Data) field in DocType 'Social Login Key' @@ -19910,7 +20133,7 @@ msgstr "" #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Provider Name" -msgstr "" +msgstr "Naziv Dostavljača Servisa" #. Option for the 'Event Type' (Select) field in DocType 'Event' #. Label of the public (Check) field in DocType 'Note' @@ -19921,13 +20144,17 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:78 #: frappe/public/js/frappe/views/workspace/workspace.js:440 msgid "Public" -msgstr "" +msgstr "Javno" #. Label of the public_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Public Files (MB)" -msgstr "" +msgstr "Javne Datoteke (MB)" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Sigurnosna Kopija Javnih Datoteka:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json @@ -19935,16 +20162,9 @@ msgstr "" #: frappe/website/doctype/blog_post/blog_post.js:36 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" -msgstr "" - -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" +msgstr "Objavi" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19952,7 +20172,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19964,121 +20183,121 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" -msgstr "" +msgstr "Objavljeno" #. Label of the published_on (Date) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Published On" -msgstr "" +msgstr "Objavljeno" #: frappe/website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" -msgstr "" +msgstr "Objavljeno" #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" -msgstr "" +msgstr "Datumi Objavljivanja" #: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" -msgstr "" +msgstr "Preuzmi e-poštu" #. Label of the pull_from_google_calendar (Check) field in DocType 'Google #. Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Pull from Google Calendar" -msgstr "" +msgstr "Preuzmi iz Google Kalendara" #. Label of the pull_from_google_contacts (Check) field in DocType 'Google #. Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Pull from Google Contacts" -msgstr "" +msgstr "Preuzmi iz Google kontakata" #. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Pulled from Google Calendar" -msgstr "" +msgstr "Preuzeto iz Google Kalendara" #. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Pulled from Google Contacts" -msgstr "" +msgstr "Preuzeto iz Google Kontakata" #: frappe/email/doctype/email_account/email_account.js:209 msgid "Pulling emails..." -msgstr "" +msgstr "Preuzma se e-pošta..." #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Manager" -msgstr "" +msgstr "Upravitelj Nabave" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "" +msgstr "Glavni Upravitelj Nabave" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Purchase User" -msgstr "" +msgstr "Korisnik Nabave" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Purple" -msgstr "" +msgstr "Ljubičasta" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "" +msgstr "Postavke Guranih Obavještenja" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notifications" -msgstr "" +msgstr "Gurana Obavještenja" #. Label of the push_to_google_calendar (Check) field in DocType 'Google #. Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Push to Google Calendar" -msgstr "" +msgstr "Gurni u Google Kalendar" #. Label of the push_to_google_contacts (Check) field in DocType 'Google #. Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Push to Google Contacts" -msgstr "" +msgstr "Gurni u Google Kontakte" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 msgid "Put on Hold" -msgstr "" +msgstr "Stavi na Čekanje" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Python" -msgstr "" +msgstr "Python" #: frappe/www/qrcode.html:3 msgid "QR Code" -msgstr "" +msgstr "QR Kod" #: frappe/www/qrcode.html:6 msgid "QR Code for Login Verification" -msgstr "" +msgstr "QR Kod za Provjeru Prijave" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " -msgstr "" +msgstr "QZ Tray neuspješan: " #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20097,46 +20316,46 @@ msgstr "Tromjesečno" #: frappe/core/doctype/recorder_query/recorder_query.json #: frappe/core/doctype/report/report.json msgid "Query" -msgstr "" +msgstr "Upit" #. Label of the section_break_6 (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Query / Script" -msgstr "" +msgstr "Upit / Skripta" #. Label of the query_options (Small Text) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Query Options" -msgstr "" +msgstr "Opcije Upita" #. Label of the query_parameters (Table) field in DocType 'Connected App' #. Name of a DocType #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/query_parameters/query_parameters.json msgid "Query Parameters" -msgstr "" +msgstr "Parametri Upita" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json #: frappe/public/js/frappe/views/reports/query_report.js:17 msgid "Query Report" -msgstr "" +msgstr "Izvještaj Upita" #: frappe/core/doctype/recorder/recorder.py:188 msgid "Query analysis complete. Check suggested indexes." -msgstr "" +msgstr "Analiza Upita završena. Provjeri predložene indekse." #: frappe/utils/safe_exec.py:495 msgid "Query must be of SELECT or read-only WITH type." -msgstr "" +msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH." #. Label of the queue (Select) field in DocType 'RQ Job' #. Label of the queue (Data) field in DocType 'System Health Report Queue' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Queue" -msgstr "" +msgstr "Red" #: frappe/utils/background_jobs.py:731 msgid "Queue Overloaded" @@ -20145,145 +20364,136 @@ msgstr "Red Čekanja Preopterećen" #. Label of the queue_status (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Queue Status" -msgstr "" +msgstr "Status Reda" #. Label of the queue_type (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue Type(s)" -msgstr "" +msgstr "Tip Reda" #. Label of the queue_in_background (Check) field in DocType 'DocType' #. Label of the queue_in_background (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" -msgstr "" +msgstr "Red u pozadini (BETA)" #: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" -msgstr "" +msgstr "Red bi trebao biti jedan od {0}" #. Label of the queue (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue(s)" -msgstr "" +msgstr "Red(ovi)" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #. Option for the 'Status' (Select) field in DocType 'Submission Queue' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" -msgstr "" +msgstr "U Redu" #. Label of the queued_at (Datetime) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued At" -msgstr "" +msgstr "U Redu" #. Label of the queued_by (Data) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" -msgstr "" +msgstr "U Redu Od" #: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." -msgstr "" +msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}." #: frappe/desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" +msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje" #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" +msgstr "Redovi" #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" -msgstr "" +msgstr "U redu za Podnošenje {0}" #. Label of the quick_entry (Check) field in DocType 'DocType' #. Label of the quick_entry (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Quick Entry" -msgstr "" +msgstr "Brzi Unos" #: frappe/core/page/permission_manager/permission_manager_help.html:3 msgid "Quick Help for Setting Permissions" -msgstr "" +msgstr "Brza Pomoć Postavljanje Dozvola" #. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick #. List' #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" -msgstr "" +msgstr "Filter Brze Liste" #. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' #. Label of the quick_lists (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Quick Lists" -msgstr "" +msgstr "Brze Liste" #: frappe/public/js/frappe/views/reports/report_utils.js:304 msgid "Quoting must be between 0 and 3" -msgstr "" +msgstr "Ponuda mora biti između 0 i 3" #. Label of the raw_information_log_section (Section Break) field in DocType #. 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "RAW Information Log" -msgstr "" +msgstr "RAW dnevnik informacija" #. Name of a DocType #: frappe/core/doctype/rq_job/rq_job.json msgid "RQ Job" -msgstr "" +msgstr "RQ Posao" #. Name of a DocType #: frappe/core/doctype/rq_worker/rq_worker.json msgid "RQ Worker" -msgstr "" +msgstr "RQ Radnik" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Random" -msgstr "" +msgstr "Nasumično" #: frappe/website/report/website_analytics/website_analytics.js:20 msgid "Range" -msgstr "" +msgstr "Raspon" #. Label of the rate_limiting_section (Section Break) field in DocType 'Server #. Script' #: frappe/core/doctype/server_script/server_script.json msgid "Rate Limiting" -msgstr "" +msgstr "Ograniči" #. Label of the section_break_12 (Section Break) field in DocType 'Blog #. Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Rate Limits" -msgstr "" +msgstr "Ograniči" #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rate limit for email link login" -msgstr "" +msgstr "Ograničenje stope za prijavu putem e-pošte" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -20294,18 +20504,18 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Rating" -msgstr "" +msgstr "Ocjena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" -msgstr "" +msgstr "Direktne Naredbe" #. Label of the raw (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Raw Email" -msgstr "" +msgstr "Neobrađena e-pošta" #. Label of the raw_printing (Check) field in DocType 'Print Format' #. Label of the raw_printing_section (Section Break) field in DocType 'Print @@ -20313,29 +20523,29 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_settings/print_settings.json msgid "Raw Printing" -msgstr "" +msgstr "Direktno Ispisivanje" #: frappe/printing/page/print/print.js:165 msgid "Raw Printing Setting" -msgstr "" +msgstr "Postavka Direktnog Ispisivanja" #: frappe/public/js/frappe/form/templates/print_layout.html:37 msgid "Raw Printing Settings" -msgstr "" +msgstr "Postavka Direktnog Ispisivanja" #: frappe/desk/doctype/console_log/console_log.js:6 msgid "Re-Run in Console" -msgstr "" +msgstr "Ponovo Pokreni u Konzoli" #: frappe/email/doctype/email_account/email_account.py:726 msgid "Re:" -msgstr "" +msgstr "Od:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" -msgstr "" +msgstr "Od: {0}" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Label of the read (Check) field in DocType 'Custom DocPerm' @@ -20352,7 +20562,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" -msgstr "" +msgstr "Čitaj" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the read_only (Check) field in DocType 'DocField' @@ -20367,7 +20577,7 @@ msgstr "" #: frappe/public/js/form_builder/form_builder.bundle.js:83 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only" -msgstr "" +msgstr "Samo za čitanje" #. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' #. Label of the read_only_depends_on (Code) field in DocType 'Customize Form @@ -20377,115 +20587,115 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only Depends On" -msgstr "" +msgstr "Samo za Čitanje zavisi o" #. Label of the read_only_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" -msgstr "" +msgstr "Samo za Čitanje zavisi o (JS)" #: frappe/public/js/frappe/ui/toolbar/navbar.html:16 #: frappe/templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" -msgstr "" +msgstr "Samo za čitanje Način" #. Label of the read_time (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Read Time" -msgstr "" +msgstr "Vrijeme Čitanja" #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" -msgstr "" +msgstr "Primatelj Pročitao" #. Label of the read_by_recipient_on (Datetime) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient On" -msgstr "" +msgstr "Čitanje Primatelja Omogućeno" #: frappe/desk/doctype/note/note.js:10 msgid "Read mode" -msgstr "" +msgstr "Način Čitanja" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" -msgstr "" +msgstr "Pročitaj dokumentaciju da biste saznali više" #. Label of the readme (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Readme" -msgstr "" +msgstr "Pročitaj" #. Label of the realtime_socketio_section (Section Break) field in DocType #. 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Realtime (SocketIO)" -msgstr "" +msgstr "Realno Vrijeme (SocketIO)" #. Label of the reason (Long Text) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Reason" -msgstr "" +msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" -msgstr "" +msgstr "Obnovi" #: frappe/public/js/frappe/views/treeview.js:509 msgid "Rebuild Tree" -msgstr "" +msgstr "Obnovi Stablo" #: frappe/utils/nestedset.py:177 msgid "Rebuilding of tree is not supported for {}" -msgstr "" +msgstr "Obnova Stabla nije podržana za {}" #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Received" -msgstr "" +msgstr "Primljeno" #: frappe/integrations/doctype/token_cache/token_cache.py:49 msgid "Received an invalid token type." -msgstr "" +msgstr "Primljen je nevažeći tip tokena." #. Label of the receiver_by_document_field (Select) field in DocType #. 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Document Field" -msgstr "" +msgstr "Primljeno prema Polju Dokumenta" #. Label of the receiver_by_role (Link) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Role" -msgstr "" +msgstr "Primljeno po Ulozi" #. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Receiver Parameter" -msgstr "" +msgstr "Parametar prijemnika" #: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." -msgstr "" +msgstr "Lako je pogoditi posljednje godine." #: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" -msgstr "" +msgstr "Skorašnji" #. Label of the recipients (Table) field in DocType 'Email Queue' #. Label of the recipient (Data) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Recipient" -msgstr "" +msgstr "Primatelj" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" -msgstr "" +msgstr "Primatelj Odjavljen" #. Label of the recipients (Small Text) field in DocType 'Auto Repeat' #. Label of the column_break_5 (Section Break) field in DocType 'Notification' @@ -20493,105 +20703,105 @@ msgstr "" #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/email/doctype/notification/notification.json msgid "Recipients" -msgstr "" +msgstr "Primatelji" #. Name of a DocType #: frappe/core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "" +msgstr "Snimač" #. Name of a DocType #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" -msgstr "" +msgstr "Upit Snimača" #. Name of a DocType #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json msgid "Recorder Suggested Index" -msgstr "" +msgstr "Predloženi Indeks Snimača" #: frappe/core/doctype/user_permission/user_permission_help.html:2 msgid "Records for following doctypes will be filtered" -msgstr "" +msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani" #: frappe/core/doctype/doctype/doctype.py:1608 msgid "Recursive Fetch From" -msgstr "" +msgstr "Rekurzivno Preuzimanje Iz" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Red" -msgstr "" +msgstr "Crvena" #. Label of the redirect_http_status (Select) field in DocType 'Website Route #. Redirect' #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Redirect HTTP Status" -msgstr "" +msgstr "Preusmjeri HTTP Status" #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" -msgstr "" +msgstr "Preusmjeri URI" #. Label of the redirect_uri_bound_to_authorization_code (Data) field in #. DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Redirect URI Bound To Auth Code" -msgstr "" +msgstr "Preusmjeri URI vezan za Kod Autentifikacije" #. Label of the redirect_uris (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "" +msgstr "Preusmjeri URI" #. Label of the redirect_url (Small Text) field in DocType 'User' #. Label of the redirect_url (Data) field in DocType 'Social Login Key' #: frappe/core/doctype/user/user.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "" +msgstr "URL Preusmjeravanja" #. Description of the 'Default App' (Select) field in DocType 'System Settings' #. Description of the 'Default App' (Select) field in DocType 'User' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json msgid "Redirect to the selected app after login" -msgstr "" +msgstr "Preusmjeri na odabranu aplikaciju nakon prijave" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." -msgstr "" +msgstr "Preusmjeri na ovaj URL nakon uspješne potvrde." #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" -msgstr "" +msgstr "Preusmjeravanja" #: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" -msgstr "" +msgstr "Redis server ne radi. Kontaktiraj Administratora/Tehničku podršku" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" -msgstr "" +msgstr "Ponovi" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" -msgstr "" +msgstr "Ponovi posljednju radnju" #. Label of the ref_doctype (Link) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "" +msgstr "Referentni DocType" #: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." -msgstr "" +msgstr "Referentni Doctype i Naziv Nadzorne Table ne mogu se koristiti istovremeno." #. Label of the linked_with (Section Break) field in DocType 'Address' #. Label of the contact_details (Section Break) field in DocType 'Contact' @@ -20613,33 +20823,33 @@ msgstr "" #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/public/js/frappe/views/interaction.js:54 msgid "Reference" -msgstr "" +msgstr "Referenca" #. Label of the date_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Reference Date" -msgstr "" +msgstr "Referentni Datum" #. Label of the datetime_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Reference Datetime" -msgstr "" +msgstr "Referentni Datum i Vrijeme" #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" -msgstr "" +msgstr "Referentni Naziv Dokumenta" #. Label of the reference_doctype (Link) field in DocType 'Error Log' #. Label of the ref_doctype (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "" +msgstr "Referentni DocType" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" -msgstr "" +msgstr "Referentni DocType i Referentni naziv su obavezni" #. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' #. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion @@ -20647,7 +20857,7 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Docname" -msgstr "" +msgstr "Referentni naziv dokumenta" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' @@ -20657,7 +20867,7 @@ msgstr "" #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" -msgstr "" +msgstr "Referentni Doctype" #. Label of the reference_document (Dynamic Link) field in DocType 'Auto #. Repeat' @@ -20673,7 +20883,7 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Reference Document" -msgstr "" +msgstr "Referentni Dokument" #. Label of the reference_docname (Dynamic Link) field in DocType 'Document #. Share Key' @@ -20682,7 +20892,7 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Reference Document Name" -msgstr "" +msgstr "Referentni Dokument Naziv" #. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' #. Label of the reference_doctype (Link) field in DocType 'Activity Log' @@ -20725,7 +20935,7 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Document Type" -msgstr "" +msgstr "Referentni Tip Dokumenta" #. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the reference_name (Dynamic Link) field in DocType 'Comment' @@ -20751,7 +20961,7 @@ msgstr "" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Name" -msgstr "" +msgstr "Referentni Naziv" #. Label of the reference_owner (Read Only) field in DocType 'Activity Log' #. Label of the reference_owner (Data) field in DocType 'Comment' @@ -20760,7 +20970,7 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/core/doctype/communication/communication.json msgid "Reference Owner" -msgstr "" +msgstr "Referentni Vlasnik" #. Label of the reference_report (Data) field in DocType 'Report' #. Label of the reference_report (Link) field in DocType 'Onboarding Step' @@ -20769,51 +20979,51 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Reference Report" -msgstr "" +msgstr "Referentni izvještaj" #. Label of the reference_type (Link) field in DocType 'Permission Log' #. Label of the reference_type (Link) field in DocType 'ToDo' #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/todo/todo.json msgid "Reference Type" -msgstr "" +msgstr "Referentni Tip" #. Label of the reference_name (Dynamic Link) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json msgid "Reference name" -msgstr "" +msgstr "Referentni Naziv" #: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" -msgstr "" +msgstr "Referenca: {0} {1}" #. Label of the referrer (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:37 msgid "Referrer" -msgstr "" +msgstr "Preporučitelj" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" -msgstr "" +msgstr "Osvježi" #: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" -msgstr "" +msgstr "Osvježi Sve" #. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Refresh Google Sheet" -msgstr "" +msgstr "Osvježite Google Sheet" #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' @@ -20824,83 +21034,83 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Refresh Token" -msgstr "" +msgstr "Osvježi Token" #: frappe/public/js/frappe/list/list_view.js:531 msgctxt "Document count in list view" msgid "Refreshing" -msgstr "" +msgstr "Osvježava se" #: frappe/core/doctype/system_settings/system_settings.js:57 #: frappe/core/doctype/user/user.js:368 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." -msgstr "" +msgstr "Osvježavanje u toku..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" -msgstr "" +msgstr "Registrovan, ali onemogućen" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/translation/translation.json msgid "Rejected" -msgstr "" +msgstr "Odbijeno" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 msgid "Relay Server URL missing" -msgstr "" +msgstr "Nedostaje URL Relejnog Servera" #. Label of the section_break_qgjr (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Relay Settings" -msgstr "" +msgstr "Postavke Releja" #. Group in Package's connections #: frappe/core/doctype/package/package.json msgid "Release" -msgstr "" +msgstr "Izdanje" #. Label of the release_notes (Markdown Editor) field in DocType 'Package #. Release' #: frappe/core/doctype/package_release/package_release.json msgid "Release Notes" -msgstr "" +msgstr "Napomena Izdanja" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 msgid "Relink" -msgstr "" +msgstr "Poveži ponovo" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "" +msgstr "Ponovo poveži Konverzaciju" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Relinked" -msgstr "" +msgstr "Ponovno povezano" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" -msgstr "" +msgstr "Ponovo Učitaj" #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Reload File" -msgstr "" +msgstr "Ponovo Učitaj Datoteku" #: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" -msgstr "" +msgstr "Ponovno Učitaj Listu" #: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" -msgstr "" +msgstr "Ponovno Učitaj Izvještaj" #. Label of the remember_last_selected_value (Check) field in DocType #. 'DocField' @@ -20909,205 +21119,205 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "" +msgstr "Zapamti Posljednju Odabranu Vrijednost" #. Label of the remind_at (Datetime) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json #: frappe/public/js/frappe/form/reminders.js:33 msgid "Remind At" -msgstr "" +msgstr "Podsjeti" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" -msgstr "" +msgstr "Podsjeti Me" #: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" -msgstr "" +msgstr "Podsjeti me za" #. Name of a DocType #: frappe/automation/doctype/reminder/reminder.json msgid "Reminder" -msgstr "" +msgstr "Podsjetnik" #: frappe/automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." -msgstr "" +msgstr "Podsjetnik se ne može kreirati u prošlosti." #: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" -msgstr "" +msgstr "Podsjetnik postavljen na {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:14 #: frappe/public/js/frappe/ui/filters/edit_filter.html:4 #: frappe/public/js/frappe/ui/group_by/group_by.html:4 msgid "Remove" -msgstr "" +msgstr "Ukloni" #: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" -msgstr "" +msgstr "Ukloni neuspjele poslove" #: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" -msgstr "" +msgstr "Ukloni Polje" #: frappe/printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" -msgstr "" +msgstr "Ukloni Sekciju" #: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "" +msgstr "Ukloni sve prilagodbe?" #: frappe/public/js/form_builder/components/Section.vue:286 msgid "Remove all fields in the column" -msgstr "" +msgstr "Ukloni sva polja u koloni" #: frappe/public/js/form_builder/components/Section.vue:278 #: frappe/public/js/frappe/utils/datatable.js:9 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 msgid "Remove column" -msgstr "" +msgstr "Ukloni kolonu" #: frappe/public/js/form_builder/components/Field.vue:260 msgid "Remove field" -msgstr "" +msgstr "Ukloni polje" #: frappe/public/js/form_builder/components/Section.vue:279 msgid "Remove last column" -msgstr "" +msgstr "Ukloni posljednju kolonu" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 msgid "Remove page break" -msgstr "" +msgstr "Ukloni prijelom stranice" #: frappe/public/js/form_builder/components/Section.vue:266 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 msgid "Remove section" -msgstr "" +msgstr "Ukloni sekciju" #: frappe/public/js/form_builder/components/Tabs.vue:140 msgid "Remove tab" -msgstr "" +msgstr "Ukloni karticu" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Removed" -msgstr "" +msgstr "Uklonjeno" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" -msgstr "" +msgstr "Preimenuj" #: frappe/custom/doctype/custom_field/custom_field.js:116 #: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" -msgstr "" +msgstr "Preimenuj naziv polja" #: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" -msgstr "" +msgstr "Preimenuj {0}" #: frappe/core/doctype/doctype/doctype.py:698 msgid "Renamed files and replaced code in controllers, please check!" -msgstr "" +msgstr "Preimenovane datoteke i zamijenjen kod u kontrolerima, provjerite!" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 msgid "Render labels to the left and values to the right in this section" -msgstr "" +msgstr "Prikaži oznake lijevo i vrijednosti desno u ovom odjeljku" #: frappe/core/doctype/communication/communication.js:43 #: frappe/desk/doctype/todo/todo.js:36 msgid "Reopen" -msgstr "" +msgstr "Ponovo otvori" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" -msgstr "" +msgstr "Ponovi" #. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Repeat Header and Footer" -msgstr "" +msgstr "Ponovi Zaglavlje i Podnožje" #. Label of the repeat_on (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat On" -msgstr "" +msgstr "Ponovi" #. Label of the repeat_till (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat Till" -msgstr "" +msgstr "Ponavljaj Do" #. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Day" -msgstr "" +msgstr "Ponovi Dnevno" #. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" -msgstr "" +msgstr "Dani Ponavljanja" #. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Last Day of the Month" -msgstr "" +msgstr "Ponovi Posljednjeg Dana u Mjesecu" #. Label of the repeat_this_event (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat this Event" -msgstr "" +msgstr "Ponovi ovaj Događaj" #: frappe/utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" -msgstr "" +msgstr "Ponavljanja poput \"aaa\" je lako pogoditi" #: frappe/utils/password_strength.py:105 msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" -msgstr "" +msgstr "Ponavljanja poput \"abcabcabc\" samo su malo teža za pogoditi od \"abc\"" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 msgid "Repeats {0}" -msgstr "" +msgstr "Ponavlja se {0}" #: frappe/core/doctype/role_replication/role_replication.js:7 #: frappe/core/doctype/role_replication/role_replication.js:14 msgid "Replicate" -msgstr "" +msgstr "Repliciraj" #: frappe/core/doctype/role_replication/role_replication.js:8 msgid "Replicating..." -msgstr "" +msgstr "Replicira se..." #: frappe/core/doctype/role_replication/role_replication.js:13 msgid "Replication completed." -msgstr "" +msgstr "Replikacija je završena." #. Option for the 'Status' (Select) field in DocType 'Contact' #. Option for the 'Status' (Select) field in DocType 'Communication' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.json msgid "Replied" -msgstr "" +msgstr "Odgovoreno" #. Label of the reply (Text Editor) field in DocType 'Discussion Reply' #: frappe/core/doctype/communication/communication.js:57 #: frappe/public/js/frappe/form/footer/form_timeline.js:563 #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Reply" -msgstr "" +msgstr "Odgovor" #: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" -msgstr "" +msgstr "Odgovori Svima" #. Label of the report (Check) field in DocType 'Custom DocPerm' #. Label of the report (Link) field in DocType 'Custom Role' @@ -21127,6 +21337,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21142,10 +21354,13 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" -msgstr "" +msgstr "Izvještaj" #. Option for the 'Report Type' (Select) field in DocType 'Report' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' @@ -21153,32 +21368,32 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "" +msgstr "Konstruktor Izvještaja" #. Name of a DocType #: frappe/core/doctype/report_column/report_column.json msgid "Report Column" -msgstr "" +msgstr "Kolona Izvještaja" #. Label of the report_description (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Description" -msgstr "" +msgstr "Opis Izvještaja" #: frappe/core/doctype/report/report.py:151 msgid "Report Document Error" -msgstr "" +msgstr "Prijavi Grešku Dokumenta" #. Name of a DocType #: frappe/core/doctype/report_filter/report_filter.json msgid "Report Filter" -msgstr "" +msgstr "Filter izvještaja" #. Label of the report_filters (Section Break) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Filters" -msgstr "" +msgstr "Izvještajni Filteri" #. Label of the report_hide (Check) field in DocType 'DocField' #. Label of the report_hide (Check) field in DocType 'Custom Field' @@ -21187,19 +21402,19 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "" +msgstr "Sakrij Izvještaj" #. Label of the report_information_section (Section Break) field in DocType #. 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Report Information" -msgstr "" +msgstr "Informacija Izvještaja" #. Name of a role #: frappe/core/doctype/report/report.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" -msgstr "" +msgstr "Upravitelj izvještaja" #. Label of the report_name (Data) field in DocType 'Access Log' #. Label of the report_name (Data) field in DocType 'Prepared Report' @@ -21212,26 +21427,26 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" -msgstr "" +msgstr "Naziv Izvještaja" #: frappe/desk/doctype/number_card/number_card.py:69 msgid "Report Name, Report Field and Fucntion are required to create a number card" -msgstr "" +msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice" #. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' #. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Report Ref DocType" -msgstr "" +msgstr "Referentni Tip Dokumenta Izvještaja" #. Label of the report_reference_doctype (Data) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Reference Doctype" -msgstr "" +msgstr "Referentni Tip Dokumenta Izvještaja" #. Label of the report_type (Select) field in DocType 'Report' #. Label of the report_type (Data) field in DocType 'Onboarding Step' @@ -21240,270 +21455,295 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Type" -msgstr "" +msgstr "Tip izvještaja" #: frappe/public/js/frappe/list/base_list.js:203 msgid "Report View" -msgstr "" +msgstr "Pregled iIvještaja" #: frappe/public/js/frappe/form/templates/form_sidebar.html:26 msgid "Report bug" -msgstr "" +msgstr "Prijavi Grešku" #: frappe/core/doctype/doctype/doctype.py:1809 msgid "Report cannot be set for Single types" -msgstr "" +msgstr "Izvještaj se ne može postaviti za Singl tipove" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 #: frappe/desk/doctype/number_card/number_card.js:191 msgid "Report has no data, please modify the filters or change the Report Name" -msgstr "" +msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 #: frappe/desk/doctype/number_card/number_card.js:186 msgid "Report has no numeric fields, please change the Report Name" -msgstr "" +msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" -msgstr "" +msgstr "Izvještaj je pokrenut, klikni da vidite status" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" -msgstr "" +msgstr "Granica Izvještaja Dostignuta" #: frappe/core/doctype/prepared_report/prepared_report.py:223 msgid "Report timed out." -msgstr "" +msgstr "Izvještaj je istekao." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" -msgstr "" +msgstr "Izvještaj je uspješno ažuriran" #: frappe/public/js/frappe/views/reports/report_view.js:1357 msgid "Report was not saved (there were errors)" -msgstr "" +msgstr "Izvještaj nije spremljen (bilo je grešaka)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." -msgstr "" +msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada." #: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 msgid "Report {0}" -msgstr "" +msgstr "Izvještaj {0}" #: frappe/desk/reportview.py:364 msgid "Report {0} deleted" -msgstr "" +msgstr "Izvještaj {0} izbrisan" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" -msgstr "" +msgstr "Izvještaj {0} je onemogućen" #: frappe/desk/reportview.py:341 msgid "Report {0} saved" -msgstr "" +msgstr "Izvještaj {0} spremljen" #: frappe/public/js/frappe/views/reports/report_view.js:20 msgid "Report:" -msgstr "" +msgstr "Izvještaj:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 msgid "Reports" -msgstr "" +msgstr "Izvještaji" #: frappe/patches/v14_0/update_workspace2.py:50 msgid "Reports & Masters" -msgstr "" +msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" -msgstr "" +msgstr "Izvještaji su već u redu čekanja" #. Description of a DocType #: frappe/core/doctype/user/user.json msgid "Represents a User in the system." -msgstr "" +msgstr "Predstavlja korisnika u sistemu." #. Description of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Represents the states allowed in one document and role assigned to change the state." -msgstr "" +msgstr "Predstavlja stanja dozvoljena u jednom dokumentu i ulogu koja je dodijeljena za promjenu stanja." #: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" -msgstr "" +msgstr "Zahtjev od" #. Label of the data (Code) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Data" -msgstr "" +msgstr "Zatraži Podatke" #. Label of the request_description (Data) field in DocType 'Integration #. Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Description" -msgstr "" +msgstr "Opis Zahtjeva" #. Label of the request_headers (Code) field in DocType 'Recorder' #. Label of the request_headers (Code) field in DocType 'Integration Request' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Headers" -msgstr "" +msgstr "Zaglavlja Zahtjeva" #. Label of the request_id (Data) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request ID" -msgstr "" +msgstr "ID Zahtjeva" #. Label of the rate_limit_count (Int) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Request Limit" -msgstr "" +msgstr "Ograničenje Zahtjeva" #. Label of the request_method (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Request Method" -msgstr "" +msgstr "Metoda Zahtjeva" #. Label of the request_structure (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Request Structure" -msgstr "" +msgstr "Struktura Zahtjeva" #: frappe/public/js/frappe/request.js:231 msgid "Request Timed Out" -msgstr "" +msgstr "Zahtjev Istekao" #. Label of the timeout (Int) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json #: frappe/public/js/frappe/request.js:244 msgid "Request Timeout" -msgstr "" +msgstr "Zahtjev Istekao" #. Label of the request_url (Small Text) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Request URL" -msgstr "" +msgstr "URL Zahtjeva" #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" -msgstr "" +msgstr "Traženi Brojevi" #. Label of the require_trusted_certificate (Select) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Require Trusted Certificate" -msgstr "" +msgstr "Zahtijevaj Pouzdani Certifikat" #. Description of the 'LDAP search path for Groups' (Data) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" -msgstr "" +msgstr "Zahtijeva bilo koju važeću fdn putanju. tj. ou=grupe,dc=primjer,dc=com" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" -msgstr "" +msgstr "Zahtijeva bilo koju važeću fdn put. tj. ou=users,dc=example,dc=com" #: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "" +msgstr "Od: {0}" #: frappe/desk/doctype/form_tour/form_tour.js:101 #: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 #: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 #: frappe/website/doctype/portal_settings/portal_settings.js:19 msgid "Reset" -msgstr "" +msgstr "Poništi" #: frappe/custom/doctype/customize_form/customize_form.js:136 msgid "Reset All Customizations" -msgstr "" +msgstr "Resetuj Sva Prilagođavanja" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 msgid "Reset Changes" -msgstr "" +msgstr "Poništi Promjene" #: frappe/public/js/frappe/widgets/chart_widget.js:306 msgid "Reset Chart" -msgstr "" +msgstr "Poništi Grafikon" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 msgid "Reset Dashboard Customizations" -msgstr "" +msgstr "Poništi Prilagođavanja Nadzorne Table" #: frappe/public/js/frappe/list/list_settings.js:230 msgid "Reset Fields" -msgstr "" +msgstr "Poništi Polja" #: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 msgid "Reset LDAP Password" -msgstr "" +msgstr "Poništi LDAP Lozinku" #: frappe/custom/doctype/customize_form/customize_form.js:128 msgid "Reset Layout" -msgstr "" +msgstr "Poništi Izgled" #: frappe/core/doctype/user/user.js:230 msgid "Reset OTP Secret" -msgstr "" +msgstr "Poništi OTP Tajnu" #: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" -msgstr "" +msgstr "Poništi Lozinku" #. Label of the reset_password_key (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Reset Password Key" -msgstr "" +msgstr "Poništi Ključ Lozinke" #. Label of the reset_password_link_expiry_duration (Duration) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" -msgstr "" +msgstr "Poništi Vrijeme Trajanja Veze Lozinke" #. Label of the reset_password_template (Link) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Template" -msgstr "" +msgstr "Šablon Poništavanja Lozinke" #: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" -msgstr "" +msgstr "Poništi Dozvole za {0}?" #: frappe/public/js/form_builder/components/Field.vue:114 msgid "Reset To Default" -msgstr "" +msgstr "Vrati na Standard" #: frappe/public/js/frappe/utils/datatable.js:8 msgid "Reset sorting" -msgstr "" +msgstr "Poništi Sortiranje" #: frappe/public/js/frappe/form/grid_row.js:417 msgid "Reset to default" -msgstr "" +msgstr "Vrati na Standard" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 msgid "Reset to defaults" -msgstr "" +msgstr "Vrati na Standard Postavke" #: frappe/templates/emails/password_reset.html:3 msgid "Reset your password" -msgstr "" +msgstr "Poništi Lozinku" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Resurs" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Dokumentacija Resursa" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Naziv Resursa" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "URI Pravila Resursa" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "URI Uvjeta Pružanja Usluge Resursa" #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration @@ -21513,48 +21753,48 @@ msgstr "" #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Response" -msgstr "" +msgstr "Odgovor" #. Label of the response_html (Code) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Response " -msgstr "" +msgstr "Odgovor " #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" -msgstr "" +msgstr "Tip Odgovora" #: frappe/public/js/frappe/ui/notifications/notifications.js:414 msgid "Rest of the day" -msgstr "" +msgstr "Ostatak dana" #: frappe/core/doctype/deleted_document/deleted_document.js:11 #: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" -msgstr "" +msgstr "Vrati" #: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" -msgstr "" +msgstr "Vrati Originalne Dozvole" #: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" -msgstr "" +msgstr "Vrati na standard postavke?" #. Label of the restored (Check) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Restored" -msgstr "" +msgstr "Vraćeno" #: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" -msgstr "" +msgstr "Vraćanje Izbrisanog Dokumenta u toku" #. Label of the restrict_ip (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict IP" -msgstr "" +msgstr "Ograniči IP" #. Label of the restrict_to_domain (Link) field in DocType 'DocType' #. Label of the restrict_to_domain (Link) field in DocType 'Module Def' @@ -21564,81 +21804,79 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "" +msgstr "Ograniči na Domenu" #. Label of the restrict_to_domain (Link) field in DocType 'Workspace' #. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Restrict to Domain" -msgstr "" +msgstr "Ograniči na Domenu" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" -msgstr "" +msgstr "Ograniči korisnika samo sa ove IP adrese. Više IP adresa može se dodati odvajanjem zarezima. Također se prihvaćaju djelomične IP adrese poput (111.111.111)" #: frappe/public/js/frappe/list/list_view.js:196 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" -msgstr "" +msgstr "Ograničenja" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 msgid "Result" -msgstr "" +msgstr "Rezultat" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" -msgstr "" +msgstr "Nastavi Slanje" #. Label of the retry (Int) field in DocType 'Email Queue' #: frappe/core/doctype/data_import/data_import.js:110 #: frappe/desk/page/setup_wizard/setup_wizard.js:297 #: frappe/email/doctype/email_queue/email_queue.json msgid "Retry" -msgstr "" +msgstr "Pokušaj Ponovno" #: frappe/email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" -msgstr "" +msgstr "Ponovi Slanje" #: frappe/www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" -msgstr "" +msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplikacija za autentifikaciju" #. Label of the reverse (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Reverse Icon Color" -msgstr "" +msgstr "Obrnute Boje Ikone" #: frappe/database/schema.py:161 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." -msgstr "" +msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka." #. Label of the revocation_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Revocation URI" -msgstr "" +msgstr "URI Opoziva" #: frappe/www/third_party_apps.html:47 msgid "Revoke" -msgstr "" +msgstr "Opozovi" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Revoked" -msgstr "" +msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" -msgstr "" +msgstr "Rich Text" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -21647,28 +21885,28 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Right" -msgstr "" +msgstr "Desno" #: frappe/printing/page/print_format_builder/print_format_builder.js:484 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" -msgstr "" +msgstr "Desno" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Bottom" -msgstr "" +msgstr "Desno Dno" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Center" -msgstr "" +msgstr "Desno Centar" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Robots.txt" -msgstr "" +msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'Custom DocPerm' #. Label of the roles (Table) field in DocType 'Custom Role' @@ -21699,47 +21937,47 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" -msgstr "" +msgstr "Uloga" #: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." -msgstr "" +msgstr "Uloga 'Svi' će biti dodijeljena svim korisnicima sistema + web stranice." #: frappe/core/doctype/role/role.js:13 msgid "Role 'Desk User' will be given to all system users." -msgstr "" +msgstr "Uloga 'Korisnik Radne Površine' će biti dodijeljena svim korisnicima sistema." #. Label of the role_name (Data) field in DocType 'Role' #. Label of the role_profile (Data) field in DocType 'Role Profile' #: frappe/core/doctype/role/role.json #: frappe/core/doctype/role_profile/role_profile.json msgid "Role Name" -msgstr "" +msgstr "Naziv Uloge" #. Name of a DocType #. Label of a Link in the Users Workspace #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" -msgstr "" +msgstr "Dozvola Uloge za Stranicu i Izvještaj" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/public/js/frappe/roles_editor.js:103 msgid "Role Permissions" -msgstr "" +msgstr "Dozvole Uloge" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager.js:4 #: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" -msgstr "" +msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" -msgstr "" +msgstr "Upravitelj Dozvola Uloge" #. Name of a DocType #. Label of the role_profile_name (Link) field in DocType 'User' @@ -21750,17 +21988,17 @@ msgstr "" #: frappe/core/doctype/user_role_profile/user_role_profile.json #: frappe/core/workspace/users/users.json msgid "Role Profile" -msgstr "" +msgstr "Profil Uloge" #. Label of the role_profiles (Table MultiSelect) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Role Profiles" -msgstr "" +msgstr "Profili Uloge" #. Name of a DocType #: frappe/core/doctype/role_replication/role_replication.json msgid "Role Replication" -msgstr "" +msgstr "Replikacija Uloge" #. Label of the role_and_level (Section Break) field in DocType 'Custom #. DocPerm' @@ -21768,11 +22006,11 @@ msgstr "" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Role and Level" -msgstr "" +msgstr "Uloga i Nivo" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" -msgstr "" +msgstr "Uloga je postavljena prema tipu korisnika {0}" #. Label of the roles (Table) field in DocType 'Page' #. Label of the roles (Table) field in DocType 'Report' @@ -21793,50 +22031,50 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace/workspace.json msgid "Roles" -msgstr "" +msgstr "Uloge" #. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Roles & Permissions" -msgstr "" +msgstr "Uloge & Dozvole" #. Label of the roles (Table) field in DocType 'Role Profile' #. Label of the roles (Table) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles Assigned" -msgstr "" +msgstr "Dodijeljene Uloge" #. Label of the roles_html (HTML) field in DocType 'Role Profile' #. Label of the roles_html (HTML) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles HTML" -msgstr "" +msgstr "Uloge HTML" #. Label of the roles_html (HTML) field in DocType 'Role Permission for Page #. and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Roles Html" -msgstr "" +msgstr "Uloge Html" #: frappe/core/page/permission_manager/permission_manager_help.html:7 msgid "Roles can be set for users from their User page." -msgstr "" +msgstr "Uloge se mogu postaviti za korisnike sa njihove korisničke stranice." #: frappe/utils/nestedset.py:280 msgid "Root {0} cannot be deleted" -msgstr "" +msgstr "Root {0} se ne može izbrisati" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "" +msgstr "Round Robin" #. Label of the rounding_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rounding Method" -msgstr "" +msgstr "Metoda Zaokruživanja" #. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' @@ -21844,7 +22082,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21858,7 +22095,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21868,149 +22104,149 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Route" -msgstr "" +msgstr "Ruta" #. Name of a DocType #: frappe/desk/doctype/route_history/route_history.json msgid "Route History" -msgstr "" +msgstr "Istorija Rute" #. Label of the route_redirects (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Route Redirects" -msgstr "" +msgstr "Preusmjeravanja Rute" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Route: Example \"/app\"" -msgstr "" +msgstr "Ruta: Primjer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" -msgstr "" +msgstr "Red" #: frappe/core/doctype/version/version_view.html:73 msgid "Row #" -msgstr "" +msgstr "Red #" #: frappe/core/doctype/doctype/doctype.py:1831 #: frappe/core/doctype/doctype/doctype.py:1841 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" -msgstr "" +msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta" #: frappe/model/base_document.py:982 msgid "Row #{0}:" -msgstr "" +msgstr "Red #{0}:" #: frappe/core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" -msgstr "" +msgstr "Red #{}: Naziv polja je obavezan" #. Label of the row_format (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Row Format" -msgstr "" +msgstr "Format Reda" #. Label of the row_index (Data) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Row Index" -msgstr "" +msgstr "Indeks Reda" #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" -msgstr "" +msgstr "Indeksi Reda" #. Label of the row_name (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Row Name" -msgstr "" +msgstr "Naziv Reda" #: frappe/core/doctype/data_import/data_import.js:483 msgid "Row Number" -msgstr "" +msgstr "Broj Reda" #: frappe/core/doctype/version/version_view.html:68 msgid "Row Values Changed" -msgstr "" +msgstr "Vrijednosti Reda Promijenjene" #: frappe/core/doctype/data_import/data_import.js:367 msgid "Row {0}" -msgstr "" +msgstr "Red {0}" #: frappe/custom/doctype/customize_form/customize_form.py:352 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" -msgstr "" +msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja" #: frappe/custom/doctype/customize_form/customize_form.py:341 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" -msgstr "" +msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/version/version_view.html:32 msgid "Rows Added" -msgstr "" +msgstr "Dodani Redovi" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/version/version_view.html:32 msgid "Rows Removed" -msgstr "" +msgstr "Ukonjeni Redovi" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Rows Threshold for Grid Search" -msgstr "" +msgstr "Prag redaka za Mreže Pretraživanje" #. Label of the rule (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Rule" -msgstr "" +msgstr "Pravilo" #. Label of the section_break_3 (Section Break) field in DocType 'Document #. Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rule Conditions" -msgstr "" +msgstr "Uslovi Pravila" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." -msgstr "" +msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji." #. Group in DocType's connections #: frappe/core/doctype/doctype/doctype.json msgid "Rules" -msgstr "" +msgstr "Pravila" #. Description of the 'Transitions' (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Rules defining transition of state in the workflow." -msgstr "" +msgstr "Pravila koja definišu prelaz stanja u radnom toku." #. Description of the 'Transition Rules' (Section Break) field in DocType #. 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." -msgstr "" +msgstr "Pravila o tome kako su stanja tranzicije, poput sljedećeg stanja i kojoj ulozi je dozvoljeno mijenjati stanje itd." #. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rules with higher priority number will be applied first." -msgstr "" +msgstr "Pravila sa većim brojem prioriteta će se prvo primijeniti." #. Label of the dormant_days (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Run Jobs only Daily if Inactive For (Days)" -msgstr "" +msgstr "Pokreni poslove samo dnevno ako su neaktivni (dana)" #. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Run scheduled jobs only if checked" -msgstr "" +msgstr "Pokreni planirane poslove samo ako je označeno" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Minutes" @@ -22028,99 +22264,99 @@ msgstr "Vrijeme izvođenja u Sekundama" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/notification/notification.json msgid "SMS" -msgstr "" +msgstr "SMS" #. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "SMS Gateway URL" -msgstr "" +msgstr "URL SMS Prilaza" #. Name of a DocType #: frappe/core/doctype/sms_log/sms_log.json msgid "SMS Log" -msgstr "" +msgstr "SMS Zapisnik" #. Name of a DocType #: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "SMS Parameter" -msgstr "" +msgstr "SMS Parametar" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/core/doctype/sms_settings/sms_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "SMS Settings" -msgstr "" +msgstr "SMS Postavke" #: frappe/core/doctype/sms_settings/sms_settings.py:110 msgid "SMS sent successfully" -msgstr "" +msgstr "SMS je uspješno poslan" #: frappe/templates/includes/login/login.js:369 msgid "SMS was not sent. Please contact Administrator." -msgstr "" +msgstr "SMS nije poslan. Kontaktiraj Administratora." #: frappe/email/doctype/email_account/email_account.py:212 msgid "SMTP Server is required" -msgstr "" +msgstr "SMTP Server je obavezan" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL" -msgstr "" +msgstr "SQL" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "SQL Conditions. Example: status=\"Open\"" -msgstr "" +msgstr "SQL Uvjeti. Primjer: status=\"Open\"" #. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder/recorder.js:85 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" -msgstr "" +msgstr "SQL Objasni" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL Output" -msgstr "" +msgstr "SQL Izlaz" #. Label of the sql_queries (Table) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "SQL Queries" -msgstr "" +msgstr "SQL Upiti" #. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "SSL/TLS Mode" -msgstr "" +msgstr "SSL/TLS Način" #: frappe/public/js/frappe/color_picker/color_picker.js:20 msgid "SWATCHES" -msgstr "" +msgstr "UZORCI BOJA" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Sales Manager" -msgstr "" +msgstr "Upravitelj Prodaje" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Sales Master Manager" -msgstr "" +msgstr "Glavni Upravitelj Prodaje" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Sales User" -msgstr "" +msgstr "Korisnik Prodaje" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Salesforce" -msgstr "" +msgstr "Salesforce" #. Label of the salutation (Link) field in DocType 'Contact' #. Name of a DocType @@ -22128,16 +22364,16 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" -msgstr "" +msgstr "Titula" #: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" -msgstr "" +msgstr "Isto polje se unosi više puta" #. Label of the sample (HTML) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Sample" -msgstr "" +msgstr "Uzorak" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -22153,7 +22389,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Saturday" -msgstr "" +msgstr "Subota" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 @@ -22165,12 +22401,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22178,132 +22414,117 @@ msgstr "" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 msgid "Save" -msgstr "" +msgstr "Spremi" #: frappe/core/doctype/user/user.js:339 msgid "Save API Secret: {0}" -msgstr "" +msgstr "Spremi API Tajnu: {0}" #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" -msgstr "" +msgstr "Svejedno Spremi" #: frappe/public/js/frappe/views/reports/report_view.js:1388 #: frappe/public/js/frappe/views/reports/report_view.js:1733 msgid "Save As" -msgstr "" +msgstr "Spremi Kao" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 msgid "Save Customizations" -msgstr "" +msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" -msgstr "" +msgstr "Spremi Izvještaj" #: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" -msgstr "" +msgstr "Spremi Filtere" #. Label of the save_on_complete (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Save on Completion" -msgstr "" +msgstr "Spremi na Završetku" #: frappe/public/js/frappe/form/form_tour.js:295 msgid "Save the document." -msgstr "" +msgstr "Spremi dokument." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" -msgstr "" +msgstr "Spremljeno" #: frappe/public/js/frappe/list/list_sidebar.html:88 msgid "Saved Filters" -msgstr "" +msgstr "Spremjeni Filteri" #: frappe/public/js/frappe/list/list_settings.js:40 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 #: frappe/public/js/frappe/views/workspace/workspace.js:348 msgid "Saving" -msgstr "" +msgstr "Sprema se" #: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" -msgstr "" +msgstr "Sprema se" #: frappe/custom/doctype/customize_form/customize_form.js:411 msgid "Saving Customization..." -msgstr "" +msgstr "Spremaju se Prilagođavanja..." #: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." -msgstr "" +msgstr "Spremanjem ovoga izvest ćete ovaj dokument kao i korake povezane ovdje kao json." #: frappe/public/js/form_builder/store.js:233 #: frappe/public/js/print_format_builder/store.js:36 #: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." -msgstr "" +msgstr "Spremanje u toku..." #: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" -msgstr "" +msgstr "Skeniraj QRCode" #: frappe/www/qrcode.html:14 msgid "Scan the QR Code and enter the resulting code displayed." -msgstr "" +msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" -msgstr "" +msgstr "Raspored" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" +msgstr "Raspored Slanja" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" -msgstr "" +msgstr "Zakazano" #. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' #: frappe/core/doctype/scheduler_event/scheduler_event.json msgid "Scheduled Against" -msgstr "" +msgstr "Zakazano Naspram" #. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job" -msgstr "" +msgstr "Zakazani Posao" #. Name of a DocType #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job Log" -msgstr "" +msgstr "Zapisnik Zakazanih Poslova" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -22313,37 +22534,26 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Scheduled Job Type" -msgstr "" +msgstr "Tip Zakazanog Posla" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Scheduled Jobs Logs" -msgstr "" - -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" +msgstr "Zapisi Zakazanih Poslova" #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" -msgstr "" +msgstr "Zakazano izvršenje za skriptu {0} je ažurirano" #: frappe/email/doctype/auto_email_report/auto_email_report.js:26 msgid "Scheduled to send" -msgstr "" +msgstr "Zakazano za slanje" #. Label of the scheduler_section (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Scheduler" -msgstr "" +msgstr "Raspoređivač" #. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' #. Name of a DocType @@ -22352,37 +22562,37 @@ msgstr "" #: frappe/core/doctype/scheduler_event/scheduler_event.json #: frappe/core/doctype/server_script/server_script.json msgid "Scheduler Event" -msgstr "" +msgstr "Događaj Raspoređivača" #: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler Inactive" -msgstr "" +msgstr "Raspoređivač Neaktivan" #. Label of the scheduler_status (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Scheduler Status" -msgstr "" +msgstr "Status Raspoređivača" #: frappe/utils/scheduler.py:247 msgid "Scheduler can not be re-enabled when maintenance mode is active." -msgstr "" +msgstr "Raspoređivač se ne može ponovno omogućiti kada je aktivan način rada za održavanje." #: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler is inactive. Cannot import data." -msgstr "" +msgstr "Raspoređivač je neaktivan. Nije moguće uvesti podatke." #: frappe/core/doctype/rq_job/rq_job_list.js:19 msgid "Scheduler: Active" -msgstr "" +msgstr "Raspoređivač: Aktivan" #: frappe/core/doctype/rq_job/rq_job_list.js:21 msgid "Scheduler: Inactive" -msgstr "" +msgstr "Raspoređivač: Neaktivan" #. Label of the scope (Data) field in DocType 'OAuth Scope' #: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "Scope" -msgstr "" +msgstr "Obim" #. Label of the sb_scope_section (Section Break) field in DocType 'Connected #. App' @@ -22397,7 +22607,12 @@ msgstr "" #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Scopes" -msgstr "" +msgstr "Opsezi" + +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Podržani Opsezi" #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' @@ -22412,44 +22627,44 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Script" -msgstr "" +msgstr "Skripta" #. Name of a role #: frappe/core/doctype/server_script/server_script.json msgid "Script Manager" -msgstr "" +msgstr "Upravitelj Skripti" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Script Report" -msgstr "" +msgstr "Izvještaj Skripti" #. Label of the script_type (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Script Type" -msgstr "" +msgstr "Tip Skripte" #. Description of a DocType #: frappe/website/doctype/website_script/website_script.json msgid "Script to attach to all web pages." -msgstr "" +msgstr "Skripta za prilaganje svim web stranicama." #. Label of a Card Break in the Build Workspace #. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_page/web_page.json msgid "Scripting" -msgstr "" +msgstr "Skriptiranje" #. Label of the section_break_6 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Scripting / Style" -msgstr "" +msgstr "Skriptiranje / Stil" #. Label of the scripts_section (Section Break) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Scripts" -msgstr "" +msgstr "Skripte" #. Label of the search_section (Section Break) field in DocType 'System #. Settings' @@ -22462,91 +22677,96 @@ msgstr "" #: frappe/templates/discussions/search.html:2 #: frappe/templates/includes/search_template.html:26 msgid "Search" -msgstr "" +msgstr "Traži" #. Label of the search_bar (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Search Bar" -msgstr "" +msgstr "Traka Pretrage" #. Label of the search_fields (Data) field in DocType 'DocType' #. Label of the search_fields (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Search Fields" -msgstr "" +msgstr "Polja Pretrage" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 msgid "Search Help" -msgstr "" +msgstr "Pomoć Pretrage" #. Label of the allowed_in_global_search (Table) field in DocType 'Global #. Search Settings' #: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Search Priorities" -msgstr "" +msgstr "Prioriteti Pretrage" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 msgid "Search Results" -msgstr "" +msgstr "Rezultati Pretrage" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 msgid "Search by filename or extension" -msgstr "" +msgstr "Pretraga po imenu datoteke ili ekstenziji" #: frappe/core/doctype/doctype/doctype.py:1467 msgid "Search field {0} is not valid" -msgstr "" +msgstr "Polje za pretragu {0} nije važeće" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 msgid "Search fields" -msgstr "" +msgstr "Polja za Pretragu" #: frappe/public/js/form_builder/components/AddFieldButton.vue:19 msgid "Search fieldtypes..." -msgstr "" +msgstr "Tipove Polja za Pretragu..." #: frappe/public/js/frappe/ui/toolbar/search.js:50 #: frappe/public/js/frappe/ui/toolbar/search.js:69 msgid "Search for anything" -msgstr "" +msgstr "Traži bilo šta" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 msgid "Search for {0}" -msgstr "" +msgstr "Traži {0}" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 msgid "Search in a document type" -msgstr "" +msgstr "Traži u tipu dokumenta" #: frappe/public/js/frappe/ui/toolbar/navbar.html:29 msgid "Search or type a command ({0})" -msgstr "" +msgstr "Traži ili upiši naredbu ({0})" #: frappe/public/js/form_builder/components/SearchBox.vue:8 msgid "Search properties..." -msgstr "" +msgstr "Pretražna Svojstva..." #: frappe/templates/includes/search_box.html:8 msgid "Search results for" -msgstr "" +msgstr "Rezultati pretrage za" #: frappe/templates/includes/navbar/navbar_search.html:6 #: frappe/templates/includes/search_box.html:2 #: frappe/templates/includes/search_template.html:23 msgid "Search..." -msgstr "" +msgstr "Traži..." #: frappe/public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." -msgstr "" +msgstr "Pretraživanje u toku..." + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekundi" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json msgid "Section" -msgstr "" +msgstr "Sekcija" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -22559,7 +22779,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Section Break" -msgstr "" +msgstr "Prijelom Sekcije" #: frappe/printing/page/print_format_builder/print_format_builder.js:421 msgid "Section Heading" @@ -22568,44 +22788,44 @@ msgstr "Naslov Odjeljka" #. Label of the section_id (Data) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Section ID" -msgstr "" +msgstr "ID Sekcije" #: frappe/public/js/form_builder/components/Section.vue:28 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 msgid "Section Title" -msgstr "" +msgstr "Naziv Sekcije" #: frappe/public/js/form_builder/components/Section.vue:217 #: frappe/public/js/form_builder/components/Section.vue:240 msgid "Section must have at least one column" -msgstr "" +msgstr "Sekcija mora imati najmanje jednu kolonu" #. Label of the sb3 (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Security Settings" -msgstr "" +msgstr "Sigurnosne Postavke" #: frappe/public/js/frappe/ui/notifications/notifications.js:309 msgid "See all Activity" -msgstr "" +msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." -msgstr "" +msgstr "Pogledaj sve prethodne izvještaje." #: frappe/public/js/frappe/form/form.js:1235 #: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" -msgstr "" +msgstr "Vidi na web stranici" #: frappe/website/doctype/web_form/templates/web_form.html:153 msgctxt "Button in web form" msgid "See previous responses" -msgstr "" +msgstr "Pogledaj prethodne odgovore" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" -msgstr "" +msgstr "Pogledaj dokument na {0}" #. Label of the seen (Check) field in DocType 'Comment' #. Label of the seen (Check) field in DocType 'Communication' @@ -22617,17 +22837,17 @@ msgstr "" #: frappe/core/doctype/error_log/error_log_list.js:5 #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Seen" -msgstr "" +msgstr "Viđeno" #. Label of the seen_by_section (Section Break) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Seen By" -msgstr "" +msgstr "Viđeno od" #. Label of the seen_by (Table) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Seen By Table" -msgstr "" +msgstr "Viđeno prema Tabeli" #. Label of the select (Check) field in DocType 'Custom DocPerm' #. Option for the 'Type' (Select) field in DocType 'DocField' @@ -22649,48 +22869,48 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" -msgstr "" +msgstr "Odaberi" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 #: frappe/public/js/frappe/form/grid_row.js:481 msgid "Select All" -msgstr "" +msgstr "Odaberi sve" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" -msgstr "" +msgstr "Odaberi Priloge" #: frappe/custom/doctype/client_script/client_script.js:25 #: frappe/custom/doctype/client_script/client_script.js:28 msgid "Select Child Table" -msgstr "" +msgstr "Odaberi Podređenu Tabelu" #: frappe/public/js/frappe/views/reports/report_view.js:383 msgid "Select Column" -msgstr "" +msgstr "Odaberi Kolonu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" -msgstr "" +msgstr "Odaberi Kolone" #: frappe/desk/page/setup_wizard/setup_wizard.js:399 msgid "Select Country" -msgstr "" +msgstr "Odaberi Zemlju" #: frappe/desk/page/setup_wizard/setup_wizard.js:415 msgid "Select Currency" -msgstr "" +msgstr "Odaberi Valutu" #. Label of the dashboard_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/public/js/frappe/utils/dashboard_utils.js:240 msgid "Select Dashboard" -msgstr "" +msgstr "Odaberi Nadzornu Tablu" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22702,222 +22922,222 @@ msgstr "Datumski Raspon" #: frappe/public/js/frappe/doctype/index.js:171 #: frappe/website/doctype/web_form/web_form.json msgid "Select DocType" -msgstr "" +msgstr "Odaberi Doctype" #. Label of the reference_doctype (Link) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Select Doctype" -msgstr "" +msgstr "Odaberi Doctype" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 #: frappe/workflow/page/workflow_builder/workflow_builder.js:50 msgid "Select Document Type" -msgstr "" +msgstr "Odaberi vrstu dokumenta" #: frappe/core/page/permission_manager/permission_manager.js:179 msgid "Select Document Type or Role to start." -msgstr "" +msgstr "Odaberi Tip Dokumenta ili Ulogu." #: frappe/core/page/permission_manager/permission_manager_help.html:34 msgid "Select Document Types to set which User Permissions are used to limit access." -msgstr "" +msgstr "Odaberi Tipove Dokumenata da postavite koje se korisničke dozvole koriste za ograničavanje pristupa." #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" -msgstr "" +msgstr "Odaberi Polje" #: frappe/public/js/frappe/ui/group_by/group_by.html:35 #: frappe/public/js/frappe/ui/group_by/group_by.js:141 msgid "Select Field..." -msgstr "" +msgstr "Odaberi Polje..." #: frappe/public/js/frappe/form/grid_row.js:473 #: frappe/public/js/frappe/list/list_settings.js:236 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" -msgstr "" +msgstr "Odaberi Polja" #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" -msgstr "" +msgstr "Odaberite Polja za Umetanje" #: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" -msgstr "" +msgstr "Odaberi Polja za Ažuriranje" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" -msgstr "" +msgstr "Odaberi Filtere" #: frappe/desk/doctype/event/event.py:103 msgid "Select Google Calendar to which event should be synced." -msgstr "" +msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati." #: frappe/contacts/doctype/contact/contact.py:77 msgid "Select Google Contacts to which contact should be synced." -msgstr "" +msgstr "Odaberite Google kontakte s kojima treba sinhronizirati kontakt." #: frappe/public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "" +msgstr "Odaberi Grupiraj prema..." #: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" -msgstr "" +msgstr "Odaberi Oglasnu Tablu" #: frappe/desk/page/setup_wizard/setup_wizard.js:391 msgid "Select Language" -msgstr "" +msgstr "Odaberi Jezik" #. Label of the list_name (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select List View" -msgstr "" +msgstr "Odaberi Prikaz Liste" #: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" -msgstr "" +msgstr "Odaberi Obavezno" #: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" -msgstr "" +msgstr "Odaberi Modul" #: frappe/printing/page/print/print.js:175 #: frappe/printing/page/print/print.js:585 msgid "Select Network Printer" -msgstr "" +msgstr "Odaberi Mrežni Pisač" #. Label of the page_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Page" -msgstr "" +msgstr "Odaberi Stranicu" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" -msgstr "" +msgstr "Odaberi Ispis Format" #: frappe/printing/page/print_format_builder/print_format_builder.js:82 msgid "Select Print Format to Edit" -msgstr "" +msgstr "Odaberi Ispis Format za Uređivanje" #. Label of the report_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Report" -msgstr "" +msgstr "Odaberi Izvještaj" #: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" -msgstr "" +msgstr "Odaberi Kolone Tabele za {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:408 msgid "Select Time Zone" -msgstr "" +msgstr "Odaberi Vremensku Zonu" #. Label of the transaction_type (Autocomplete) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Select Transaction" -msgstr "" +msgstr "Odaberi Transakciju" #: frappe/workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" -msgstr "" +msgstr "Odaberi Radni Tok" #. Label of the workspace_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Workspace" -msgstr "" +msgstr "Odaberi Radni Prostor" #. Label of the select_workspaces_section (Section Break) field in DocType #. 'Workspace Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Select Workspaces" -msgstr "" +msgstr "Odaberi Radni Prostor" #: frappe/website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." -msgstr "" +msgstr "Prvo odaberi sliku Marke." #: frappe/printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" -msgstr "" +msgstr "Odaberi DocType da napravite novi format" #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "" +msgstr "Odaberi polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." -msgstr "" +msgstr "Odaberi Grupu." #: frappe/core/doctype/doctype/doctype.py:1942 msgid "Select a valid Sender Field for creating documents from Email" -msgstr "" +msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte" #: frappe/core/doctype/doctype/doctype.py:1926 msgid "Select a valid Subject field for creating documents from Email" -msgstr "" +msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte" #: frappe/public/js/frappe/form/form_tour.js:321 msgid "Select an Image" -msgstr "" +msgstr "Odaberi Sliku" #: frappe/www/apps.html:10 msgid "Select an app to continue" -msgstr "" +msgstr "Odaberi Aplikaciju da nastavite" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 msgid "Select an existing format to edit or start a new format." -msgstr "" +msgstr "Odaberi postojeći format za uređivanje ili započni novi format." #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "" +msgstr "Odaberi sliku približne širine 150px sa prozirnom pozadinom za najbolje rezultate." #: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" -msgstr "" +msgstr "Odaberi najmanje jedan zapis za ispis" #: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" -msgstr "" +msgstr "Odaberi najmanje dvije radnje" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" -msgstr "" +msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" -msgstr "" +msgstr "Odaberi artikle više listi" #: frappe/public/js/frappe/views/calendar/calendar.js:167 msgid "Select or drag across time slots to create a new event." -msgstr "" +msgstr "Odaberi ili prevucite preko vremenskih intervala da kreirate novi događaj." #: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" -msgstr "" +msgstr "Odaberi zapise za dodjelu" #: frappe/public/js/frappe/list/bulk_operations.js:260 msgid "Select records for removing assignment" -msgstr "" +msgstr "Odaberi zapise za uklanjanje dodjele" #. Description of the 'Insert After' (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Select the label after which you want to insert new field." -msgstr "" +msgstr "Odaberi oznaku nakon koje želite umetnuti novo polje." #: frappe/public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." -msgstr "" +msgstr "Odaberi dvije verzije da vidite razliku." #: frappe/public/js/frappe/form/link_selector.js:24 #: frappe/public/js/frappe/form/multi_select_dialog.js:80 @@ -22925,60 +23145,53 @@ msgstr "" #: frappe/public/js/frappe/list/list_view_select.js:153 #: frappe/public/js/print_format_builder/Preview.vue:90 msgid "Select {0}" -msgstr "" +msgstr "Odaberi {0}" #: frappe/model/workflow.py:117 msgid "Self approval is not allowed" -msgstr "" +msgstr "Samoodobrenje nije dozvoljeno" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" -msgstr "" +msgstr "Pošalji" #: frappe/public/js/frappe/views/communication.js:26 msgctxt "Send Email" msgid "Send" -msgstr "" +msgstr "Pošalji" #. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." -msgstr "" +msgstr "Pošalji ovaj broj najranije nekoliko minuta prije ili poslije referentnog datuma i vremena. Stvarno slanje može biti odgođeno do 5 minuta zbog ritma okidača raspoređivača." #. Label of the send_after (Datetime) field in DocType 'Communication' #. Label of the send_after (Datetime) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Send After" -msgstr "" +msgstr "Pošalji Poslije" #. Label of the event (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send Alert On" -msgstr "" +msgstr "Pošalji Upozorenje" #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" -msgstr "" - -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" +msgstr "Pošalji Upozorenje e-poštom" #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" -msgstr "" +msgstr "Pošalji e-poštu o Radnom Stanju" #. Description of the 'Send Print as PDF' (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "" +msgstr "Pošalji Prilog e-poštom kao PDF (Preporučeno)" #. Label of the send_email_to_creator (Check) field in DocType 'Workflow #. Transition' @@ -22989,203 +23202,162 @@ msgstr "Pošalji e-poštu Stvaraocu" #. Label of the send_me_a_copy (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Me A Copy of Outgoing Emails" -msgstr "" +msgstr "Pošalji mi Kopiju Odlazne e-pošte" #. Label of the send_notification_to (Small Text) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send Notification to" -msgstr "" +msgstr "Pošalji Obavještenje" #. Label of the document_follow_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Documents Followed By Me" -msgstr "" +msgstr "Šalji obavještenja za dokumente koje pratim" #. Label of the thread_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Email Threads" -msgstr "" +msgstr "Slanje obavijesti za niti e-pošte" #: frappe/email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" -msgstr "" +msgstr "Pošalji Sad" #. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Print as PDF" -msgstr "" +msgstr "Pošalji Ispis kao PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" -msgstr "" +msgstr "Pošalji Potvrdu o Čitanju" #. Label of the send_system_notification (Check) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send System Notification" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" +msgstr "Pošalji Sistemsko Obaveštenje" #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "" - -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" +msgstr "Pošalji svim Dodjeljnim" #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" +msgstr "Pošalji e-poštu Dobrodošlice" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" -msgstr "" +msgstr "Pošalji upozorenje ako datum odgovara vrijednosti ovog polja" #. Description of the 'Reference Datetime' (Select) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if datetime matches this field's value" -msgstr "" +msgstr "Pošalji upozorenje ako datum i vrijeme odgovara vrijednosti ovog polja" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if this field's value changes" -msgstr "" +msgstr "Pošalji upozorenje ako se vrijednost ovog polja promijeni" #. Label of the send_reminder (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Send an email reminder in the morning" -msgstr "" +msgstr "Pošalji podsjetnik e-poštom ujutro" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send days before or after the reference date" -msgstr "" +msgstr "Pošalji nekoliko dana prije ili nakon referentnog datuma" #. Description of the 'Send Email On State' (Check) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send email when document transitions to the state." -msgstr "" +msgstr "Pošalji e-poštu kada dokument prijeđe u stanje." #. Description of the 'Forward To Email Address' (Data) field in DocType #. 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Send enquiries to this email address" -msgstr "" +msgstr "Pošaljite upite na ovu adresu e-pošte" #: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 msgid "Send login link" -msgstr "" +msgstr "Pošalji Vezu Prijave" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" +msgstr "Pošalji Mi Kopiju" #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" -msgstr "" +msgstr "Šalji samo ako postoje podaci" #. Label of the send_unsubscribe_message (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send unsubscribe message in email" -msgstr "" +msgstr "Pošaljite poruku za odjavu putem e-pošte" #. Label of the sender (Data) field in DocType 'Event' #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" -msgstr "" +msgstr "Pošiljatelj" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" -msgstr "" +msgstr "E-pošta Pošiljatelja" #. Label of the sender_field (Data) field in DocType 'DocType' #. Label of the sender_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" -msgstr "" +msgstr "Polje e-pošte Pošiljatelja" #: frappe/core/doctype/doctype/doctype.py:1945 msgid "Sender Field should have Email in options" -msgstr "" +msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" -msgstr "" +msgstr "Ime Pošiljatelja" #. Label of the sender_name_field (Data) field in DocType 'DocType' #. Label of the sender_name_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Name Field" -msgstr "" +msgstr "Ime Pošiljatelja" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Sendgrid" -msgstr "" +msgstr "Sendgrid" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" +msgstr "Šalje se" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' @@ -23194,86 +23366,84 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" -msgstr "" +msgstr "Poslano" #. Label of the sent_folder_name (Data) field in DocType 'Email Account' #. Label of the sent_folder_name (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Sent Folder Name" -msgstr "" +msgstr "Naziv Poslate Mape" #. Label of the sent_on (Date) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent On" -msgstr "" +msgstr "Poslano" #. Label of the read_receipt (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "" +msgstr "Poslana Potvrda Čitanju" #. Label of the sent_to (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent To" -msgstr "" +msgstr "Poslano" #. Label of the sent_or_received (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent or Received" -msgstr "" +msgstr "Poslano ili Primljeno" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Sent/Received Email" -msgstr "" +msgstr "Poslana/Primljena e-pošta" #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Separator" -msgstr "" +msgstr "Razdjelnik" #. Label of the sequence_id (Float) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Sequence Id" -msgstr "" +msgstr "Id Sekvence" #. Label of the naming_series_options (Text) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Series List for this Transaction" -msgstr "" +msgstr "Serija Imenovanja Liste za ovu Transakciju" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" -msgstr "" +msgstr "Serija Imenovanja Ažurirana za {}" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" -msgstr "" +msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}" #: frappe/core/doctype/doctype/doctype.py:1109 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" -msgstr "" +msgstr "Serija Imenovanja {0} se već koristi u {1}" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Server Action" -msgstr "" +msgstr "Radnja Servera" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" -msgstr "" +msgstr "Greška Servera" #. Label of the server_ip (Data) field in DocType 'Network Printer Settings' #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Server IP" -msgstr "" +msgstr "IP Servera" #. Label of the server_script (Link) field in DocType 'Scheduled Job Type' #. Name of a DocType @@ -23282,23 +23452,23 @@ msgstr "" #: frappe/core/doctype/server_script/server_script.json #: frappe/core/workspace/build/build.json msgid "Server Script" -msgstr "" +msgstr "Server Skripta" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." -msgstr "" +msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije." #: frappe/core/doctype/server_script/server_script.js:39 msgid "Server Scripts feature is not available on this site." -msgstr "" +msgstr "Funkcija server skripti nije dostupna na ovoj stranici." #: frappe/public/js/frappe/request.js:254 msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." -msgstr "" +msgstr "Poslužitelj nije uspio obraditi ovaj zahtjev zbog istovremenog konfliktnog zahtjeva. Pokušajte ponovno." #: frappe/public/js/frappe/request.js:246 msgid "Server was too busy to process this request. Please try again." -msgstr "" +msgstr "Server je bio prezauzet za obradu ovog zahtjeva. Pokušaj ponovo." #. Label of the service (Select) field in DocType 'Email Account' #. Label of the integration_request_service (Data) field in DocType @@ -23306,43 +23476,43 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Service" -msgstr "" +msgstr "Servis" #. Name of a DocType #: frappe/core/doctype/session_default/session_default.json msgid "Session Default" -msgstr "" +msgstr "Standard Sesija" #. Name of a DocType #: frappe/core/doctype/session_default_settings/session_default_settings.json msgid "Session Default Settings" -msgstr "" +msgstr "Standard Postavke Sesije" #. Label of a standard navbar item #. Type: Action #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" -msgstr "" +msgstr "Standard Sesije" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" -msgstr "" +msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" -msgstr "" +msgstr "Sesija Istekla" #. Label of the session_expiry (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" -msgstr "" +msgstr "Istek Sesije (vremensko ograničenje mirovanja)" #: frappe/core/doctype/system_settings/system_settings.py:120 msgid "Session Expiry must be in format {0}" -msgstr "" +msgstr "Istek Sesije mora biti u formatu {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 @@ -23350,79 +23520,79 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:387 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" -msgstr "" +msgstr "Postavi" #: frappe/public/js/frappe/ui/filters/filter.js:607 msgctxt "Field value is set" msgid "Set" -msgstr "" +msgstr "Postavi" #. Label of the set_banner_from_image (Button) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Set Banner from Image" -msgstr "" +msgstr "Postavi baner sa slike" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" -msgstr "" +msgstr "Potavi grafikon" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "" +msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 #: frappe/desk/doctype/number_card/number_card.js:367 msgid "Set Dynamic Filters" -msgstr "" +msgstr "Postavi Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 #: frappe/desk/doctype/number_card/number_card.js:280 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" -msgstr "" +msgstr "Postavi Filtere" #: frappe/public/js/frappe/widgets/chart_widget.js:436 #: frappe/public/js/frappe/widgets/quick_list_widget.js:105 msgid "Set Filters for {0}" -msgstr "" +msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" -msgstr "" +msgstr "Postavi Nivo" #: frappe/core/doctype/user_type/user_type.py:92 msgid "Set Limit" -msgstr "" +msgstr "Postavi ograničenje" #. Description of the 'Setup Series for transactions' (Section Break) field in #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "" +msgstr "Postavi opcije serije imenovanja za svoje transakcije." #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Set New Password" -msgstr "" +msgstr "Postavi novu lozinku" #: frappe/desk/page/backups/backups.js:8 msgid "Set Number of Backups" -msgstr "" +msgstr "Postavi broj sigurnosnih kopija" #: frappe/www/update-password.html:32 msgid "Set Password" -msgstr "" +msgstr "Postavi lozinku" #: frappe/custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" -msgstr "" +msgstr "Postavi dozvole" #: frappe/printing/page/print_format_builder/print_format_builder.js:471 msgid "Set Properties" -msgstr "" +msgstr "Postavi svojstva" #. Label of the property_section (Section Break) field in DocType #. 'Notification' @@ -23430,56 +23600,56 @@ msgstr "" #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Set Property After Alert" -msgstr "" +msgstr "Postavi svojstvo nakon upozorenja" #: frappe/public/js/frappe/form/link_selector.js:207 #: frappe/public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" -msgstr "" +msgstr "Postavi Količinu" #. Label of the set_role_for (Select) field in DocType 'Role Permission for #. Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Set Role For" -msgstr "" +msgstr "Postavi Ulogu za" #: frappe/core/doctype/user/user.js:131 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "" +msgstr "Postavi Korisničke Dozvole" #. Label of the value (Small Text) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" -msgstr "" +msgstr "Postavi Vrijednost" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" -msgstr "" +msgstr "Postavi sve privatno" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" -msgstr "" +msgstr "Postavi sve javno" #: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" -msgstr "" +msgstr "Postavi kao Standard" #: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" -msgstr "" +msgstr "Postavi kao Standard Temu" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" -msgstr "" +msgstr "Postavio Korisnik" #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "Set dynamic filter values in JavaScript for the required fields here." -msgstr "" +msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje." #. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' @@ -23491,17 +23661,17 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" -msgstr "" +msgstr "Postavi nestandardnu preciznost za Float ili Valuta polje" #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" -msgstr "" +msgstr "Postavi samo jednom" #. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Set size in MB" -msgstr "" +msgstr "Postavi veličinu u MB" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23524,7 +23694,24 @@ msgid "Set the filters here. For example:\n" "\treqd: 1\n" "}]\n" "
" -msgstr "" +msgstr "Postavi filtere ovdje. Na primjer:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" #. Description of the 'Method' (Data) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -23536,19 +23723,26 @@ msgid "Set the path to a whitelisted function that will return the data for the "\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n" "\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n" "}
" -msgstr "" +msgstr "Postavi put do funkcije s popisa dozvoljenih koja će vratiti podatke za numeričku karticu u formatu:\n\n" +"
\n"
+"{\n"
+"\"value\": value,\n"
+"\"fieldtype\": \"Valuta\",\n"
+"\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\"route\": [\"query-report\", \"Dopušteni dokumenti za korisnika\"]\n"
+"}
" #: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" -msgstr "" +msgstr "Postavlja se ovog Šablona Adrese kao standard jer ne postoji drugi standard" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." -msgstr "" +msgstr "Postavljanje dokumenata Globalne pretrage." #: frappe/desk/page/setup_wizard/setup_wizard.js:285 msgid "Setting up your system" -msgstr "" +msgstr "Postavljanje vašeg sistema" #. Label of the settings_tab (Tab Break) field in DocType 'DocType' #. Label of the settings_tab (Tab Break) field in DocType 'User' @@ -23561,72 +23755,72 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json frappe/www/me.html:20 msgid "Settings" -msgstr "" +msgstr "Postavke" #. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Settings Dropdown" -msgstr "" +msgstr "Padajući Meni Postavki" #. Description of a DocType #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Settings for Contact Us Page" -msgstr "" +msgstr "Postavke za Kontaktirajte Nas Stranicu" #. Description of a DocType #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Settings for the About Us Page" -msgstr "" +msgstr "Postavke za O nama Stranicu" #. Description of a DocType #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" +msgstr "Postavke za kontrolu kategorija blogova i interakcija poput komentara i lajkova" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 msgid "Setup" -msgstr "" +msgstr "Postavljanja" #: frappe/core/page/permission_manager/permission_manager_help.html:27 msgid "Setup > Customize Form" -msgstr "" +msgstr "Postavljanje> Prilagodi Formu" #: frappe/core/page/permission_manager/permission_manager_help.html:8 msgid "Setup > User" -msgstr "" +msgstr "Postavljanje> Korisnik" #: frappe/core/page/permission_manager/permission_manager_help.html:33 msgid "Setup > User Permissions" -msgstr "" +msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" -msgstr "" +msgstr "Postavljanje Automatske e-pošte" #. Label of the setup_complete (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Setup Complete" -msgstr "" +msgstr "Postavljanje je Završeno" #. Label of the setup_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" -msgstr "" +msgstr "Postavljanje Serije Imenovanja za Transakcije" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" -msgstr "" +msgstr "Postavljanje nije uspjelo" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23640,69 +23834,71 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "" +msgstr "Dijeli" #: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" -msgstr "" +msgstr "Podijeli sa" #: frappe/public/js/frappe/form/templates/set_sharing.html:49 msgid "Share this document with" -msgstr "" +msgstr "Podijeli ovaj dokument sa" #: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" -msgstr "" +msgstr "Podijeli {0} sa" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Shared" -msgstr "" +msgstr "Podijeljeno" #: frappe/desk/form/assign_to.py:132 msgid "Shared with the following Users with Read access:{0}" -msgstr "" +msgstr "Dijeli se sa sljedećim korisnicima s dozvolom za čitanje:{0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shipping" -msgstr "" +msgstr "Dostava" #: frappe/public/js/frappe/form/templates/address_list.html:31 msgid "Shipping Address" -msgstr "" +msgstr "Dostavna Adresa" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shop" -msgstr "" +msgstr "Trgovina" #. Label of the short_name (Data) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Short Name" -msgstr "" +msgstr "Kratko Ime" #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" -msgstr "" +msgstr "Kratke mustre tastature je lako pogoditi" #. Label of the shortcuts (Table) field in DocType 'Workspace' #. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "" +msgstr "Prečice" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" -msgstr "" +msgstr "Prikaži" #. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Show \"Call to Action\" in Blog" -msgstr "" +msgstr "Prikaži \"Poziv na Akciju\" u Blogu" #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' @@ -23711,25 +23907,31 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json msgid "Show Absolute Datetime in Timeline" -msgstr "" +msgstr "Prikaži apsolutni datum i vrijeme na vremenskoj traci" #. Label of the absolute_value (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Absolute Values" -msgstr "" +msgstr "Prikaži Apsolutne Vrijednosti" #: frappe/public/js/frappe/form/templates/form_sidebar.html:73 msgid "Show All" -msgstr "" +msgstr "Prikaži Sve" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Prikaži Metapodatke Autentifikacijskog Poslužitelja" #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" -msgstr "" +msgstr "Prikaži Kalendar" #. Label of the symbol_on_right (Check) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Show Currency Symbol on Right Side" -msgstr "" +msgstr "Prikaži simbol valute na desnoj strani" #. Label of the show_dashboard (Check) field in DocType 'DocField' #. Label of the show_dashboard (Check) field in DocType 'Custom Field' @@ -23739,121 +23941,127 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" -msgstr "" +msgstr "Prikaži Nadzornu Tablu" #. Label of the show_document (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Show Document" -msgstr "" +msgstr "Prikaži Dokument" #: frappe/www/error.html:42 frappe/www/error.html:65 msgid "Show Error" -msgstr "" +msgstr "Prikaži Grešku" #: frappe/public/js/frappe/form/layout.js:579 msgid "Show Fieldname (click to copy on clipboard)" -msgstr "" +msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)" #. Label of the first_document (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Show First Document Tour" -msgstr "" +msgstr "Prikaži Introdukciju Prvog Dokumenta" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Form Tour" -msgstr "" +msgstr "Prikaži Introdukciju Forme" #. Label of the allow_error_traceback (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "" +msgstr "Prikaži potpunu grešku i dozvoli prijavljivanje problema programeru" #. Label of the show_full_form (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Full Form?" -msgstr "" +msgstr "Prikaži Punu Formu?" #. Label of the show_full_number (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Full Number" -msgstr "" +msgstr "Prikaži puni broj" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" -msgstr "" +msgstr "Prikaži Prečice Tastature" #. Label of the show_labels (Check) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 msgid "Show Labels" -msgstr "" +msgstr "Prikaži Oznake" #. Label of the show_language_picker (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" -msgstr "" +msgstr "Prikaži Birač Jezika" #. Label of the line_breaks (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Line Breaks after Sections" -msgstr "" +msgstr "Prikaži Prijelome Reda nakon Sekcije" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" -msgstr "" +msgstr "Prikaži Veze" #. Label of the show_failed_logs (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Show Only Failed Logs" -msgstr "" +msgstr "Prikaži Samo Neuspjele zapise" #. Label of the show_percentage_stats (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Percentage Stats" -msgstr "" +msgstr "Prikaži Procentualnu Statistiku" #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" -msgstr "" +msgstr "Prikaži Dozvole" #: frappe/public/js/form_builder/form_builder.bundle.js:31 #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Show Preview" -msgstr "" +msgstr "Prikaži Pregled" #. Label of the show_preview_popup (Check) field in DocType 'DocType' #. Label of the show_preview_popup (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Preview Popup" -msgstr "" +msgstr "Prikaži skočni prozor za pregled" #. Label of the show_processlist (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Show Processlist" -msgstr "" +msgstr "Prikaži Procesnu Listu" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Prikaži metapodatke zaštićenih resursa" #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" -msgstr "" +msgstr "Prikaži Povezane Greške" #. Label of the show_report (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.js:43 #: frappe/core/doctype/report/report.js:16 msgid "Show Report" -msgstr "" +msgstr "Prikaži Izvještaj" #: frappe/public/js/frappe/list/list_filter.js:15 #: frappe/public/js/frappe/list/list_filter.js:94 msgid "Show Saved" -msgstr "" +msgstr "Prikaži Spremljeno" #. Label of the show_section_headings (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -23863,17 +24071,23 @@ msgstr "Prikaži Naslove Odjeljaka" #. Label of the show_sidebar (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" -msgstr "" +msgstr "Prikaži Bočnu Traku" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Prikaži ključ za društvenu prijavu kao autorizacijski poslužitelj" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" -msgstr "" +msgstr "Prikaži Oznake" #. Label of the show_title (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Title" -msgstr "" +msgstr "Prikaži Naziv" #. Label of the show_title_field_in_link (Check) field in DocType 'DocType' #. Label of the show_title_field_in_link (Check) field in DocType 'Customize @@ -23881,166 +24095,178 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" -msgstr "" +msgstr "Prikaži Naziv u Poljima Veza" #: frappe/public/js/frappe/views/reports/report_view.js:1527 msgid "Show Totals" -msgstr "" +msgstr "Prikaži Ukupno" #: frappe/desk/doctype/form_tour/form_tour.js:116 msgid "Show Tour" -msgstr "" +msgstr "Prikaži Introdukciju" #: frappe/core/doctype/data_import/data_import.js:448 msgid "Show Traceback" -msgstr "" +msgstr "Prikaži Povratno Praćenje" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Prikaži Vrijednosti preko Grafikona" #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" -msgstr "" +msgstr "Prikaži Upozorenja" #: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Show Weekends" -msgstr "" +msgstr "Prikaži Vikende" #. Label of the show_account_deletion_link (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" -msgstr "" +msgstr "Prikaži vezu za brisanje računa na stranici Moj Račun" #: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" -msgstr "" +msgstr "Prikaži sve Verzije" #: frappe/public/js/frappe/form/footer/form_timeline.js:69 msgid "Show all activity" -msgstr "" +msgstr "Prikaži sve Aktivnosti" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" -msgstr "" +msgstr "Prikaži sve Blogove" #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" -msgstr "" +msgstr "Prikaži kao Kopija za" #. Label of the show_attachments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show attachments" -msgstr "" +msgstr "Prikaži Priloge" #. Label of the show_footer_on_login (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" -msgstr "" +msgstr "Prikaži podnožje prilikom prijave" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show full form instead of a quick entry modal" -msgstr "" +msgstr "Prikaži punu formu umjesto modalnog za brzi unos" #. Label of the document_type (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Show in Module Section" -msgstr "" +msgstr "Prikaži u Sekciji Modula" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Prikaži u metapodacima resursa" #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" -msgstr "" +msgstr "Prikaži u filteru" #. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Show link to document" -msgstr "" +msgstr "Prikaži vezu do dokumenta" #. Label of the show_list (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show list" -msgstr "" +msgstr "Prikaži listu" #: frappe/public/js/frappe/form/layout.js:273 #: frappe/public/js/frappe/form/layout.js:291 msgid "Show more details" -msgstr "" +msgstr "Prikaži više detalja" #. Label of the show_on_timeline (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Show on Timeline" -msgstr "" +msgstr "Prikaži na Vremenskoj liniji" #. Description of the 'Stats Time Interval' (Select) field in DocType 'Number #. Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show percentage difference according to this time interval" -msgstr "" +msgstr "Prikaži procentnu razliku prema ovom vremenskom intervalu" #. Label of the show_sidebar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show sidebar" -msgstr "" +msgstr "Prikaži Bočnu Traku" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show title in browser window as \"Prefix - title\"" -msgstr "" +msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\"" #: frappe/public/js/frappe/widgets/onboarding_widget.js:148 msgid "Show {0} List" -msgstr "" +msgstr "Prikaži {0} Listu" #: frappe/public/js/frappe/views/reports/report_view.js:501 msgid "Showing only Numeric fields from Report" -msgstr "" +msgstr "Prikazuju se samo numerička polja iz Izvještaja" #: frappe/public/js/frappe/data_import/import_preview.js:153 msgid "Showing only first {0} rows out of {1}" -msgstr "" +msgstr "Prikazuje se samo prvih {0} redova od {1}" #. Label of the list_sidebar (Check) field in DocType 'User' #. Label of the form_sidebar (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Sidebar" -msgstr "" +msgstr "Bočna Traka" #. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' #: frappe/website/doctype/website_sidebar/website_sidebar.json msgid "Sidebar Items" -msgstr "" +msgstr "Stavke Bočne Trake" #. Label of the section_break_4 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Sidebar Settings" -msgstr "" +msgstr "Postavke Bočne Trake" #. Label of the section_break_17 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "" +msgstr "Bočna Traka i Komentari" #. Label of the sign_up_and_confirmation_section (Section Break) field in #. DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" -msgstr "" +msgstr "Prijava i Potvrda" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" -msgstr "" +msgstr "Prijava je onemogućena" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" -msgstr "" +msgstr "Prijavi se" #. Label of the sign_ups (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Sign ups" -msgstr "" +msgstr "Prijave" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -24055,150 +24281,152 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Signature" -msgstr "" +msgstr "Potpis" #: frappe/www/login.html:168 msgid "Signup Disabled" -msgstr "" +msgstr "Prijava Onemogućena" #: frappe/www/login.html:169 msgid "Signups have been disabled for this website." -msgstr "" +msgstr "Prijave su onemogućene za ovu web stranicu." #. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" +msgstr "Jednostavan Python izraz, primjer: status u (\"Zatvoreno\", \"Otkazano\")" #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "" +msgstr "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "" +msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" -msgstr "" +msgstr "Simultane Sesije" #: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Single DocTypes cannot be customized." -msgstr "" +msgstr "Pojedinačni DocTypes se ne mogu prilagoditi." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "" +msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles" #: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." -msgstr "" +msgstr "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije." #: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Size" -msgstr "" +msgstr "Veličina" #. Label of the size (Float) field in DocType 'System Health Report Tables' #: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json msgid "Size (MB)" -msgstr "" +msgstr "Veličina (MB)" #: frappe/public/js/frappe/widgets/onboarding_widget.js:82 #: frappe/public/js/onboarding_tours/onboarding_tours.js:18 msgid "Skip" -msgstr "" +msgstr "Preskoči" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" -msgstr "" +msgstr "Preskoči Autorizaciju" #: frappe/public/js/frappe/widgets/onboarding_widget.js:332 msgid "Skip Step" -msgstr "" +msgstr "Preskoči Korak" #. Label of the skipped (Check) field in DocType 'Patch Log' #: frappe/core/doctype/patch_log/patch_log.json msgid "Skipped" -msgstr "" +msgstr "Preskočeno" #: frappe/core/doctype/data_import/importer.py:952 msgid "Skipping Duplicate Column {0}" -msgstr "" +msgstr "Preskače se Kopirana Kolona {0}" #: frappe/core/doctype/data_import/importer.py:977 msgid "Skipping Untitled Column" -msgstr "" +msgstr "Preskače se Kolona bez Naziva" #: frappe/core/doctype/data_import/importer.py:963 msgid "Skipping column {0}" -msgstr "" +msgstr "Preskače se kolona {0}" #: frappe/modules/utils.py:176 msgid "Skipping fixture syncing for doctype {0} from file {1}" -msgstr "" +msgstr "Preskače se sinhronizacija fiksiranja za tip dokumenta {0} iz datoteke {1}" #: frappe/core/doctype/data_import/data_import.js:39 msgid "Skipping {0} of {1}, {2}" -msgstr "" +msgstr "Preskače se {0} od {1}, {2}" #. Label of the skype (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Skype" -msgstr "" +msgstr "Skype" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Slack" -msgstr "" +msgstr "Slack" #. Label of the slack_webhook_url (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Slack Channel" -msgstr "" +msgstr "Slack Kanal" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 msgid "Slack Webhook Error" -msgstr "" +msgstr "Slack Webhook Greška" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" -msgstr "" +msgstr "Slack Webhook URL" #. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Slideshow" -msgstr "" +msgstr "Dijaprojekcija" #. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Items" -msgstr "" +msgstr "Stavke Dijaprojekcije" #. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Name" -msgstr "" +msgstr "Naziv Dijaprojekcije" #. Description of a DocType #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow like display for the website" -msgstr "" +msgstr "Prikaz Dijaprojekcije za web stranicu" #. Label of the slug (Data) field in DocType 'UTM Campaign' #. Label of the slug (Data) field in DocType 'UTM Medium' @@ -24207,7 +24435,7 @@ msgstr "" #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json msgid "Slug" -msgstr "" +msgstr "Slug" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -24220,115 +24448,125 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Small Text" -msgstr "" +msgstr "Mali Tekst" #. Label of the smallest_currency_fraction_value (Currency) field in DocType #. 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Smallest Currency Fraction Value" -msgstr "" +msgstr "Najmanja Vrijednost Frakcije Valute" #. Description of the 'Smallest Currency Fraction Value' (Currency) field in #. DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" -msgstr "" +msgstr "Jedinica najmanjih frakcija u opticaju (kovanica). Za npr. 1 cent za USD i treba ga unijeti kao 0,01" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "Snippet and more variables: {0}" -msgstr "" +msgstr "Isječak i više varijabli: {0}" #. Name of a DocType #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Settings" -msgstr "" +msgstr "Postavke Društvenih Veza" #. Label of the social_link_type (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Type" -msgstr "" +msgstr "Tip Društvene Veze" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Social Login Key" -msgstr "" +msgstr "Ključ Prijave Društvenih Mreža" #. Label of the social_login_provider (Select) field in DocType 'Social Login #. Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Social Login Provider" -msgstr "" +msgstr "Dobavljač Društvenih Mreža" #. Label of the social_logins (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Social Logins" -msgstr "" +msgstr "Prijave Društvenih Mreža" #. Label of the socketio_ping_check (Select) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "SocketIO Ping Check" -msgstr "" +msgstr "SocketIO Ping Provjera" #. Label of the socketio_transport_mode (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "SocketIO Transport Mode" -msgstr "" +msgstr "SocketIO Transport Način" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Soft-Bounced" -msgstr "" +msgstr "Mekano Odbijeno" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "ID Softvera" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Verzija Softvera" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." -msgstr "" +msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10." #. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" -msgstr "" +msgstr "Neki poštanski sandučići zahtijevaju drugačije ime poslane mape, npr. \"INBOX.Sent\"" #: frappe/public/js/frappe/desk.js:20 msgid "Some of the features might not work in your browser. Please update your browser to the latest version." -msgstr "" +msgstr "Neke od funkcija možda neće raditi u vašem pretraživaču. Molimo ažurirajte svoj pretraživač na najnoviju verziju." #: frappe/public/js/frappe/views/translation_manager.js:101 msgid "Something went wrong" -msgstr "" +msgstr "Nešto je pošlo po zlu" #: frappe/integrations/doctype/google_calendar/google_calendar.py:133 msgid "Something went wrong during the token generation. Click on {0} to generate a new one." -msgstr "" +msgstr "Nešto je pošlo po zlu tokom generisanja tokena. Klikni na {0} da generišete novi." #: frappe/templates/includes/login/login.js:293 msgid "Something went wrong." -msgstr "" +msgstr "Nešto je pošlo po zlu." #: frappe/public/js/frappe/views/pageview.js:114 msgid "Sorry! I could not find what you were looking for." -msgstr "" +msgstr "Izvinite! Nije pronađeno ono što tražite." #: frappe/public/js/frappe/views/pageview.js:122 msgid "Sorry! You are not permitted to view this page." -msgstr "" +msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu." #: frappe/public/js/frappe/utils/datatable.js:6 msgid "Sort Ascending" -msgstr "" +msgstr "Sortiraj Uzlazno" #: frappe/public/js/frappe/utils/datatable.js:7 msgid "Sort Descending" -msgstr "" +msgstr "Sortiraj Silazno" #. Label of the sort_field (Select) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Field" -msgstr "" +msgstr "Polje sortiranja" #. Label of the sort_options (Check) field in DocType 'DocField' #. Label of the sort_options (Check) field in DocType 'Custom Field' @@ -24337,93 +24575,93 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Sort Options" -msgstr "" +msgstr "Opcije Sortiranja" #. Label of the sort_order (Select) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Order" -msgstr "" +msgstr "Redoslijed Sortiranja" #: frappe/core/doctype/doctype/doctype.py:1550 msgid "Sort field {0} must be a valid fieldname" -msgstr "" +msgstr "Polje sortiranja {0} mora biti važeći naziv polja" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" -msgstr "" +msgstr "Izvor" #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" -msgstr "" +msgstr "Naziv Izvora" #. Label of the source_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json #: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "" +msgstr "Izvorni Tekst" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 msgid "Spacer" -msgstr "" +msgstr "Razmak" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Spam" -msgstr "" +msgstr "Neželjena Pošta" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "SparkPost" -msgstr "" +msgstr "SparkPost" #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" -msgstr "" +msgstr "Posebni Znakovi nisu dozvoljeni" #: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" -msgstr "" +msgstr "Posebni Znakovi osim '-', '#', '.', '/', '{{' and '}}' nisu dozvoljeni u seriji imenovanja {0}" #. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Specify a custom timeout, default timeout is 1500 seconds" -msgstr "" +msgstr "Odredi prilagođeno vremensko ograničenje, standardno vremensko ograničenje je 1500 sekundi" #. Description of the 'Allowed embedding domains' (Small Text) field in DocType #. 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." -msgstr "" +msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac. Unesite jednu domenu po liniji (npr. https://example.com). Ako nema specificiranih domena, obrazac se može ugraditi samo na isto porijeklo." #. Label of the splash_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Splash Image" -msgstr "" +msgstr "Uvodna Slika" #: frappe/desk/reportview.py:419 #: frappe/public/js/frappe/web_form/web_form_list.js:175 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" -msgstr "" +msgstr "Red" #: frappe/public/js/print_format_builder/Field.vue:143 #: frappe/public/js/print_format_builder/Field.vue:164 msgid "Sr No." -msgstr "" +msgstr "Serijski Broj." #. Label of the stack_html (HTML) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder/recorder.js:82 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Stack Trace" -msgstr "" +msgstr "Stack Trace" #. Label of the standard (Select) field in DocType 'Page' #. Label of the standard (Check) field in DocType 'Desktop Icon' @@ -24439,72 +24677,72 @@ msgstr "" #: frappe/printing/doctype/print_style/print_style.json #: frappe/website/doctype/web_template/web_template.json msgid "Standard" -msgstr "" +msgstr "Standard" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." -msgstr "" +msgstr "Standardni DocType se ne može izbrisati." #: frappe/core/doctype/doctype/doctype.py:228 msgid "Standard DocType cannot have default print format, use Customize Form" -msgstr "" +msgstr "Standardni DocType ne može imati standard ormat za ispise, koristi Prilagodi Formu" #: frappe/desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" -msgstr "" +msgstr "Standard nije Postavljeno" #: frappe/core/page/permission_manager/permission_manager.js:132 msgid "Standard Permissions" -msgstr "" +msgstr "Standard Dozvole" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" -msgstr "" +msgstr "Standard Ispis Format ne može se ažurirati" #: frappe/printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." -msgstr "" +msgstr "Standard Ispis Stil ne može se promeniti. Kopiraj za uređivanje." #: frappe/desk/reportview.py:354 msgid "Standard Reports cannot be deleted" -msgstr "" +msgstr "Standard Izvještaji ne mogu se izbrisati" #: frappe/desk/reportview.py:325 msgid "Standard Reports cannot be edited" -msgstr "" +msgstr "Standard Izvještaji ne mogu se uređivati" #. Label of the standard_menu_items (Section Break) field in DocType 'Portal #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Standard Sidebar Menu" -msgstr "" +msgstr "Standardni Bočni Meni" #: frappe/website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." -msgstr "" +msgstr "Standardne Web Forme ne mogu se mijenjati, umjesto toga kopiraj web formu." #: frappe/website/doctype/web_page/web_page.js:92 msgid "Standard rich text editor with controls" -msgstr "" +msgstr "Standard uređivač rich teksta sa kontrolama" #: frappe/core/doctype/role/role.py:46 msgid "Standard roles cannot be disabled" -msgstr "" +msgstr "Standard uloge ne mogu se onemogućiti" #: frappe/core/doctype/role/role.py:32 msgid "Standard roles cannot be renamed" -msgstr "" +msgstr "Standard Uloge ne mogu se preimenovati" #: frappe/core/doctype/user_type/user_type.py:61 msgid "Standard user type {0} can not be deleted." -msgstr "" +msgstr "Standard tip korisnika {0} ne može se izbrisati." #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 #: frappe/printing/page/print/print.js:296 #: frappe/printing/page/print/print.js:343 msgid "Start" -msgstr "" +msgstr "Počni" #. Label of the start_date (Date) field in DocType 'Auto Repeat' #. Label of the start_date (Date) field in DocType 'Audit Trail' @@ -24515,61 +24753,61 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json msgid "Start Date" -msgstr "" +msgstr "Datum Početka" #. Label of the start_date_field (Select) field in DocType 'Calendar View' #: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Start Date Field" -msgstr "" +msgstr "Datum Početka" #: frappe/core/doctype/data_import/data_import.js:110 msgid "Start Import" -msgstr "" +msgstr "Počni Uvoz" #: frappe/core/doctype/recorder/recorder_list.js:201 msgid "Start Recording" -msgstr "" +msgstr "Počni Snimanje" #. Label of the birth_date (Datetime) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Start Time" -msgstr "" +msgstr "Počni Vrijeme" #: frappe/templates/includes/comments/comments.html:8 msgid "Start a new discussion" -msgstr "" +msgstr "Započni novu diskusiju" #: frappe/core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" -msgstr "" +msgstr "Počni unositi podatke ispod ove linije" #: frappe/printing/page/print_format_builder/print_format_builder.js:165 msgid "Start new Format" -msgstr "" +msgstr "Počni novi Format" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "StartTLS" -msgstr "" +msgstr "StartTLS" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Started" -msgstr "" +msgstr "Započet" #. Label of the started_at (Datetime) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Started At" -msgstr "" +msgstr "Počelo u" #: frappe/desk/page/setup_wizard/setup_wizard.js:286 msgid "Starting Frappe ..." -msgstr "" +msgstr "Pokreće se Frappe..." #. Label of the starts_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Starts on" -msgstr "" +msgstr "Počinje" #. Label of the state (Data) field in DocType 'Token Cache' #. Label of the state (Link) field in DocType 'Workflow Document State' @@ -24581,18 +24819,18 @@ msgstr "" #: frappe/workflow/doctype/workflow_state/workflow_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "" +msgstr "Stanje" #: frappe/public/js/workflow_builder/components/Properties.vue:24 msgid "State Properties" -msgstr "" +msgstr "Svojstva Stanja" #. Label of the state (Data) field in DocType 'Address' #. Label of the state (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "State/Province" -msgstr "" +msgstr "Zemlja/Pokrajina" #. Label of the document_states_section (Tab Break) field in DocType 'DocType' #. Label of the states (Table) field in DocType 'Customize Form' @@ -24601,29 +24839,29 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/workflow/doctype/workflow/workflow.json msgid "States" -msgstr "" +msgstr "Stanja" #. Label of the parameters (Table) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Static Parameters" -msgstr "" +msgstr "Statički parametri" #. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Statistics" -msgstr "" +msgstr "Statistika" #. Label of the stats_section (Section Break) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/form/dashboard.js:43 #: frappe/public/js/frappe/form/templates/form_dashboard.html:13 msgid "Stats" -msgstr "" +msgstr "Statistika" #. Label of the stats_time_interval (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Stats Time Interval" -msgstr "" +msgstr "Vremenski Interval Statistike" #. Label of the status (Select) field in DocType 'Auto Repeat' #. Label of the status (Select) field in DocType 'Contact' @@ -24644,7 +24882,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24669,7 +24906,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24678,130 +24914,130 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Status" -msgstr "" +msgstr "Status" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" -msgstr "" +msgstr "Status Ažuriran" #: frappe/email/doctype/email_queue/email_queue.js:37 msgid "Status Updated. The email will be picked up in the next scheduled run." -msgstr "" +msgstr "Status Ažuriran. E-pošta će biti preuzeta u sljedećem zakazanom izvođenju." #: frappe/www/message.html:24 msgid "Status: {0}" -msgstr "" +msgstr "Status: {0}" #. Label of the step (Link) field in DocType 'Onboarding Step Map' #: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Step" -msgstr "" +msgstr "Korak" #. Label of the steps (Table) field in DocType 'Form Tour' #. Label of the steps (Table) field in DocType 'Module Onboarding' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Steps" -msgstr "" +msgstr "Koraci" #: frappe/www/qrcode.html:11 msgid "Steps to verify your login" -msgstr "" +msgstr "Koraci za provjeru vaše prijave" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json #: frappe/public/js/frappe/form/grid_row.js:438 msgid "Sticky" -msgstr "" +msgstr "Sticky" #: frappe/core/doctype/recorder/recorder_list.js:87 msgid "Stop" -msgstr "" +msgstr "Zaustavi" #. Label of the stopped (Check) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Stopped" -msgstr "" +msgstr "Zaustavljeno" #. Label of the db_storage_usage (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Storage Usage (MB)" -msgstr "" +msgstr "Korištenje Pohrane (MB)" #. Label of the top_db_tables (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Storage Usage By Table" -msgstr "" +msgstr "Korištenje Pohrane po Tabelama" #. Label of the store_attached_pdf_document (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Store Attached PDF Document" -msgstr "" +msgstr "Pohrani priloženi PDF dokument" #. Description of the 'Last Known Versions' (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." -msgstr "" +msgstr "Pohranjuje JSON posljednjih poznatih verzija različitih instaliranih aplikacija. Koristi se za prikaz bilješki o izdanju." #. Description of the 'Last Reset Password Key Generated On' (Datetime) field #. in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Stores the datetime when the last reset password key was generated." -msgstr "" +msgstr "Pohranjuje datum i vrijeme kada je generisan zadnji ključ za poništavanje lozinke." #: frappe/utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" -msgstr "" +msgstr "Ravne redove ključeva je lako pogoditi" #. Label of the strip_exif_metadata_from_uploaded_images (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" -msgstr "" +msgstr "Skini EXIF oznake sa učitanjh slika" #: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" -msgstr "" +msgstr "Snažna" #. Label of the custom_css (Tab Break) field in DocType 'Web Page' #. Label of the style (Select) field in DocType 'Workflow State' #: frappe/website/doctype/web_page/web_page.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style" -msgstr "" +msgstr "Stil" #. Label of the section_break_9 (Section Break) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Style Settings" -msgstr "" +msgstr "Postavke Stila" #. Description of the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" -msgstr "" +msgstr "Stil predstavlja boju dugmeta: Uspjeh - Zelena, Opasno - Crvena, Inverzna - Crna, Primarna - Tamnoplava, Info - Svetlo Plava, Upozorenje - Narandžasta" #. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Stylesheet" -msgstr "" +msgstr "Šablon Stila" #. Description of the 'Fraction' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Sub-currency. For e.g. \"Cent\"" -msgstr "" +msgstr "Podvaluta. Za npr. \"Cent\"" #. Description of the 'Subdomain' (Small Text) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Sub-domain provided by erpnext.com" -msgstr "" +msgstr "Poddomenu obezbjeđuje erpnext.com" #. Label of the subdomain (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Subdomain" -msgstr "" +msgstr "Poddomena" #. Label of the subject (Data) field in DocType 'Auto Repeat' #. Label of the subject (Small Text) field in DocType 'Activity Log' @@ -24810,8 +25046,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24820,13 +25054,12 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" -msgstr "" +msgstr "Predmet" #. Label of the subject_field (Data) field in DocType 'DocType' #. Label of the subject_field (Data) field in DocType 'Customize Form' @@ -24835,16 +25068,16 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Subject Field" -msgstr "" +msgstr "Polje Predmeta" #: frappe/core/doctype/doctype/doctype.py:1935 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" -msgstr "" +msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta" #. Name of a DocType #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Submission Queue" -msgstr "" +msgstr "Red Podnošenja" #. Label of the submit (Check) field in DocType 'Custom DocPerm' #. Label of the submit (Check) field in DocType 'DocPerm' @@ -24860,70 +25093,70 @@ msgstr "" #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 msgid "Submit" -msgstr "" +msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" -msgstr "" +msgstr "Rezerviši" #: frappe/website/doctype/web_form/templates/web_form.html:47 msgctxt "Button in web form" msgid "Submit" -msgstr "" +msgstr "Pošalji" #: frappe/public/js/frappe/ui/dialog.js:62 msgctxt "Primary action in dialog" msgid "Submit" -msgstr "" +msgstr "Pošalji" #: frappe/public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" -msgstr "" +msgstr "Pošalji" #: frappe/public/js/frappe/desk.js:227 msgctxt "Submit password for Email Account" msgid "Submit" -msgstr "" +msgstr "Potvrdi" #. Label of the submit_after_import (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Submit After Import" -msgstr "" +msgstr "Rezerviši Nakon Uvoza" #: frappe/core/page/permission_manager/permission_manager_help.html:39 msgid "Submit an Issue" -msgstr "" +msgstr "Prijavi Slučaj" #: frappe/website/doctype/web_form/templates/web_form.html:156 msgctxt "Button in web form" msgid "Submit another response" -msgstr "" +msgstr "Podnesi drugi odgovor" #. Label of the button_label (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Submit button label" -msgstr "" +msgstr "Oznaka Dugmeta" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 msgid "Submit on Creation" -msgstr "" +msgstr "Rezerviši pri Kreiranju" #: frappe/public/js/frappe/widgets/onboarding_widget.js:395 msgid "Submit this document to complete this step." -msgstr "" +msgstr "Pošalji ovaj dokument da dovršite ovaj korak." #: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" -msgstr "" +msgstr "Pošalji ovaj dokument da potvrdite" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" -msgstr "" +msgstr "Pošalji {0} dokumenata?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -24931,36 +25164,36 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:539 #: frappe/website/doctype/web_form/templates/web_form.html:136 msgid "Submitted" -msgstr "" +msgstr "Rezervisano" #: frappe/workflow/doctype/workflow/workflow.py:103 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" -msgstr "" +msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt. Prijelazni red {0}" #: frappe/public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" -msgstr "" +msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt tokom prijelaza iz {0} Stanja u {1} Stanje" #: frappe/public/js/frappe/form/save.js:10 msgctxt "Freeze message while submitting a document" msgid "Submitting" -msgstr "" +msgstr "Rezerviše se" #: frappe/desk/doctype/bulk_update/bulk_update.py:88 msgid "Submitting {0}" -msgstr "" +msgstr "Pošalji {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Subsidiary" -msgstr "" +msgstr "Filijala" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' #. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" -msgstr "" +msgstr "Podnaziv" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -24982,96 +25215,96 @@ msgstr "" #: frappe/workflow/doctype/workflow_action/workflow_action.py:171 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" -msgstr "" +msgstr "Uspjeh" #. Name of a DocType #: frappe/core/doctype/success_action/success_action.json msgid "Success Action" -msgstr "" +msgstr "Radnja Uspjeha" #. Label of the success_message (Data) field in DocType 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Success Message" -msgstr "" +msgstr "Poruka Uspjeha" #. Label of the success_uri (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Success URI" -msgstr "" +msgstr "URI Uspjeha" #. Label of the success_url (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success URL" -msgstr "" +msgstr "URL uspjeha" #. Label of the success_message (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success message" -msgstr "" +msgstr "Poruka Uspjeha" #. Label of the success_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success title" -msgstr "" +msgstr "Naziv Uspjeha" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" -msgstr "" +msgstr "Uspjeh! Spremni ste 👍" #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" -msgstr "" +msgstr "Broj Uspješnih Poslova" #: frappe/model/workflow.py:307 msgid "Successful Transactions" -msgstr "" +msgstr "Uspješne Transakcije" #: frappe/model/rename_doc.py:699 msgid "Successful: {0} to {1}" -msgstr "" +msgstr "Uspješno: {0} do {1}" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 msgid "Successfully Updated" -msgstr "" +msgstr "Uspješno Ažurirano" #: frappe/core/doctype/data_import/data_import.js:423 msgid "Successfully imported {0}" -msgstr "" +msgstr "Uspješno uvezeno {0}" #: frappe/core/doctype/data_import/data_import.js:144 msgid "Successfully imported {0} out of {1} records." -msgstr "" +msgstr "Uspješno uvezeno {0} od {1} zapisa." #: frappe/desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." -msgstr "" +msgstr "Uspješno poništen status introdukcije za sve korisnike." #: frappe/public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" -msgstr "" +msgstr "Uspješno ažurirani prijevodi" #: frappe/core/doctype/data_import/data_import.js:431 msgid "Successfully updated {0}" -msgstr "" +msgstr "Uspješno ažurirano {0}" #: frappe/core/doctype/data_import/data_import.js:149 msgid "Successfully updated {0} out of {1} records." -msgstr "" +msgstr "Uspješno ažurirano {0} od {1} zapisa." #: frappe/core/doctype/recorder/recorder.js:15 msgid "Suggest Optimizations" -msgstr "" +msgstr "Predloži Optimizacije" #. Label of the suggested_indexes (Table) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Suggested Indexes" -msgstr "" +msgstr "Predloženi Indeksi" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" -msgstr "" +msgstr "Predloženo Korisničko Ime: {0}" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' @@ -25080,15 +25313,15 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/ui/group_by/group_by.js:20 msgid "Sum" -msgstr "" +msgstr "Suma" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" -msgstr "" +msgstr "Suma od {0}" #: frappe/public/js/frappe/views/interaction.js:88 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -25104,24 +25337,24 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Sunday" -msgstr "" +msgstr "Nedjelja" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" -msgstr "" +msgstr "Obustavi Slanje" #: frappe/public/js/frappe/ui/capture.js:276 msgid "Switch Camera" -msgstr "" +msgstr "Promijeni Kameru" #: frappe/public/js/frappe/desk.js:96 #: frappe/public/js/frappe/ui/theme_switcher.js:11 msgid "Switch Theme" -msgstr "" +msgstr "Promijeni Temu" #: frappe/templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" -msgstr "" +msgstr "Promjeni na Radnu Površinu" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" @@ -25129,127 +25362,127 @@ msgstr "Prijeđite na Frappe CRM za pametniju prodaju" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" -msgstr "" +msgstr "Mijenja se Kamera" #. Label of the symbol (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Symbol" -msgstr "" +msgstr "Simbol" #. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' #. Label of the sync (Section Break) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Sync" -msgstr "" +msgstr "Sinkronizacija" #: frappe/integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" -msgstr "" +msgstr "Sinhroniziraj Kalendar" #: frappe/integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" -msgstr "" +msgstr "Sinhroniziraj Kontakte" #. Label of the sync_as_public (Check) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Sync events from Google as public" -msgstr "" +msgstr "Sinhroniziraj događaje s Googlea kao javne" #: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" -msgstr "" +msgstr "Sinhronizacija pri Migraciji" #: frappe/integrations/doctype/google_calendar/google_calendar.py:312 msgid "Sync token was invalid and has been reset, Retry syncing." -msgstr "" +msgstr "Token za sinhronizaciju je nevažeći i vraćen je na standard postavke. Ponovi sinhronizaciju." #. Label of the sync_with_google_calendar (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Sync with Google Calendar" -msgstr "" +msgstr "Sinhroniziraj sa Google Kalendarom" #. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Sync with Google Contacts" -msgstr "" +msgstr "Sinhroniziraj s Google Kontaktima" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" -msgstr "" +msgstr "Sinhronizacija {0} Polja" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 msgid "Synced Fields" -msgstr "" +msgstr "Sinhronizovana Polja" #: frappe/integrations/doctype/google_calendar/google_calendar.js:31 #: frappe/integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" -msgstr "" +msgstr "Sinhronizacija u toku" #: frappe/integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" -msgstr "" +msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" -msgstr "" +msgstr "Greška Sintakse" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "System" -msgstr "" +msgstr "Sistem" #. Name of a DocType #: frappe/desk/doctype/system_console/system_console.json #: frappe/public/js/frappe/ui/dropdown_console.js:4 msgid "System Console" -msgstr "" +msgstr "Sistemska Konzola" #: frappe/custom/doctype/custom_field/custom_field.py:408 msgid "System Generated Fields can not be renamed" -msgstr "" +msgstr "Sistemski Generisana Polja ne mogu se preimenovati" #. Label of a standard help item #. Type: Route #: frappe/hooks.py msgid "System Health" -msgstr "" +msgstr "Status Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "System Health Report" -msgstr "" +msgstr "Izvještaj Stanja Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json msgid "System Health Report Errors" -msgstr "" +msgstr "Greške Izvještaja Stanja Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "System Health Report Failing Jobs" -msgstr "" +msgstr "Izvještaj Neuspješnih Poslova Stanja Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "System Health Report Queue" -msgstr "" +msgstr "Red Čekanja Izvještaja Stanja sSistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json msgid "System Health Report Tables" -msgstr "" +msgstr "Tabele Izvještaja Stanja Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "System Health Report Workers" -msgstr "" +msgstr "Status Sistema Izvještaji Radnici" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "System Logs" -msgstr "" +msgstr "Sistemski Zapisnici" #. Name of a role #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -25369,6 +25602,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25400,33 +25634,38 @@ msgstr "Upravitelj Sistema" #: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." -msgstr "" +msgstr "Privilegije Upravitelja Sistema su obevezne." #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "System Notification" -msgstr "" +msgstr "Sistemsko Obavještenje" #. Label of the system_page (Check) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "System Page" -msgstr "" +msgstr "Sistemska Stranica" #. Name of a DocType #: frappe/core/doctype/system_settings/system_settings.json msgid "System Settings" -msgstr "" +msgstr "Postavke Sistema" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "System managers are allowed by default" -msgstr "" +msgstr "Upravitelji Sistema dopušteni su prema standard postavkama" #: frappe/public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" msgid "T" -msgstr "" +msgstr "T" + +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "URI Uvjeta Pružanja Usluge" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25435,11 +25674,11 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Tab Break" -msgstr "" +msgstr "Prijelom Kartice" #: frappe/public/js/form_builder/components/Tabs.vue:135 msgid "Tab Label" -msgstr "" +msgstr "Oznaka Kartice" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the table (Data) field in DocType 'Recorder Suggested Index' @@ -25456,30 +25695,30 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Table" -msgstr "" +msgstr "Tabela" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Table Break" -msgstr "" +msgstr "Prijelom Tabele" #: frappe/core/doctype/version/version_view.html:72 msgid "Table Field" -msgstr "" +msgstr "Polje Tabele" #. Label of the table_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Table Fieldname" -msgstr "" +msgstr "Naziv Polja Tabele" #: frappe/core/doctype/doctype/doctype.py:1203 msgid "Table Fieldname Missing" -msgstr "" +msgstr "Nedostaje Naziv Polja Tabele" #. Label of the table_html (HTML) field in DocType 'Version' #: frappe/core/doctype/version/version.json msgid "Table HTML" -msgstr "" +msgstr "HTML Tabele" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25488,34 +25727,34 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Table MultiSelect" -msgstr "" +msgstr "Višestruki Odabir Tabele" #: frappe/custom/doctype/customize_form/customize_form.js:229 msgid "Table Trimmed" -msgstr "" +msgstr "Tabela Optimizirana" #: frappe/public/js/frappe/form/grid.js:1169 msgid "Table updated" -msgstr "" +msgstr "Tabela Ažurirana" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" -msgstr "" +msgstr "Tabela {0} ne može biti prazna" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Tabloid" -msgstr "" +msgstr "Tabloid" #. Name of a DocType #: frappe/desk/doctype/tag/tag.json msgid "Tag" -msgstr "" +msgstr "Oznaka" #. Name of a DocType #: frappe/desk/doctype/tag_link/tag_link.json msgid "Tag Link" -msgstr "" +msgstr "Veza Oznake" #: frappe/model/meta.py:59 #: frappe/public/js/frappe/form/templates/form_sidebar.html:81 @@ -25527,30 +25766,30 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:133 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" -msgstr "" +msgstr "Oznake" #: frappe/public/js/frappe/ui/capture.js:220 msgid "Take Photo" -msgstr "" +msgstr "Uslikaj" #. Label of the target (Data) field in DocType 'Portal Menu Item' #. Label of the target (Small Text) field in DocType 'Website Route Redirect' #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Target" -msgstr "" +msgstr "Cilj" #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 msgid "Task" -msgstr "" +msgstr "Zadatak" #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json #: frappe/www/about.html:45 msgid "Team Members" -msgstr "" +msgstr "Članovi Tima" #. Label of the team_members_heading (Data) field in DocType 'About Us #. Settings' @@ -25562,13 +25801,13 @@ msgstr "Naslov Članova Tima" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Subtitle" -msgstr "" +msgstr "Podnaslov Članova Tma" #. Label of the telemetry_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Telemetry" -msgstr "" +msgstr "Telemetrija" #. Label of the template (Link) field in DocType 'Auto Repeat' #. Label of the template (Code) field in DocType 'Address Template' @@ -25579,59 +25818,55 @@ msgstr "" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json #: frappe/website/doctype/web_template/web_template.json msgid "Template" -msgstr "" +msgstr "Šablon" #: frappe/core/doctype/data_import/importer.py:483 #: frappe/core/doctype/data_import/importer.py:610 msgid "Template Error" -msgstr "" +msgstr "Greška Šablona" #. Label of the template_file (Data) field in DocType 'Print Format Field #. Template' #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Template File" -msgstr "" +msgstr "Datoteka Šablona" #. Label of the template_options (Code) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Template Options" -msgstr "" +msgstr "Šablon Opcije" #. Label of the template_warnings (Code) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Template Warnings" -msgstr "" +msgstr "Šablon Upozorenja" #: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" -msgstr "" +msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" -msgstr "" +msgstr "Privremeno Onemogućeno" #: frappe/core/doctype/translation/test_translation.py:47 #: frappe/core/doctype/translation/test_translation.py:54 msgid "Test Data" -msgstr "" +msgstr "Test Podaci" #. Label of the test_job_id (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Test Job ID" -msgstr "" +msgstr "ID Test Posla" #: frappe/core/doctype/translation/test_translation.py:49 #: frappe/core/doctype/translation/test_translation.py:57 msgid "Test Spanish" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" +msgstr "Test Španski" #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" -msgstr "" +msgstr "Test Mapa" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25644,22 +25879,22 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Text" -msgstr "" +msgstr "Tekst" #. Label of the text_align (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Text Align" -msgstr "" +msgstr "Poravnanje Teksta" #. Label of the text_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "" +msgstr "Boja Teksta" #. Label of the text_content (Code) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Text Content" -msgstr "" +msgstr "Tekstualni Sadržaj" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25670,130 +25905,132 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Text Editor" -msgstr "" +msgstr "Uređivač Teksta" #: frappe/templates/emails/password_reset.html:5 msgid "Thank you" -msgstr "" +msgstr "Hvala vam" #: frappe/www/contact.py:39 msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" "Your query:\n\n" "{0}" -msgstr "" +msgstr "Hvala vam što ste nam se obratili. Javit ćemo Vam se u najkraćem mogućem roku.\n\n\n" +"Vaš upit:\n\n" +"{0}" #: frappe/website/doctype/web_form/templates/web_form.html:140 msgid "Thank you for spending your valuable time to fill this form" -msgstr "" +msgstr "Hvala vam što ste potrošili svoje dragocjeno vrijeme da ispunite ovaj obrazac" #: frappe/templates/emails/auto_reply.html:1 msgid "Thank you for your email" -msgstr "" +msgstr "Hvala vam na poruci e-pošte" #: frappe/website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" +msgstr "Hvala vam na povratnim informacijama!" #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" -msgstr "" +msgstr "Hvala vam na poruci" #: frappe/templates/emails/new_user.html:16 msgid "Thanks" -msgstr "" +msgstr "Hvala" #: frappe/templates/emails/auto_repeat_fail.html:3 msgid "The Auto Repeat for this document has been disabled." -msgstr "" +msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno." #: frappe/public/js/frappe/form/grid.js:1192 msgid "The CSV format is case sensitive" -msgstr "" +msgstr "CSV format razlikuje velika i mala slova" #. Description of the 'Client ID' (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "The Client ID obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" -msgstr "" +msgstr "ID klijenta dobijen sa Google Cloud Console pod \n" +"\"API & usluge\" > \"Akreditivi\"\n" +"" #: frappe/email/doctype/notification/notification.py:201 msgid "The Condition '{0}' is invalid" -msgstr "" +msgstr "Uvjet '{0}' je nevažeći" #: frappe/core/doctype/file/file.py:208 msgid "The File URL you've entered is incorrect" -msgstr "" +msgstr "URL Datoteke koji ste unijeli nije tačan" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 msgid "The Next Scheduled Date cannot be later than the End Date." -msgstr "" +msgstr "Sljedeći zakazani datum ne može biti kasniji od datuma završetka." #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" -msgstr "" +msgstr "Ključ URL Guranog Relejnog Servera (`push_relay_server_url`) nedostaje u konfiguraciji vaše stranice" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." -msgstr "" +msgstr "Zapis Korisnika za ovaj zahtjev je automatski obrisan zbog neaktivnosti administratora sistema." #: frappe/public/js/frappe/desk.js:162 msgid "The application has been updated to a new version, please refresh this page" -msgstr "" +msgstr "Aplikacija je ažurirana na novu verziju, osvježi ovu stranicu" #. Description of the 'Application Name' (Data) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "The application name will be used in the Login page." -msgstr "" +msgstr "Naziv aplikacije će se koristiti na stranici za prijavu." #: frappe/public/js/frappe/views/interaction.js:323 msgid "The attachments could not be correctly linked to the new document" -msgstr "" +msgstr "Prilozi se ne mogu ispravno povezati s novim dokumentom" #. Description of the 'API Key' (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "The browser API key obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" -msgstr "" +msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod \n" +"\"API-ji & Servisi\" > \"Akreditivi\"\n" +"" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." -msgstr "" +msgstr "Promjene su vraćene." #: frappe/core/doctype/data_import/importer.py:1009 msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." -msgstr "" +msgstr "Kolona {0} ima {1} različite formate datuma. Automatsko postavljanje {2} kao zadanog formata jer je najčešći. Molimo promijenite ostale vrijednosti u ovoj koloni u ovaj format." #: frappe/templates/includes/comments/comments.py:34 msgid "The comment cannot be empty" -msgstr "" +msgstr "Komentar ne može biti prazan" #: frappe/templates/emails/workflow_action.html:9 msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." -msgstr "" +msgstr "Sadržaj ove e-pošte je strogo povjerljiv. Molimo vas da nikome ne prosljeđujete ovu e-poštu." #: frappe/public/js/frappe/list/list_view.js:658 msgid "The count shown is an estimated count. Click here to see the accurate count." -msgstr "" +msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj." #. Description of the 'Code' (Data) field in DocType 'Country' #: frappe/geo/doctype/country/country.json msgid "The country's ISO 3166 ALPHA-2 code." -msgstr "" +msgstr "ISO 3166 ALPHA-2 kod zemlje." #: frappe/public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" -msgstr "" +msgstr "Dokument nije mogao biti ispravno dodijeljen" #: frappe/public/js/frappe/views/interaction.js:295 msgid "The document has been assigned to {0}" -msgstr "" +msgstr "Dokument je dodijeljen {0}" #. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard #. Chart' @@ -25802,126 +26039,128 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "The document type selected is a child table, so the parent document type is required." -msgstr "" +msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nadređenog dokumenta." #: frappe/core/doctype/user_type/user_type.py:110 msgid "The field {0} is mandatory" -msgstr "" +msgstr "Polje {0} je obavezno" #: frappe/core/doctype/file/file.py:145 msgid "The fieldname you've specified in Attached To Field is invalid" -msgstr "" +msgstr "Naziv polja koje ste naveli u Priloženo polju je nevažeći" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 msgid "The following Assignment Days have been repeated: {0}" -msgstr "" +msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" -msgstr "" +msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" -msgstr "" +msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" -msgstr "" +msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}" #: frappe/core/doctype/user_type/user_type.py:89 msgid "The limit has not set for the user type {0} in the site config file." -msgstr "" +msgstr "Ograničenje nije postavljeno za tip korisnika {0} u konfiguracijskoj datoteci stranice." #: frappe/templates/emails/login_with_email_link.html:21 msgid "The link will expire in {0} minutes" -msgstr "" +msgstr "Veza će isteći za {0} minuta" #: frappe/www/login.py:194 msgid "The link you trying to login is invalid or expired." -msgstr "" +msgstr "Veza na koju se pokušavate prijaviti je nevažeća ili je istekla." #: frappe/website/doctype/web_page/web_page.js:125 msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." -msgstr "" +msgstr "Meta opis je HTML atribut koji pruža kratak sažetak web stranice. Pretraživači kao što je Google često prikazuju meta opis u rezultatima pretrage, što može uticati na stopu klikanja." #: frappe/website/doctype/web_page/web_page.js:132 msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." -msgstr "" +msgstr "Meta slika je jedinstvena slika koja predstavlja sadržaj stranice. Slike za ovu karticu trebaju biti najmanje 280px u širinu i najmanje 150px u visinu." #. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "The name that will appear in Google Calendar" -msgstr "" +msgstr "Naziv koji će se pojaviti u Google Kalendaru" #. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "The next tour will start from where the user left off." -msgstr "" +msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao." #. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "The number of seconds until the request expires" -msgstr "" +msgstr "Broj sekundi do isteka zahtjeva" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." -msgstr "" +msgstr "Lozinka vašeg računa je istekla." #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 msgid "The process for deletion of {0} data associated with {1} has been initiated." -msgstr "" +msgstr "Proces brisanja {0} podataka povezanih sa {1} je pokrenut." #. Description of the 'App ID' (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "The project number obtained from Google Cloud Console under \n" "\"IAM & Admin\" > \"Settings\"\n" "" -msgstr "" +msgstr "Broj projekta dobijen od Google Cloud Console pod \n" +"\"IAM & Admin\" > \"Postavke\"\n" +"" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" -msgstr "" +msgstr "Veza za poništavanje lozinke je istekla" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" -msgstr "" +msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" -msgstr "" +msgstr "Resurs koji tražite nije dostupan" #: frappe/core/doctype/user_type/user_type.py:114 msgid "The role {0} should be a custom role." -msgstr "" +msgstr "Uloga {0} bi trebala biti prilagođena uloga." #: frappe/core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." -msgstr "" +msgstr "Odabrani dokument {0} nije {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." -msgstr "" +msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka." #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." -msgstr "" +msgstr "Sistem pruža mnogo unapred definisanih uloga. Možete dodati nove uloge za postavljanje finijih dozvola." #: frappe/core/doctype/user_type/user_type.py:97 msgid "The total number of user document types limit has been crossed." -msgstr "" +msgstr "Prekoračeno je ograničenje ukupnog broja tipova korisničkih dokumenata." #: frappe/public/js/frappe/form/controls/data.js:25 msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." -msgstr "" +msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopušteni broj znakova je {1}." #. Description of the 'Condition' (Small Text) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "The webhook will be triggered if this expression is true" -msgstr "" +msgstr "Webhook će se pokrenuti ako je ovaj izraz istinit" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 msgid "The {0} is already on auto repeat {1}" -msgstr "" +msgstr "{0} je već na automatskom ponavljanju {1}" #. Label of the section_break_6 (Section Break) field in DocType 'Website #. Settings' @@ -25930,210 +26169,217 @@ msgstr "" #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme" -msgstr "" +msgstr "Tema" #: frappe/public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" -msgstr "" +msgstr "Tema Promjenjena" #. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website #. Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme Configuration" -msgstr "" +msgstr "Konfiguracija Teme" #. Label of the theme_url (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme URL" -msgstr "" +msgstr "URL Teme" #: frappe/workflow/doctype/workflow/workflow.js:125 msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." -msgstr "" +msgstr "Postoje dokumenti koji imaju stanja radnog toka koja ne postoje u ovom radnom toku. Preporučuje se da ta stanja dodate u radni tok i promijenite njihova stanja prije uklanjanja ovih stanja." #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "There are no upcoming events for you." -msgstr "" +msgstr "Nema predstojećih događaja za vas." #: frappe/website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" -msgstr "" +msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" -msgstr "" +msgstr "U redu čekanja već postoji {0} s istim filterima:" #: frappe/website/doctype/web_form/web_form.js:81 #: frappe/website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" -msgstr "" +msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" #: frappe/core/doctype/doctype/doctype.py:1443 msgid "There can be only one Fold in a form" -msgstr "" +msgstr "U obrascu može postojati samo jedan preklop" #: frappe/contacts/doctype/address/address.py:183 msgid "There is an error in your Address Template {0}" -msgstr "" +msgstr "Postoji greška u vašem šablonu adrese {0}" #: frappe/core/doctype/data_export/exporter.py:162 msgid "There is no data to be exported" -msgstr "" +msgstr "Nema podataka za izvoz" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." -msgstr "" +msgstr "Trenutno nema ništa novo za pokazati." #: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" -msgstr "" +msgstr "Postoji neki problem sa urlom datoteke: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" -msgstr "" +msgstr "Postoji {0} s istim filterima već u redu čekanja:" #: frappe/core/page/permission_manager/permission_manager.py:156 msgid "There must be atleast one permission rule." -msgstr "" +msgstr "Mora postojati barem jedno pravilo dozvole." #: frappe/www/error.py:17 msgid "There was an error building this page" -msgstr "" +msgstr "Došlo je do greške pri izradi ove stranice" #: frappe/public/js/frappe/views/kanban/kanban_view.js:182 msgid "There was an error saving filters" -msgstr "" +msgstr "Došlo je do greške prilikom spremanja filtera" #: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" -msgstr "" +msgstr "Bilo je grešaka" #: frappe/public/js/frappe/views/interaction.js:277 msgid "There were errors while creating the document. Please try again." -msgstr "" +msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." -msgstr "" +msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo." #: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" -msgstr "" +msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru" #. Description of the 'Announcement Widget' (Text Editor) field in DocType #. 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "These announcements will appear inside a dismissible alert below the Navbar." -msgstr "" +msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake." + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Ova polja se koriste za pružanje metapodataka poslužitelja resursa klijentima koji upituju krajnju točku \"dobro poznatog zaštićenog resursa\"." #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "These settings are required if 'Custom' LDAP Directory is used" -msgstr "" +msgstr "Ove su postavke potrebne ako se koristi 'Custom' LDAP imenik" #. Description of the 'Defaults' (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." -msgstr "" +msgstr "Ove vrijednosti će se automatski ažurirati u transakcijama, a također će biti korisne za ograničavanje dozvola za ovog korisnika na transakcije koje sadrže ove vrijednosti." #: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" -msgstr "" +msgstr "Aplikacije Trećih Strana" #. Label of the third_party_authentication (Section Break) field in DocType #. 'User' #: frappe/core/doctype/user/user.json msgid "Third Party Authentication" -msgstr "" +msgstr "Autentifikacija Trećeih Strane" #: frappe/geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" -msgstr "" +msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" -msgstr "" +msgstr "Ova Oglasna Tabla će biti privatna" #: frappe/public/js/frappe/ui/filters/filter.js:666 msgid "This Month" -msgstr "" +msgstr "Ovaj Mjesec" #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" -msgstr "" +msgstr "Ovo Tromjesečje" #: frappe/public/js/frappe/ui/filters/filter.js:662 msgid "This Week" -msgstr "" +msgstr "Ovaj Tjedan" #: frappe/public/js/frappe/ui/filters/filter.js:674 msgid "This Year" -msgstr "" +msgstr "Ove Godine" #: frappe/custom/doctype/customize_form/customize_form.js:220 msgid "This action is irreversible. Do you wish to continue?" -msgstr "" +msgstr "Ova radnja je nepovratna. Da li želite da nastavite?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" -msgstr "" +msgstr "Ova radnja je dozvoljena samo za {}" #: frappe/public/js/frappe/form/toolbar.js:117 #: frappe/public/js/frappe/model/model.js:706 msgid "This cannot be undone" -msgstr "" +msgstr "Ovo se ne može poništiti" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "This card will be available to all Users if this is set" -msgstr "" +msgstr "Ova kartica će biti dostupna svim korisnicima ako je ovo podešeno" #. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "This chart will be available to all Users if this is set" -msgstr "" +msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno" #: frappe/custom/doctype/customize_form/customize_form.js:212 msgid "This doctype has no orphan fields to trim" -msgstr "" +msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" #: frappe/core/doctype/doctype/doctype.py:1054 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." -msgstr "" +msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." -msgstr "" +msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena." #: frappe/www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." -msgstr "" +msgstr "Ovaj dokument je izmijenjen nakon slanja e-pošte." #: frappe/public/js/frappe/form/form.js:1305 msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." -msgstr "" +msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u konačnom PDF-u.
Razmislite o spremanju dokumenta prije ispisa." #: frappe/public/js/frappe/form/form.js:1102 msgid "This document is already amended, you cannot ammend it again" -msgstr "" +msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." -msgstr "" +msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena." #: frappe/templates/emails/auto_repeat_fail.html:7 msgid "This email is autogenerated" -msgstr "" +msgstr "Ova poruka e-pošte je automatski generisana" #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 msgid "This feature can not be used as dependencies are missing.\n" "\t\t\t\tPlease contact your system manager to enable this by installing pycups!" -msgstr "" +msgstr "Ova funkcija se ne može koristiti jer nedostaju zavisnosti.\n" +"\t\t\t\tMolimo kontaktirajte svog upravitelja sistema da omogući ovo instaliranjem pycups-a!" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "This feature is brand new and still experimental" -msgstr "" +msgstr "Ova funkcija je potpuno nova i još uvijek eksperimentalna" #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' @@ -26142,189 +26388,184 @@ msgid "This field will appear only if the fieldname defined here has value OR th "myfield\n" "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -msgstr "" +msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrijednost ILI su pravila istinita (primjeri):\n" +"moje polje\n" +"eval:doc.myfield=='Moja vrijednost'\n" +"eval:doc.age>18" #: frappe/core/doctype/file/file.py:500 msgid "This file is attached to a protected document and cannot be deleted." -msgstr "" +msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati." #: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." -msgstr "" +msgstr "Ova je datoteka javna i svatko joj može pristupiti, čak i bez prijave. Označite je privatnom da biste ograničili pristup." #: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." -msgstr "" +msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije." #: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" -msgstr "" +msgstr "Ova forma je izmijenjena nakon što ste je učitali" #: frappe/public/js/frappe/form/form.js:2257 msgid "This form is not editable due to a Workflow." -msgstr "" +msgstr "Ova formu nije moguće uređivati zbog Radnog Toka." #. Description of the 'Is Default' (Check) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json msgid "This format is used if country specific format is not found" -msgstr "" +msgstr "Ovaj format se koristi ako format specifičan za zemlju nije pronađen" #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 msgid "This geolocation provider is not supported yet." -msgstr "" +msgstr "Ovaj poslužitelj geolokacije još nije podržan." #. Description of the 'Header' (HTML Editor) field in DocType 'Website #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "This goes above the slideshow." -msgstr "" +msgstr "Ovo ide iznad projekcije slajdova." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." -msgstr "" +msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi." #: frappe/utils/password_strength.py:158 msgid "This is a top-10 common password." -msgstr "" +msgstr "Ovo je 10 najčešćih lozinki." #: frappe/utils/password_strength.py:160 msgid "This is a top-100 common password." -msgstr "" +msgstr "Ovo je 100 najčešćih lozinki." #: frappe/utils/password_strength.py:162 msgid "This is a very common password." -msgstr "" +msgstr "Ovo je vrlo česta lozinka." #: frappe/core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." -msgstr "" +msgstr "Ovo je virtuelni tip dokumenta i podaci se periodično brišu." #: frappe/templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" -msgstr "" +msgstr "Ovo je automatski generisan odgovor" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "This is an example Google SERP Preview." -msgstr "" +msgstr "Ovo je primjer Google SERP Pregleda." #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." -msgstr "" +msgstr "Ovo je slično uobičajenoj lozinki." #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "This is the number of the last created transaction with this prefix" -msgstr "" +msgstr "Ovo je broj posljednje kreirane transakcije s ovim prefiksom" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 msgid "This link has already been activated for verification." -msgstr "" +msgstr "Ova veza je već aktivirana radi verifikacije." #: frappe/utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." -msgstr "" +msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili." #: frappe/printing/page/print/print.js:410 msgid "This may get printed on multiple pages" -msgstr "" +msgstr "Ovo se može ispisati na više stranica" #: frappe/utils/goal.py:109 msgid "This month" -msgstr "" +msgstr "Ovog mjeseca" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." -msgstr "" +msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj." #: frappe/templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" -msgstr "" +msgstr "Ovaj izvještaj je generisan {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." -msgstr "" +msgstr "Ovaj izvještaj je generisan {0}." #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." -msgstr "" +msgstr "Ovaj zahtjev korisnik još nije odobrio." #: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." -msgstr "" +msgstr "Ova stranica je u načinu samo za čitanje, puna funkcionalnost će uskoro biti vraćena." #: frappe/core/doctype/doctype/doctype.js:73 msgid "This site is running in developer mode. Any change made here will be updated in code." -msgstr "" +msgstr "Ova stranica radi u programerskom modu. Svaka promjena napravljena ovdje bit će ažurirana u kodu." #: frappe/www/attribution.html:11 msgid "This software is built on top of many open source packages." -msgstr "" +msgstr "Ovaj softver je izgrađen pomoću mnogih open source paketa." #: frappe/website/doctype/web_page/web_page.js:71 msgid "This title will be used as the title of the webpage as well as in meta tags" -msgstr "" +msgstr "Ovaj naslov će se koristiti kao naslov web stranice kao i u meta oznakama-tagovima" #: frappe/public/js/frappe/form/controls/base_input.js:129 msgid "This value is fetched from {0}'s {1} field" -msgstr "" +msgstr "Ova se vrijednost preuzima iz {0} polja {1}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "" +msgstr "Ova vrijednost određuje maksimalan broj redaka koji se mogu prikazati u prikazu izvješća. " #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" -msgstr "" +msgstr "Ovo će se automatski generisati kada objavite stranicu, možete i sami unijeti rutu ako želite" #. Description of the 'Callback Message' (Small Text) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown in a modal after routing" -msgstr "" +msgstr "Ovo će biti prikazano u modalnom obliku nakon rutiranja" #. Description of the 'Report Description' (Data) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown to the user in a dialog after routing to the report" -msgstr "" +msgstr "Ovo će biti prikazano korisniku u dijalogu nakon usmjeravanja na izvještaj" #: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" -msgstr "" +msgstr "Ovo će odjaviti {0} sa svih drugih uređaja" #: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." -msgstr "" +msgstr "Ovo će trajno ukloniti vaše podatke." #: frappe/desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" -msgstr "" +msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jeste li sigurni?" #: frappe/core/doctype/rq_job/rq_job.js:15 msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" -msgstr "" +msgstr "Prigušeno" #. Label of the thumbnail_url (Small Text) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Thumbnail URL" -msgstr "" +msgstr "URL Sličice" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -26340,7 +26581,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Thursday" -msgstr "" +msgstr "Četvrtak" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the time (Datetime) field in DocType 'Recorder' @@ -26355,42 +26596,41 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" -msgstr "" +msgstr "Vrijeme" #. Label of the time_format (Select) field in DocType 'Language' #. Label of the time_format (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Time Format" -msgstr "" +msgstr "Format Vremena" #. Label of the time_interval (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Interval" -msgstr "" +msgstr "Vremenski Interval" #. Label of the timeseries (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series" -msgstr "" +msgstr "Vremenske Serije Imenovanja" #. Label of the based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series Based On" -msgstr "" +msgstr "Vremenske Serije Imenovanja na osnovu" #. Label of the time_taken (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Time Taken" -msgstr "" +msgstr "Proteklo Vrijeme" #. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Time Window (Seconds)" -msgstr "" +msgstr "Vremenski Prozor (Sekunde)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' @@ -26400,101 +26640,101 @@ msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" -msgstr "" +msgstr "Vremenska Zona" #. Label of the time_zones (Text) field in DocType 'Country' #: frappe/geo/doctype/country/country.json msgid "Time Zones" -msgstr "" +msgstr "Vremenske Zone" #. Label of the time_format (Data) field in DocType 'Country' #: frappe/geo/doctype/country/country.json msgid "Time format" -msgstr "" +msgstr "Format Vremena" #. Label of the time_in_queries (Float) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Time in Queries" -msgstr "" +msgstr "Vrijeme u Upitima" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Time in seconds to retain QR code image on server. Min:240" -msgstr "" +msgstr "Vrijeme u sekundama za zadržavanje slike QR koda na serveru. Min:240" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 msgid "Time series based on is required to create a dashboard chart" -msgstr "" +msgstr "Vremenske Serije Imenovanja na osnovu je obevezna za kreiranje grafikona nadzorne table" #: frappe/public/js/frappe/form/controls/time.js:124 msgid "Time {0} must be in format: {1}" -msgstr "" +msgstr "Vrijeme {0} mora biti u formatu: {1}" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Timed Out" -msgstr "" +msgstr "Isteklo" #: frappe/public/js/frappe/ui/theme_switcher.js:64 msgid "Timeless Night" -msgstr "" +msgstr "Timeless Night" #. Label of the timeline (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Timeline" -msgstr "" +msgstr "Vremenska Linija" #. Label of the timeline_doctype (Link) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline DocType" -msgstr "" +msgstr "Vremenska Linija DocType" #. Label of the timeline_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Timeline Field" -msgstr "" +msgstr "Polje Vremenske Linije" #. Label of the timeline_links_sections (Section Break) field in DocType #. 'Communication' #. Label of the timeline_links (Table) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Timeline Links" -msgstr "" +msgstr "Veze Vremenske Linije" #. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline Name" -msgstr "" +msgstr "Naziv Vremenske Linije" #: frappe/core/doctype/doctype/doctype.py:1538 msgid "Timeline field must be a Link or Dynamic Link" -msgstr "" +msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza" #: frappe/core/doctype/doctype/doctype.py:1534 msgid "Timeline field must be a valid fieldname" -msgstr "" +msgstr "Polje vremenske linije mora biti važeće ime polja" #. Label of the timeout (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Timeout" -msgstr "" +msgstr "Vrijeme Isteklo" #. Label of the timeout (Int) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Timeout (In Seconds)" -msgstr "" +msgstr "Vrijeme Isteklo (u Sekundama)" #. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Timeseries" -msgstr "" +msgstr "Vremenske Serije Imenovanja" #. Label of the timespan (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:28 msgid "Timespan" -msgstr "" +msgstr "Vremenski Razmak" #. Label of the timestamp (Datetime) field in DocType 'Access Log' #. Label of the timestamp (Datetime) field in DocType 'Transaction Log' @@ -26502,11 +26742,11 @@ msgstr "" #: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" -msgstr "" +msgstr "Vremenska Oznaka" #: frappe/desk/doctype/system_console/system_console.js:41 msgid "Tip: Try the new dropdown console using" -msgstr "" +msgstr "Savjet: Isprobaj novu konzolu pomoću" #. Label of the title (Data) field in DocType 'DocType State' #. Label of the method (Data) field in DocType 'Error Log' @@ -26558,70 +26798,70 @@ msgstr "" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Title" -msgstr "" +msgstr "Naziv" #. Label of the title_field (Data) field in DocType 'DocType' #. Label of the title_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Title Field" -msgstr "" +msgstr "Polje Naziva" #. Label of the title_prefix (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Title Prefix" -msgstr "" +msgstr "Prefiks Naziva" #: frappe/core/doctype/doctype/doctype.py:1475 msgid "Title field must be a valid fieldname" -msgstr "" +msgstr "Polje Naziva mora biti važeće ime polja" #: frappe/website/doctype/web_page/web_page.js:70 msgid "Title of the page" -msgstr "" +msgstr "Naziv stranice" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" -msgstr "" +msgstr "Za" #: frappe/public/js/frappe/views/communication.js:53 msgctxt "Email Recipients" msgid "To" -msgstr "" +msgstr "Do" #. Label of the to_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:14 msgid "To Date" -msgstr "" +msgstr "Do Datuma" #. Label of the to_date_field (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To Date Field" -msgstr "" +msgstr "Do Datuma" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "" +msgstr "Za Uraditi" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "To add dynamic subject, use jinja tags like\n\n" "
New {{ doc.doctype }} #{{ doc.name }}
" -msgstr "" +msgstr "Da biste dodali dinamički predmet, upotrijebite oznake jinja kao što je\n\n" +"
Novo {{ doc.doctype }} #{{ doc.name }}
" #. Description of the 'Subject' (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "To add dynamic subject, use jinja tags like\n\n" "
{{ doc.name }} Delivered
" -msgstr "" +msgstr "Da biste dodali dinamički predmet, upotrijebite oznake jinja kao što je\n\n" +"
{{ doc.name }} Isporučeno
" #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -26630,83 +26870,87 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "
{ \"id\": \"{{ doc.name }}\" }\n"
 "
\n" "" -msgstr "" +msgstr "Za dodavanje dinamičkih vrijednosti iz dokumenta upotrijebite jinja oznake poput\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." -msgstr "" +msgstr "Da biste omogućili više izvještaja, ažurirajte ograničenje u postavkama sistema." #. Label of the section_break_10 (Section Break) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "To and CC" -msgstr "" +msgstr "Za i Kopija za" #. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto #. Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." -msgstr "" +msgstr "Za početak datumskog raspona na početku odabranog razdoblja. Na primjer, ako je kao razdoblje odabrano 'Godina', izvještaj će početi od 1. januara tekuće godine." #: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." -msgstr "" +msgstr "Da biste konfigurisali automatsko ponavljanje, omogućite \"Dozvoli Automatsko Ponavljanje\" iz {0}." #: frappe/www/login.html:76 msgid "To enable it follow the instructions in the following link: {0}" -msgstr "" +msgstr "Da biste ga omogućili, slijedite upute na sljedećoj vezi: {0}" #: frappe/core/doctype/server_script/server_script.js:40 msgid "To enable server scripts, read the {0}." -msgstr "" +msgstr "Da biste omogućili server skripte, pročitajte {0}." #: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 msgid "To export this step as JSON, link it in a Onboarding document and save the document." -msgstr "" +msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dokumentu i spremi dokument." #: frappe/email/doctype/email_account/email_account.js:126 msgid "To generate password click {0}" -msgstr "" +msgstr "Za generiranje lozinke kliknite {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." -msgstr "" +msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." #: frappe/email/doctype/email_account/email_account.js:139 msgid "To know more click {0}" -msgstr "" +msgstr "Za više informacija kliknite {0}" #. Description of the 'Console' (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "To print output use print(text)" -msgstr "" +msgstr "Za ispis izlaza koristi print(text)" #: frappe/core/doctype/user_type/user_type.py:291 msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." -msgstr "" +msgstr "Za postavljanje uloge {0} za korisnika {1}, postavi polje {2} kao {3} u jednom od {4} zapisa." #: frappe/integrations/doctype/google_calendar/google_calendar.js:8 msgid "To use Google Calendar, enable {0}." -msgstr "" +msgstr "Da koristite Google Kalendar, omogućite {0}." #: frappe/integrations/doctype/google_contacts/google_contacts.js:8 msgid "To use Google Contacts, enable {0}." -msgstr "" +msgstr "Da koristite Google kontakte, omogući {0}." #. Description of the 'Enable Google indexing' (Check) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "To use Google Indexing, enable Google Settings." -msgstr "" +msgstr "Da koristite Google Indeksiranje, omogući Google Postavke." #. Description of the 'Slack Channel' (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "To use Slack Channel, add a Slack Webhook URL." -msgstr "" +msgstr "Da biste koristili Slack Kanal, dodaj Slack Webhook URL." #: frappe/public/js/frappe/utils/diffview.js:44 msgid "To version" -msgstr "" +msgstr "Do Verzije" #. Label of a shortcut in the Tools Workspace #. Name of a DocType @@ -26715,105 +26959,111 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json msgid "ToDo" -msgstr "" +msgstr "Za Uraditi" #: frappe/public/js/frappe/form/controls/date.js:58 #: frappe/public/js/frappe/ui/filters/filter.js:733 #: frappe/public/js/frappe/views/calendar/calendar.js:274 msgid "Today" -msgstr "" +msgstr "Danas" #: frappe/public/js/frappe/views/reports/report_view.js:1570 msgid "Toggle Chart" -msgstr "" +msgstr "Prebaci grafikon" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "Toggle Full Width" -msgstr "" +msgstr "Prebaci Punu Širinu" #: frappe/public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" -msgstr "" +msgstr "Uključi Prikaz Mreže" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 #: frappe/public/js/frappe/views/reports/report_view.js:1574 msgid "Toggle Sidebar" -msgstr "" +msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "" +msgstr "Prebaci Bočnu Traku" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "Toggle Theme" -msgstr "" +msgstr "Prebaci Temu" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" -msgstr "" +msgstr "Token" #. Name of a DocType #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Cache" -msgstr "" +msgstr "Token Cache" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Metoda autentifikacije krajnje točke tokena" #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" -msgstr "" +msgstr "Tip Tokena" #. Label of the token_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Token URI" -msgstr "" +msgstr "Token URI" #: frappe/utils/oauth.py:184 msgid "Token is missing" -msgstr "" +msgstr "Token Nedostaje" #: frappe/public/js/frappe/ui/filters/filter.js:739 msgid "Tomorrow" -msgstr "" +msgstr "Sutra" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 #: frappe/model/workflow.py:254 msgid "Too Many Documents" -msgstr "" +msgstr "Previše Dokumenata" #: frappe/rate_limiter.py:101 msgid "Too Many Requests" -msgstr "" +msgstr "Previše Zahtjeva" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." -msgstr "" +msgstr "Previše promjena u bazi podataka u jednoj akciji." #: frappe/utils/background_jobs.py:730 msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon nekog vremena." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" -msgstr "" +msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena" #. Name of a Workspace #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Alati" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 msgid "Top" -msgstr "" +msgstr "Vrh" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 msgid "Top 10" @@ -26822,12 +27072,12 @@ msgstr "Prvih 10" #. Name of a DocType #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Top Bar Item" -msgstr "" +msgstr "Stavka Gornje Trake" #. Label of the top_bar_items (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Top Bar Items" -msgstr "" +msgstr "Stavke Trake Vrha" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26835,18 +27085,18 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 msgid "Top Center" -msgstr "" +msgstr "Vrh Centar" #. Label of the top_errors (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Top Errors" -msgstr "" +msgstr "Najčešće Greške" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 msgid "Top Left" -msgstr "" +msgstr "Vrh Lijevo" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26854,130 +27104,117 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 msgid "Top Right" -msgstr "" +msgstr "Vrh Desno" #. Label of the topic (Link) field in DocType 'Discussion Reply' #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Topic" -msgstr "" +msgstr "Tema" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" -msgstr "" +msgstr "Ukupno" #. Label of the total_background_workers (Int) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Background Workers" -msgstr "" +msgstr "Ukupno Pozadinskih Radnika" #. Label of the total_errors (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Errors (last 1 day)" -msgstr "" +msgstr "Ukupno Greška (posljednji dan)" #: frappe/public/js/frappe/ui/capture.js:259 msgid "Total Images" -msgstr "" +msgstr "Ukupno Slika" #. Label of the total_outgoing_emails (Int) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Outgoing Emails" -msgstr "" - -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" +msgstr "Ukupno Odlazne e-pošte" #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" -msgstr "" +msgstr "Ukupno Pretplatnika" #. Label of the total_users (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Users" -msgstr "" - -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" +msgstr "Ukupno Korisnika" #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" -msgstr "" +msgstr "Ukupno Radno Vrijeme" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije " #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" -msgstr "" +msgstr "Ukupno:" #: frappe/public/js/frappe/views/reports/report_view.js:1256 msgid "Totals" -msgstr "" +msgstr "Ukupno" #: frappe/public/js/frappe/views/reports/report_view.js:1231 msgid "Totals Row" -msgstr "" +msgstr "Ukupni Red" #. Label of the trace_id (Data) field in DocType 'Error Log' #: frappe/core/doctype/error_log/error_log.json msgid "Trace ID" -msgstr "" +msgstr "ID Praćenja" #. Label of the traceback (Code) field in DocType 'Patch Log' #: frappe/core/doctype/patch_log/patch_log.json msgid "Traceback" -msgstr "" +msgstr "Povratno Praćenje" #. Label of the track_changes (Check) field in DocType 'DocType' #. Label of the track_changes (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Changes" -msgstr "" +msgstr "Prati Promjene" #. Label of the track_email_status (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Track Email Status" -msgstr "" +msgstr "Prati Status e-pošte" #. Label of the track_field (Data) field in DocType 'Milestone' #: frappe/automation/doctype/milestone/milestone.json msgid "Track Field" -msgstr "" +msgstr "Prati Polje" #. Label of the track_seen (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Track Seen" -msgstr "" +msgstr "Prati Viđeno" #. Label of the track_steps (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Track Steps" -msgstr "" +msgstr "Prati korake" #. Label of the track_views (Check) field in DocType 'DocType' #. Label of the track_views (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Views" -msgstr "" +msgstr "Prati Preglede" #. Description of the 'Track Email Status' (Check) field in DocType 'Email #. Account' @@ -26985,55 +27222,57 @@ msgstr "" msgid "Track if your email has been opened by the recipient.\n" "
\n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" -msgstr "" +msgstr "Pratite je li primatelj otvorio vašu e-poštu.\n" +"
\n" +"Napomena: ako šaljete većem broju primatelja, čak i ako jedan primatelj pročita e-poštu, ona će se smatrati kao \"Otvoreno\"" #. Description of a DocType #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Track milestones for any document" -msgstr "" +msgstr "Prati prekretnice za bilo koji dokument" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Tracking" -msgstr "" +msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" -msgstr "" +msgstr "URL praćenja generisan i kopiran u međuspremnik" #. Label of the transaction_hash (Small Text) field in DocType 'Transaction #. Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Hash" -msgstr "" +msgstr "Hash Transakcije" #. Name of a DocType #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" -msgstr "" +msgstr "Zapisnik Transakcija" #. Name of a report #: frappe/core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" -msgstr "" +msgstr "Izvještaj Zapisnika Transakcija" #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" -msgstr "" +msgstr "Transrodno" #: frappe/public/js/workflow_builder/components/Properties.vue:19 msgid "Transition Properties" -msgstr "" +msgstr "Tranzicijska Svojstva" #. Label of the transition_rules (Section Break) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transition Rules" -msgstr "" +msgstr "Pravila Prelaza" #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "" +msgstr "Prelazi" #. Label of the translatable (Check) field in DocType 'DocField' #. Label of the translatable (Check) field in DocType 'Custom Field' @@ -27042,9 +27281,9 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Translatable" -msgstr "" +msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27053,99 +27292,104 @@ msgstr "Prevedi Podatke" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Translate Link Fields" -msgstr "" +msgstr "Prevedi Polja Veza" #: frappe/public/js/frappe/views/reports/report_view.js:1656 msgid "Translate values" -msgstr "" +msgstr "Prevedi vrijednosti" #: frappe/public/js/frappe/views/translation_manager.js:11 msgid "Translate {0}" -msgstr "" +msgstr "Prevedi {0}" #. Label of the translated_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "" +msgstr "Prevedeni Tekst" #. Name of a DocType #: frappe/core/doctype/translation/translation.json msgid "Translation" -msgstr "" +msgstr "Prevod" #: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" -msgstr "" +msgstr "Prevodi" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Prevoditelj" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" -msgstr "" +msgstr "Otpad" #. Option for the 'View' (Select) field in DocType 'Form Tour' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Tree" -msgstr "" +msgstr "Stablo" #: frappe/public/js/frappe/list/base_list.js:210 msgid "Tree View" -msgstr "" +msgstr "Prikaz Stabla" #. Description of the 'Is Tree' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Tree structures are implemented using Nested Set" -msgstr "" +msgstr "Strukture stabla se implementiraju pomoću Ugniježđenog Skupa" #: frappe/public/js/frappe/views/treeview.js:19 msgid "Tree view is not available for {0}" -msgstr "" +msgstr "Prikaz Stabla nije dostupan za {0}" #. Label of the method (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Trigger Method" -msgstr "" +msgstr "Metoda Okidača" #: frappe/public/js/frappe/ui/keyboard.js:196 msgid "Trigger Primary Action" -msgstr "" +msgstr "Okini Primarnu Radnju" #: frappe/tests/test_translate.py:55 msgid "Trigger caching" -msgstr "" +msgstr "Okini Keširanje" #. Description of the 'Trigger Method' (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" -msgstr "" +msgstr "Okidač na važećim metodama kao što su \"before_insert\", \"after_update\" itd (ovisiće o odabranom DocTypeu)" #: frappe/custom/doctype/customize_form/customize_form.js:144 msgid "Trim Table" -msgstr "" +msgstr "Optimirajj Tabelu" #: frappe/public/js/frappe/widgets/onboarding_widget.js:318 msgid "Try Again" -msgstr "" +msgstr "Pokušaj ponovo" #. Label of the try_naming_series (Data) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" -msgstr "" +msgstr "Isprobaj Seriju Imenovanja" #: frappe/printing/page/print/print.js:189 #: frappe/printing/page/print/print.js:195 msgid "Try the new Print Designer" -msgstr "" +msgstr "Isprobaj novi Dizajner Ispisa" #: frappe/utils/password_strength.py:106 msgid "Try to avoid repeated words and characters" -msgstr "" +msgstr "Pokušaj izbjeći ponavljanje riječi i znakova" #: frappe/utils/password_strength.py:98 msgid "Try to use a longer keyboard pattern with more turns" -msgstr "" +msgstr "Pokušaj koristiti dužu mustru tastature s više okreta" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -27161,7 +27405,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Tuesday" -msgstr "" +msgstr "Utorak" #. Label of the two_factor_auth (Check) field in DocType 'Role' #. Label of the two_factor_authentication (Section Break) field in DocType @@ -27169,12 +27413,12 @@ msgstr "" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication" -msgstr "" +msgstr "Dvofaktorska Autentifikacija" #. Label of the two_factor_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication method" -msgstr "" +msgstr "Metoda Dvofaktorske Autentifikacije" #. Label of the communication_medium (Select) field in DocType 'Communication' #. Label of the fieldtype (Select) field in DocType 'DocField' @@ -27207,36 +27451,36 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/www/attribution.html:35 msgid "Type" -msgstr "" +msgstr "Tip" #: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" -msgstr "" +msgstr "Unesi Odgovor / Komentar" #: frappe/templates/includes/search_template.html:51 msgid "Type something in the search box to search" -msgstr "" +msgstr "Unesi nešto u polje za pretragu da pretražite" #: frappe/templates/discussions/comment_box.html:8 #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Type title" -msgstr "" +msgstr "Naziv" #: frappe/templates/discussions/discussions.js:341 msgid "Type your reply here..." -msgstr "" +msgstr "Upiši svoj odgovor ovdje..." #: frappe/core/doctype/data_export/exporter.py:143 msgid "Type:" -msgstr "" +msgstr "Tip:" #. Label of the ui_tour (Check) field in DocType 'Form Tour' #. Label of the ui_tour (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "UI Tour" -msgstr "" +msgstr "UI Introdukcija" #. Label of the uid (Int) field in DocType 'Communication' #. Label of the uid (Data) field in DocType 'Email Flag Queue' @@ -27245,32 +27489,33 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "UID" -msgstr "" +msgstr "UID" #. Label of the uidnext (Int) field in DocType 'Email Account' #. Label of the uidnext (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "" +msgstr "UIDNEXT" #. Label of the uidvalidity (Data) field in DocType 'Email Account' #. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDVALIDITY" -msgstr "" +msgstr "UIDVALIDITY" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "UNSEEN" -msgstr "" +msgstr "NEVIĐENO" #. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" "
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" -msgstr "" +msgstr "URI-ovi za primanje autorizacijskog koda nakon što korisnik dopusti pristup, kao i odgovora na neuspjeh. Obično krajnja tačka REST-a koju otkriva klijentska aplikacija.\n" +"
npr. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" #. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' @@ -27287,123 +27532,159 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "" +msgstr "URL" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" -msgstr "" +msgstr "URL za dokumentaciju ili pomoć" #: frappe/core/doctype/file/file.py:219 msgid "URL must start with http:// or https://" -msgstr "" +msgstr "URL mora početi s http:// ili https://" + +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL stranice s informacijama koje bi programerima mogle biti potrebne." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL web stranice koja pruža informacije o klijentu." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL stranice s informacijama o uvjetima pružanja usluge zaštićenog resursa." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL stranice s informacijama o zahtjevima o tome kako klijent može koristiti podatke." #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" -msgstr "" +msgstr "URL stranice" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL koji upućuje na dokument s pravilima za klijenta. Treba ga prikazati krajnjem korisniku prije autorizacije." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL koji upućuje na dokument s uvjetima pružanja usluge za klijenta. Treba ga prikazati krajnjem korisniku prije autorizacije." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL koji upućuje na logotip klijenta." #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" -msgstr "" +msgstr "URL na koji ćete otići nakon klika na sliku slajdova" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" -msgstr "" +msgstr "UTM Kampanja" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" -msgstr "" +msgstr "UTM Medij" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" -msgstr "" +msgstr "UTM Izvor" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "UUID" -msgstr "" +msgstr "UUID" #: frappe/desk/form/document_follow.py:79 msgid "Un-following document {0}" -msgstr "" +msgstr "Prekidanje praćenja dokumenta {0}" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" -msgstr "" +msgstr "Nije moguće pronaći DocType {0}" #: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." -msgstr "" +msgstr "Nije moguće učitati kameru." #: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" -msgstr "" +msgstr "Nije moguće učitati: {0}" #: frappe/utils/csvutils.py:37 msgid "Unable to open attached file. Did you export it as CSV?" -msgstr "" +msgstr "Nije moguće otvoriti priloženu datoteku. Jeste li je izvezli kao CSV?" #: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" -msgstr "" +msgstr "Nije moguće pročitati format datoteke za {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" -msgstr "" +msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zadani račun e-pošte iz Postavke > Račun e-pošte" #: frappe/public/js/frappe/views/calendar/calendar.js:450 msgid "Unable to update event" -msgstr "" +msgstr "Nije moguće ažurirati događaj" #: frappe/core/doctype/file/file.py:464 msgid "Unable to write file format for {0}" -msgstr "" +msgstr "Nije moguće napisati format datoteke za {0}" #. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Unassign Condition" -msgstr "" +msgstr "Poništi dodjelu uslova" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" -msgstr "" +msgstr "Neuhvaćena Iznimka" #: frappe/public/js/frappe/form/toolbar.js:103 msgid "Unchanged" -msgstr "" +msgstr "Nepromijenjeno" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" -msgstr "" +msgstr "Poništi" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" -msgstr "" +msgstr "Poništi posljednju radnju" + +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Neizbjegnuti navodnici u nizu: {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" -msgstr "" +msgstr "Prestani Pratiti" #. Name of a DocType #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" -msgstr "" +msgstr "Neobrađena e-pošta" #. Label of the unhandled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Unhandled Emails" -msgstr "" +msgstr "Neobrađena e-pošta" #. Label of the unique (Check) field in DocType 'DocField' #. Label of the unique (Check) field in DocType 'Custom Field' @@ -27412,71 +27693,80 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Unique" -msgstr "" +msgstr "Jedinstveno" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "Jedinstveni ID koji dodjeljuje klijentski programer koristi se za identifikaciju klijentskog softvera koji se dinamički registrira.\n" +"
\n" +"Trebao bi ostati isti u više verzija ili ažuriranja softvera." #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" -msgstr "" +msgstr "Nepoznato" #: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" -msgstr "" +msgstr "Nepoznata Kolona: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" -msgstr "" +msgstr "Nepoznata Metoda Zaokruživanja: {}" #: frappe/auth.py:316 msgid "Unknown User" -msgstr "" +msgstr "Nepoznati Korisnik" #: frappe/utils/csvutils.py:54 msgid "Unknown file encoding. Tried to use: {0}" -msgstr "" +msgstr "Nepoznato kodiranje datoteke. Pokušano koristiti: {0}" #: frappe/core/doctype/submission_queue/submission_queue.js:7 msgid "Unlock Reference Document" -msgstr "" +msgstr "Otključaj Referentni Dokument" #: frappe/public/js/frappe/form/footer/form_timeline.js:632 #: frappe/website/doctype/blog_post/blog_post.js:36 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" -msgstr "" +msgstr "Poništi Objavu" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Unread" -msgstr "" +msgstr "Nepročitano" #. Label of the unread_notification_sent (Check) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Unread Notification Sent" -msgstr "" +msgstr "Nepročitana Obavijest Poslana" #: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" -msgstr "" +msgstr "Nesiguran SQL upit" #: frappe/public/js/frappe/data_import/data_exporter.js:159 #: frappe/public/js/frappe/form/controls/multicheck.js:166 msgid "Unselect All" -msgstr "" +msgstr "Poništi Odabir Svih" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Unshared" -msgstr "" +msgstr "Nedijeljeno" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" -msgstr "" +msgstr "Otkaži Pretplatu" #. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Unsubscribe Method" -msgstr "" +msgstr "Način Otkazivanja Pretplate" #. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json @@ -27489,29 +27779,34 @@ msgstr "Parametri Otkazivanja" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" -msgstr "" +msgstr "Otkazano" + +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" -msgstr "" +msgstr "Kolona bez Naziva" #: frappe/core/doctype/file/file.js:38 msgid "Unzip" -msgstr "" +msgstr "Raspakuj" #: frappe/public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" -msgstr "" +msgstr "Raspakovano {0} datoteka" #: frappe/public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." -msgstr "" +msgstr "Raspakivanje datoteka..." #: frappe/desk/doctype/event/event.py:269 msgid "Upcoming Events for Today" -msgstr "" +msgstr "Nadolazeći Događaji za Danas" #. Label of the update (Button) field in DocType 'Document Naming Settings' #: frappe/core/doctype/data_import/data_import_list.js:36 @@ -27525,73 +27820,73 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:765 #: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" -msgstr "" +msgstr "Ažuriraj" #. Label of the update_amendment_naming (Button) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "" +msgstr "Ažuriraj Izmjenjeno Imenovanje" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Update Existing Records" -msgstr "" +msgstr "Ažuriraj Postojeće Zapise" #. Label of the update_field (Select) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Field" -msgstr "" +msgstr "Ažuriraj Polje" #: frappe/core/doctype/installed_applications/installed_applications.js:6 #: frappe/core/doctype/installed_applications/installed_applications.js:13 msgid "Update Hooks Resolution Order" -msgstr "" +msgstr "Ažuriraj Redoslijed Razrješenja Kukica" #: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" -msgstr "" +msgstr "Redoslijed ažuriranja" #: frappe/desk/page/setup_wizard/setup_wizard.js:494 msgid "Update Password" -msgstr "" +msgstr "Ažuriraj Lozinku" #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "" +msgstr "Ažuriraj Brojač Serije Imenovanja" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "" +msgstr "Ažuriraj Broj Serije Imenovanja" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Update Settings" -msgstr "" +msgstr "Ažuriraj Postavke" #: frappe/public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" -msgstr "" +msgstr "Ažuriraj Prijevode" #. Label of the update_value (Small Text) field in DocType 'Bulk Update' #. Label of the update_value (Data) field in DocType 'Workflow Document State' #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Value" -msgstr "" +msgstr "Ažuriraj Vrijednost" #: frappe/utils/change_log.py:381 msgid "Update from Frappe Cloud" -msgstr "" +msgstr "Ažuriraj sa Frappe Cloud-a" #: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" -msgstr "" +msgstr "Ažuriraj {0} zapisa" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Permission Log' @@ -27601,60 +27896,60 @@ msgstr "" #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 #: frappe/public/js/frappe/web_form/web_form.js:427 msgid "Updated" -msgstr "" +msgstr "Ažurirano" #: frappe/desk/doctype/bulk_update/bulk_update.js:32 msgid "Updated Successfully" -msgstr "" +msgstr "Uspješno Ažurirano" #: frappe/public/js/frappe/desk.js:452 msgid "Updated To A New Version 🎉" -msgstr "" +msgstr "Ažurirano na Novu Verziju 🎉" #: frappe/public/js/frappe/list/bulk_operations.js:372 msgid "Updated successfully" -msgstr "" +msgstr "Uspješno Ažurirano" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" -msgstr "" +msgstr "Ažuriranje" #: frappe/public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" msgid "Updating" -msgstr "" +msgstr "Ažuriranje u toku" #: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." -msgstr "" +msgstr "Ažuriranje Statusa Čekanja e-pošte. Poruke e-pošte bit će preuzete u sljedećem zakazanom ciklusu." #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" -msgstr "" +msgstr "Ažuriranje Brojača može dovesti do konflikta naziva dokumenta ako se ne uradi kako treba" #: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" -msgstr "" +msgstr "Ažuriraju se globalne postavke" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" -msgstr "" +msgstr "Ažuriraju se opcije imenovanja serije" #: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." -msgstr "" +msgstr "Ažuriraju se povezana polja..." #: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" -msgstr "" +msgstr "Ažurira se {0}" #: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" -msgstr "" +msgstr "Ažurira se {0} od {1}, {2}" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" -msgstr "" +msgstr "Plan Ažuriranja" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" @@ -27665,75 +27960,75 @@ msgstr "Nadogradite svoje iskustvo podrške uz Helpdesk" #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" -msgstr "" +msgstr "Učitaj" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 msgid "Upload Image" -msgstr "" +msgstr "Učitaj Sliku" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 msgid "Upload file" -msgstr "" +msgstr "Učitaj Datoteku" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 msgid "Upload {0} files" -msgstr "" +msgstr "Učitaj {0} datoteke" #. Label of the uploaded_to_dropbox (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Dropbox" -msgstr "" +msgstr "Učitano na Dropbox" #. Label of the uploaded_to_google_drive (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Google Drive" -msgstr "" +msgstr "Učitano na Google Disk" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json #, python-format msgid "Use % for any non empty value." -msgstr "" +msgstr "Koristi % za bilo koju vrijednost koja nije prazna." #. Label of the ascii_encode_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "" +msgstr "Koristi ASCII kodiranje za lozinku" #. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Use First Day of Period" -msgstr "" +msgstr "Koristi Prvi Dan Perioda" #. Label of the use_html (Check) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" -msgstr "" +msgstr "Koristi HTML" #. Label of the use_imap (Check) field in DocType 'Email Account' #. Label of the use_imap (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use IMAP" -msgstr "" +msgstr "Koristi IMAP" #. Label of the use_number_format_from_currency (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Use Number Format from Currency" -msgstr "" +msgstr "Koristite Brojčani komma Format iz Valute" #. Label of the use_post (Check) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Use POST" -msgstr "" +msgstr "Koristi POST" #. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Use Report Chart" -msgstr "" +msgstr "Koristi Grafikon Izvještaja" #. Label of the use_ssl (Check) field in DocType 'Email Account' #. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' @@ -27742,63 +28037,63 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use SSL" -msgstr "" +msgstr "Koristi SSL" #. Label of the use_starttls (Check) field in DocType 'Email Account' #. Label of the use_starttls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" -msgstr "" +msgstr "Koristi STARTTLS" #. Label of the use_tls (Check) field in DocType 'Email Account' #. Label of the use_tls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use TLS" -msgstr "" +msgstr "Koristi TLS" #: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." -msgstr "" +msgstr "Koristi nekoliko riječi, izbjegavaj uobičajene fraze." #. Label of the login_id_is_different (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use different Email ID" -msgstr "" +msgstr "Koristi drugu e-poštu" #. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Use if the default settings don't seem to detect your data correctly" -msgstr "" +msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno" #: frappe/model/db_query.py:435 msgid "Use of function {0} in field is restricted" -msgstr "" +msgstr "Korištenje funkcije {0} u polju je ograničena" #: frappe/model/db_query.py:412 msgid "Use of sub-query or function is restricted" -msgstr "" +msgstr "Korištenje podupita ili funkcije je ograničena" #: frappe/printing/page/print/print.js:279 msgid "Use the new Print Format Builder" -msgstr "" +msgstr "Koristi novi Konstruktor Formata Ispisa" #. Description of the 'Title Field' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Use this fieldname to generate title" -msgstr "" +msgstr "Koristi ovo ime polja za generisanje naziva" #. Description of the 'Always BCC Address' (Data) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use this, for example, if all sent emails should also be send to an archive." -msgstr "" +msgstr "Koristi ovo, na primjer, ako sva poslana e-poåta također treba poslati u arhivu." #. Label of the used_oauth (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" -msgstr "" +msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' #. Label of the user (Link) field in DocType 'Reminder' @@ -27857,196 +28152,196 @@ msgstr "" #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" -msgstr "" +msgstr "Korisnik" #. Label of the user (Link) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "User " -msgstr "" +msgstr "Korisnik " #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" -msgstr "" +msgstr "Korisnik '{0}' već ima ulogu '{1}'" #. Name of a DocType #: frappe/core/doctype/report/user_activity_report.json msgid "User Activity Report" -msgstr "" +msgstr "Izvještaj Aktivnosti Korisnika" #. Name of a DocType #: frappe/core/doctype/report/user_activity_report_without_sort.json msgid "User Activity Report Without Sort" -msgstr "" +msgstr "Izvještaj Aktivnosti Korisnika Bez Sortiranja" #. Label of the user_agent (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "User Agent" -msgstr "" +msgstr "Korisnički Agent" #. Label of the in_create (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Create" -msgstr "" +msgstr "Korisnik Nemože Kreirati" #. Label of the read_only (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Search" -msgstr "" +msgstr "Korisnik Nemože Pretraživati" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" -msgstr "" +msgstr "Korisnik Promijenjen" #. Label of the defaults (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "" +msgstr "Korisničke Standard Postavke" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Details" -msgstr "" +msgstr "Korisnički Detalji" #. Name of a report #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json msgid "User Doctype Permissions" -msgstr "" +msgstr "Korisničke Doctype Dozvole" #. Name of a DocType #: frappe/core/doctype/user_document_type/user_document_type.json msgid "User Document Type" -msgstr "" +msgstr "Tip Korisničkog Dokumenta" #: frappe/core/doctype/user_type/user_type.py:98 msgid "User Document Types Limit Exceeded" -msgstr "" +msgstr "Prekoračeno Ograničenje Tipova Korisničkih Dokumenata" #. Name of a DocType #: frappe/core/doctype/user_email/user_email.json msgid "User Email" -msgstr "" +msgstr "E-pošta Korisnika" #. Label of the user_emails (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Emails" -msgstr "" +msgstr "E-pošte Korisnika" #. Name of a DocType #: frappe/core/doctype/user_group/user_group.json msgid "User Group" -msgstr "" +msgstr "Korisnička Grupa" #. Name of a DocType #: frappe/core/doctype/user_group_member/user_group_member.json msgid "User Group Member" -msgstr "" +msgstr "Član Korisničke Grupe" #. Label of the user_group_members (Table MultiSelect) field in DocType 'User #. Group' #: frappe/core/doctype/user_group/user_group.json msgid "User Group Members" -msgstr "" +msgstr "Članovi Korisničke Grupe" #. Label of the userid (Data) field in DocType 'User Social Login' #: frappe/core/doctype/user_social_login/user_social_login.json msgid "User ID" -msgstr "" +msgstr "Korisnik" #. Label of the user_id_property (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "User ID Property" -msgstr "" +msgstr "Svojstvo Korisnika" #. Description of a DocType #: frappe/website/doctype/blogger/blogger.json msgid "User ID of a Blogger" -msgstr "" +msgstr "Korisnički ID Bloggera" #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" -msgstr "" +msgstr "Korisnik" #. Label of the user_id_field (Select) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "User Id Field" -msgstr "" +msgstr "Polje za Id Korisnika" #: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" -msgstr "" +msgstr "Polje Id-a korisnika obavezno je u tipu korisnika {0}" #. Label of the user_image (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Image" -msgstr "" +msgstr "Slika Korisnika" #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" -msgstr "" +msgstr "Korisnički Meni" #. Label of the user_name (Data) field in DocType 'Personal Data Download #. Request' #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "User Name" -msgstr "" +msgstr "Korisničko Ime" #. Name of a DocType #: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" -msgstr "" +msgstr "Korisnička Dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" -msgstr "" +msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" -msgstr "" +msgstr "Korisničke Dozvole" #: frappe/core/page/permission_manager/permission_manager_help.html:32 msgid "User Permissions are used to limit users to specific records." -msgstr "" +msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene zapise." #: frappe/core/doctype/user_permission/user_permission_list.js:124 msgid "User Permissions created successfully" -msgstr "" +msgstr "Korisničke Dozvole su uspješno kreirane" #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" -msgstr "" +msgstr "Korisnička Uloga" #. Name of a DocType #: frappe/core/doctype/user_role_profile/user_role_profile.json msgid "User Role Profile" -msgstr "" +msgstr "Profil Korisničke Uloge" #. Name of a DocType #: frappe/core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" -msgstr "" +msgstr "Odabir Korisničkog Tipa Dokumenta" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "User Settings" -msgstr "" +msgstr "Korisničke Postavke" #. Name of a DocType #: frappe/core/doctype/user_social_login/user_social_login.json msgid "User Social Login" -msgstr "" +msgstr "Prijava Korisnika Putem Društvenih Mreža" #. Label of the _user_tags (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "User Tags" -msgstr "" +msgstr "Korisničke Oznake" #. Label of the user_type (Link) field in DocType 'User' #. Name of a DocType @@ -28054,106 +28349,106 @@ msgstr "" #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:83 msgid "User Type" -msgstr "" +msgstr "Tip Korisnika" #. Label of the user_type_modules (Table) field in DocType 'User Type' #. Name of a DocType #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type_module/user_type_module.json msgid "User Type Module" -msgstr "" +msgstr "Modul tipa korisnika" #. Description of the 'Allow Login using Mobile Number' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or Mobile number" -msgstr "" +msgstr "Korisnik se može prijaviti koristeći E-poštu ili Broj Mobilnog Telefona" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or User Name" -msgstr "" +msgstr "Korisnik se može prijaviti koristeći E-poštu ili Korisničko Ime" #: frappe/templates/includes/login/login.js:292 msgid "User does not exist." -msgstr "" +msgstr "Korisnik ne postoji." #: frappe/core/doctype/user_type/user_type.py:83 msgid "User does not have permission to create the new {0}" -msgstr "" +msgstr "Korisnik nema dozvolu za kreiranje novog {0}" #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" -msgstr "" +msgstr "Korisnik je obavezan za Dijeljenje" #. Label of the user_must_always_select (Check) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "User must always select" -msgstr "" +msgstr "Korisnik mora uvijek odabrati" #: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" -msgstr "" +msgstr "Korisnička dozvola već postoji" #: frappe/www/login.py:171 msgid "User with email address {0} does not exist" -msgstr "" +msgstr "Korisnik sa adresom e-pošte {0} ne postoji" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." -msgstr "" +msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" -msgstr "" +msgstr "Korisnik {0} se ne može izbrisati" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" -msgstr "" +msgstr "Korisnik {0} se ne može onemogućiti" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" -msgstr "" +msgstr "Korisnik {0} se ne može preimenovati" #: frappe/permissions.py:139 msgid "User {0} does not have access to this document" -msgstr "" +msgstr "Korisnik {0} nema pristup ovom dokumentu" #: frappe/permissions.py:162 msgid "User {0} does not have doctype access via role permission for document {1}" -msgstr "" +msgstr "Korisnik {0} nema pristup tipu dokumenta preko dopuštenja uloge za dokument {1}" #: frappe/desk/doctype/workspace/workspace.py:275 msgid "User {0} does not have the permission to create a Workspace." -msgstr "" +msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora." #: frappe/templates/emails/data_deletion_approval.html:1 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 msgid "User {0} has requested for data deletion" -msgstr "" +msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" -msgstr "" +msgstr "Korisnik {0} predstavljen kao {1}" #: frappe/utils/oauth.py:269 msgid "User {0} is disabled" -msgstr "" +msgstr "Korisnik {0} je onemogućen" #: frappe/sessions.py:242 msgid "User {0} is disabled. Please contact your System Manager." -msgstr "" +msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema." #: frappe/desk/form/assign_to.py:104 msgid "User {0} is not permitted to access this document." -msgstr "" +msgstr "Korisniku {0} nije dozvoljen pristup ovom dokumentu." #. Label of the userinfo_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Userinfo URI" -msgstr "" +msgstr "URI informacija Korisnika" #. Label of the username (Data) field in DocType 'User' #. Label of the username (Data) field in DocType 'User Social Login' @@ -28161,11 +28456,11 @@ msgstr "" #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/www/login.py:110 msgid "Username" -msgstr "" +msgstr "Korisničko Ime" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" -msgstr "" +msgstr "Korisničko Ime {0} već postoji" #. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' #. Name of a Workspace @@ -28176,7 +28471,7 @@ msgstr "" #: frappe/core/workspace/users/users.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Users" -msgstr "" +msgstr "Korisnici" #. Description of the 'Protect Attached Files' (Check) field in DocType #. 'DocType' @@ -28185,56 +28480,56 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." -msgstr "" +msgstr "Korisnici mogu obrisati priložene datoteke samo ako je dokument u nacrtu ili ako je dokument otkazan, a također mogu obrisati dokument." #: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" -msgstr "" +msgstr "Korisnici sa ulogom {0}:" #: frappe/public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" -msgstr "" +msgstr "Koristi temu sistema za prebacivanje između svijetlog i tamnog načina rada" #: frappe/public/js/frappe/desk.js:154 msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." -msgstr "" +msgstr "Korištenje ove konzole može omogućiti napadačima da se lažno predstavljaju i ukradu vaše podatke. Nemojte unositi niti lijepiti kod koji ne razumijete." #. Label of the utilization (Percent) field in DocType 'System Health Report #. Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Utilization" -msgstr "" +msgstr "Iskorištenost" #. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Utilization %" -msgstr "" +msgstr "Iskorištenost %" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Valid" -msgstr "" +msgstr "Važeči" #: frappe/templates/includes/login/login.js:52 #: frappe/templates/includes/login/login.js:65 msgid "Valid Login id required." -msgstr "" +msgstr "Važeći Id Prijave je obavezan." #: frappe/templates/includes/login/login.js:39 msgid "Valid email and name required" -msgstr "" +msgstr "Važeća adresa e-pošte i ime je obavezna" #. Label of the validate_action (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Validate Field" -msgstr "" +msgstr "Potvrdi Polje" #. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Validate Frappe Mail Settings" -msgstr "" +msgstr "Validiraj Frappe Mail Postavke" #. Label of the validate_ssl_certificate (Check) field in DocType 'Email #. Account' @@ -28245,16 +28540,16 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Validate SSL Certificate" -msgstr "" +msgstr "Potvrdite SSL certifikat" #: frappe/public/js/frappe/web_form/web_form.js:360 msgid "Validation Error" -msgstr "" +msgstr "Greška pri Validaciji" #. Label of the validity (Select) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Validity" -msgstr "" +msgstr "Validnost" #. Label of the value (Data) field in DocType 'Milestone' #. Label of the defvalue (Text) field in DocType 'DefaultValue' @@ -28281,203 +28576,209 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.js:197 #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Value" -msgstr "" +msgstr "Vrijednost" #. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Value Based On" -msgstr "" +msgstr "Vrijednost Na Osnovu" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Change" -msgstr "" +msgstr "Promjena Vrijednosti" #. Label of the value_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Changed" -msgstr "" +msgstr "Vrijednost Promijenjena" #. Label of the property_value (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value To Be Set" -msgstr "" +msgstr "Vrijednost Koju Treba Postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" -msgstr "" +msgstr "Vrijednost se ne može promijeniti za {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" -msgstr "" +msgstr "Vrijednost ne može biti negativna za" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" -msgstr "" +msgstr "Vrijednost ne može biti negativna za {0}: {1}" #: frappe/custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" -msgstr "" +msgstr "Vrijednost polja za provjeru može biti 0 ili 1" #: frappe/custom/doctype/customize_form/customize_form.py:611 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" -msgstr "" +msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova" #: frappe/model/base_document.py:445 msgid "Value for {0} cannot be a list" -msgstr "" +msgstr "Vrijednost za {0} ne može biti lista" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Value from this field will be set as the due date in the ToDo" -msgstr "" +msgstr "Vrijednost iz ovog polja će biti postavljena kao krajnji datum za Uraditi" #: frappe/core/doctype/data_import/importer.py:714 msgid "Value must be one of {0}" -msgstr "" +msgstr "Vrijednost mora biti jedna od {0}" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, tajna klijenta se ne daje klijentu, a razmjena tokena koristi PKCE." #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" -msgstr "" +msgstr "Vrijednost za Provjeru" #: frappe/model/base_document.py:1124 msgid "Value too big" -msgstr "" +msgstr "Vrijednost je Prevelika" #: frappe/core/doctype/data_import/importer.py:727 msgid "Value {0} missing for {1}" -msgstr "" +msgstr "Nedostaje vrijednost {0} za {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" -msgstr "" +msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s" #: frappe/core/doctype/data_import/importer.py:745 #: frappe/core/doctype/data_import/importer.py:760 msgid "Value {0} must in {1} format" -msgstr "" +msgstr "Vrijednost {0} mora biti u {1} formatu" #: frappe/core/doctype/version/version_view.html:8 msgid "Values Changed" -msgstr "" +msgstr "Vrijednosti Promijenjene" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Verdana" -msgstr "" +msgstr "Verdana" #: frappe/templates/includes/login/login.js:333 msgid "Verification" -msgstr "" +msgstr "Verifikacija" #: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 msgid "Verification Code" -msgstr "" +msgstr "Verfikacijski Kod" #: frappe/templates/emails/delete_data_confirmation.html:10 msgid "Verification Link" -msgstr "" +msgstr "Veza za Verifikaciju" #: frappe/templates/includes/login/login.js:383 msgid "Verification code email not sent. Please contact Administrator." -msgstr "" +msgstr "E-pošta sa verifikacionim kodom nije poslana. Kontaktiraj Administratora." #: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." -msgstr "" +msgstr "Verifkacijski kod je poslan na vašu registrovanu adresu e-pošte." #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "" +msgstr "Provjereno" #: frappe/public/js/frappe/ui/messages.js:359 #: frappe/templates/includes/login/login.js:337 msgid "Verify" -msgstr "" +msgstr "Provjeri" #: frappe/public/js/frappe/ui/messages.js:358 msgid "Verify Password" -msgstr "" +msgstr "Provjeri Lozinku" #: frappe/templates/includes/login/login.js:171 msgid "Verifying..." -msgstr "" +msgstr "Provjera..." #. Name of a DocType #: frappe/core/doctype/version/version.json msgid "Version" -msgstr "" +msgstr "Verzija" #: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" -msgstr "" +msgstr "Verzija Ažurirana" #. Label of the video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Video URL" -msgstr "" +msgstr "Video URL" #. Label of the view_name (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "View" -msgstr "" +msgstr "Prikaz" #: frappe/core/doctype/success_action/success_action.js:60 #: frappe/public/js/frappe/form/success_action.js:89 msgid "View All" -msgstr "" +msgstr "Prikaži Sve" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" -msgstr "" +msgstr "Prikaži Trag" #: frappe/templates/includes/likes/likes.py:34 msgid "View Blog Post" -msgstr "" +msgstr "Prikaži Blog Post" #: frappe/templates/includes/comments/comments.py:56 msgid "View Comment" -msgstr "" +msgstr "Prikaži Komentar" #: frappe/core/doctype/user/user.js:151 msgid "View Doctype Permissions" -msgstr "" +msgstr "Prikaz Doctype Dozvola" #: frappe/core/doctype/file/file.js:4 msgid "View File" -msgstr "" +msgstr "Prikaži datoteku" #: frappe/public/js/frappe/ui/notifications/notifications.js:220 msgid "View Full Log" -msgstr "" +msgstr "Prikaži Cijeli Zapisnik" #: frappe/public/js/frappe/views/treeview.js:484 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" -msgstr "" +msgstr "Prikaži Listu" #. Name of a DocType #: frappe/core/doctype/view_log/view_log.json msgid "View Log" -msgstr "" +msgstr "Prikaži Zapisnik" #: frappe/core/doctype/user/user.js:142 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" -msgstr "" +msgstr "Prikaži Dozvoljene Dokumente" #. Label of the view_properties (Button) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "View Properties (via Customize Form)" -msgstr "" +msgstr "Prikaži Svojstva (putem Forme Prilagođavanje)" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "View Report" -msgstr "" +msgstr "Prikaži Izvještaj" #. Label of the view_settings (Section Break) field in DocType 'DocType' #. Label of the view_settings_section (Section Break) field in DocType @@ -28485,158 +28786,158 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "View Settings" -msgstr "" +msgstr "Pogledaj Postavke" #. Label of the view_switcher (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "View Switcher" -msgstr "" +msgstr "Prikaži Preklopnik" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.js:16 msgid "View Website" -msgstr "" +msgstr "Prikaži Web Stranicu" #: frappe/www/confirm_workflow_action.html:12 msgid "View document" -msgstr "" +msgstr "Prikaži Dokument" #: frappe/templates/emails/auto_email_report.html:60 msgid "View report in your browser" -msgstr "" +msgstr "Prrikaži izvještaj u vašem pretraživaču" #: frappe/templates/emails/print_link.html:2 msgid "View this in your browser" -msgstr "" +msgstr "Prikaži ovo u svom pretraživaču" #: frappe/public/js/frappe/web_form/web_form.js:454 msgctxt "Button in web form" msgid "View your response" -msgstr "" +msgstr "Prikaži svoj odgovor" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 #: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 #: frappe/desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" -msgstr "" +msgstr "Prikaži {0}" #. Label of the viewed_by (Data) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json msgid "Viewed By" -msgstr "" +msgstr "Pokazano Od" #. Group in DocType's connections #. Label of a Card Break in the Build Workspace #: frappe/core/doctype/doctype/doctype.json #: frappe/core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "Prikazi" #. Label of the is_virtual (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Virtual" -msgstr "" +msgstr "Virtuelno" #: frappe/model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" -msgstr "" +msgstr "Virtualni DocType {} zahtijeva statičku metodu pod nazivom {} pronađena {}" #: frappe/model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" -msgstr "" +msgstr "Virtualni DocType {} zahtijeva nadjačavanje metode instance koja se zove {} pronađena {}" #. Label of the visibility_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Visibility" -msgstr "" +msgstr "Vidljivost" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 msgid "Visible to website/portal users." -msgstr "" +msgstr "Vidljivo korisnicima web stranice/portala." #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Visit" -msgstr "" +msgstr "Posjeta" #: frappe/website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" -msgstr "" +msgstr "Posjeti Web Stranicu" #. Label of the visitor_id (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Visitor ID" -msgstr "" +msgstr "Posjetitelj" #: frappe/templates/discussions/reply_section.html:39 msgid "Want to discuss?" -msgstr "" +msgstr "Želite razgovarati?" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Warehouse" -msgstr "" +msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" -msgstr "" +msgstr "Upozorenje" #: frappe/custom/doctype/customize_form/customize_form.js:217 msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" -msgstr "" +msgstr "Upozorenje: GUBITAK PODATAKA NEPOSREDAN! Nastavkom će se trajno izbrisati sljedeće kolone baze podataka iz tipa dokumenta {0}:" #: frappe/core/doctype/doctype/doctype.py:1125 msgid "Warning: Naming is not set" -msgstr "" +msgstr "Upozorenje: Imenovanje nije postavljeno" #: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" -msgstr "" +msgstr "Upozorenje: Nije moguće pronaći {0} ni u jednoj tabeli vezanoj za {1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" -msgstr "" +msgstr "Upozorenje: Ažuriranje brojača može dovesti do sukoba imena dokumenta ako se ne uradi kako treba" #: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" -msgstr "" +msgstr "Je li ovaj članak bio od pomoći?" #: frappe/public/js/frappe/widgets/onboarding_widget.js:127 msgid "Watch Tutorial" -msgstr "" +msgstr "Pogledaj Vodič" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Watch Video" -msgstr "" +msgstr "Pogledaj Video" #: frappe/desk/doctype/workspace/workspace.js:34 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" -msgstr "" +msgstr "Ne dozvoljeno uređivanje ovog dokumenta. Jednostavno kliknite dugme Uredi na stranici radnog prostora kako biste svoj radni prostor mogli uređivati i prilagoditi ga po želji" #: frappe/templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" -msgstr "" +msgstr "Primili smo zahtjev za brisanje {0} podataka povezanih sa: {1}" #: frappe/templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" -msgstr "" +msgstr "Primili smo vaš zahtjev za preuzimanje vaših {0} podataka povezanih sa: {1}" #: frappe/www/attribution.html:12 msgid "We would like to thank the authors of these packages for their contribution." -msgstr "" +msgstr "Zahvaljujemo se autorima ovih paketa na njihovom doprinosu." #: frappe/www/contact.py:50 msgid "We've received your query!" -msgstr "" +msgstr "Primili smo vaš upit!" #: frappe/public/js/frappe/form/controls/password.js:87 msgid "Weak" -msgstr "" +msgstr "Slaba" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28644,22 +28945,22 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.json #: frappe/website/workspace/website/website.json msgid "Web Form" -msgstr "" +msgstr "Web Forma" #. Name of a DocType #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Web Form Field" -msgstr "" +msgstr "Polje Web Forme" #. Label of the web_form_fields (Table) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Web Form Fields" -msgstr "" +msgstr "Polja Web Forme" #. Name of a DocType #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Web Form List Column" -msgstr "" +msgstr "Kolona Liste Web Forme" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28667,127 +28968,125 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json msgid "Web Page" -msgstr "" +msgstr "Web Stranica" #. Name of a DocType #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" -msgstr "" +msgstr "Blok Web Stranice" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" -msgstr "" +msgstr "URL Web Stranice" #. Name of a DocType #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Web Page View" -msgstr "" +msgstr "Prikaz Web Stranice" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Web Site" -msgstr "" +msgstr "Web Stranica" #. Label of the web_template (Link) field in DocType 'Web Page Block' #. Name of a DocType #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/web_template/web_template.json msgid "Web Template" -msgstr "" +msgstr "Web Šablon" #. Name of a DocType #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Web Template Field" -msgstr "" +msgstr "Polje Web Šablona" #. Label of the web_template_values (Code) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Template Values" -msgstr "" +msgstr "Vrijednosti Web Šablona" #: frappe/utils/jinja_globals.py:48 msgid "Web Template is not specified" -msgstr "" +msgstr "Web Šablon nije naveden" #. Label of the web_view (Tab Break) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Web View" -msgstr "" +msgstr "Web Prikaz" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' #. Name of a DocType #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_data/webhook_data.json msgid "Webhook Data" -msgstr "" +msgstr "Webhook Podaci" #. Name of a DocType #: frappe/integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" -msgstr "" +msgstr "Zaglavlje Webhooka" #. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Headers" -msgstr "" +msgstr "Webhook Zaglavlja" #. Label of the sb_webhook (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Request" -msgstr "" +msgstr "Webhook Zahtjev" #. Label of a Link in the Build Workspace #. Name of a DocType #: frappe/core/workspace/build/build.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" -msgstr "" +msgstr "Zapisnik Webhook Zahtjeva" #. Label of the webhook_secret (Password) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Secret" -msgstr "" +msgstr "Webhook Tajna" #. Label of the sb_security (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Security" -msgstr "" +msgstr "Webhook Sigurnost" #. Label of the sb_condition (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "" +msgstr "Webhook Okidač" #. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Webhook URL" -msgstr "" +msgstr "Webhook URL" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json msgid "Website" -msgstr "" +msgstr "Web Stranica" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" -msgstr "" +msgstr "Analiza Web Stranice" #. Name of a role #: frappe/core/doctype/comment/comment.json @@ -28808,47 +29107,47 @@ msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Website Manager" -msgstr "" +msgstr "Upravitelj Web Stranice" #. Name of a DocType #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" -msgstr "" +msgstr "Meta Oznaka Web Stranice" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_route_meta/website_route_meta.json #: frappe/website/workspace/website/website.json msgid "Website Route Meta" -msgstr "" +msgstr "Meta rute web stranice" #. Name of a DocType #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" -msgstr "" +msgstr "Preusmjeravanje Rute Web Stranice" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_script/website_script.json #: frappe/website/workspace/website/website.json msgid "Website Script" -msgstr "" +msgstr "Skripta Web Stranice" #. Label of the website_search_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Website Search Field" -msgstr "" +msgstr "Polje Pretraživanja Web Stranice" #: frappe/core/doctype/doctype/doctype.py:1522 msgid "Website Search Field must be a valid fieldname" -msgstr "" +msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/workspace/website/website.json msgid "Website Settings" -msgstr "" +msgstr "Postavke Web Stranice" #. Label of the website_sidebar (Link) field in DocType 'Web Form' #. Label of the website_sidebar (Link) field in DocType 'Web Page' @@ -28859,24 +29158,24 @@ msgstr "" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/workspace/website/website.json msgid "Website Sidebar" -msgstr "" +msgstr "Bočna Traka Web Stranice" #. Name of a DocType #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" -msgstr "" +msgstr "Stavka Bočne Trake Web Stranice" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/workspace/website/website.json msgid "Website Slideshow" -msgstr "" +msgstr "Dijaprojekcija Web Stranice" #. Name of a DocType #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" -msgstr "" +msgstr "Stavka Dijaprojekcije Web Stranice" #. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType @@ -28885,29 +29184,29 @@ msgstr "" #: frappe/website/doctype/website_theme/website_theme.json #: frappe/website/workspace/website/website.json msgid "Website Theme" -msgstr "" +msgstr "Tema Web Stranice" #. Name of a DocType #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" -msgstr "" +msgstr "Tema Web Stranice Ignoriši Aplikaciju" #. Label of the website_theme_image (Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme Image" -msgstr "" +msgstr "Slika Teme Web Stranice" #. Label of the website_theme_image_link (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme image link" -msgstr "" +msgstr "Veza Slike Teme Web Stranice" #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Websocket" -msgstr "" +msgstr "Websocket" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -28923,7 +29222,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Wednesday" -msgstr "" +msgstr "Srijeda" #: frappe/public/js/frappe/views/calendar/calendar.js:276 msgid "Week" @@ -28932,7 +29231,7 @@ msgstr "Tjedan" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Weekdays" -msgstr "" +msgstr "Radnim Danima" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -28965,7 +29264,7 @@ msgstr "Tjedno Dug" #: frappe/desk/page/setup_wizard/setup_wizard.js:384 msgid "Welcome" -msgstr "" +msgstr "Dobrodošli" #. Label of the welcome_email_template (Link) field in DocType 'System #. Settings' @@ -28973,58 +29272,58 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/email_group/email_group.json msgid "Welcome Email Template" -msgstr "" +msgstr "Šablon e-pošte Dobrodošlice" #. Label of the welcome_url (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" -msgstr "" +msgstr "URL Dobrodošlice" #. Name of a Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Welcome Workspace" -msgstr "" +msgstr "Početni Radni Prostor" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" -msgstr "" +msgstr "E-pošta Dobrodošlice poslana" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" -msgstr "" +msgstr "Dobrodošli u {0}" #: frappe/public/js/frappe/ui/notifications/notifications.js:62 msgid "What's New" -msgstr "" +msgstr "Šta je Novo" #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "" +msgstr "Kada je omogućeno, ovo će omogućiti gostima da učitavaju datoteke u vašu aplikaciju. Možete to omogućiti ako želite da prikupljate datoteke od korisnika bez da se oni moraju prijaviti, na primjer u web obrascu za prijavu za posao." #. Description of the 'Store Attached PDF Document' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." -msgstr "" +msgstr "Kada šaljete dokument putem e-pošte, spremi PDF iz Konverzacije. Upozorenje: Ovo može povećati korištenje prostora pohrane." #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." -msgstr "" +msgstr "Prilikom učitavanja datoteka, prisilite korištenje snimanja slika na webu. Ako ovo nije označeno, standard ponašanje je korištenje mobilne kamere kada se otkrije korištenje s mobilnog." #: frappe/core/page/permission_manager/permission_manager_help.html:18 msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." -msgstr "" +msgstr "Kada izmijenite dokument nakon Otkaži i spremite ga, dobit će novi broj koji je verzija starog broja." #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:481 msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "" +msgstr "Na koji prikaz povezanog DocType bi vas ova prečica trebala odvesti?" #. Label of the width (Data) field in DocType 'DocField' #. Label of the width (Int) field in DocType 'Report Column' @@ -29039,56 +29338,56 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 #: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 msgid "Width" -msgstr "" +msgstr "Širina" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 msgid "Widths can be set in px or %." -msgstr "" +msgstr "Širina se može podesiti u px ili %." #. Label of the wildcard_filter (Check) field in DocType 'Report Filter' #: frappe/core/doctype/report_filter/report_filter.json msgid "Wildcard Filter" -msgstr "" +msgstr "Zamjenski Filter" #. Description of the 'Wildcard Filter' (Check) field in DocType 'Report #. Filter' #: frappe/core/doctype/report_filter/report_filter.json msgid "Will add \"%\" before and after the query" -msgstr "" +msgstr "Dodat će \"%\" prije i poslije upita" #. Description of the 'Short Name' (Data) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Will be used in url (usually first name)." -msgstr "" +msgstr "Koristit će se u url-u (obično ime)." #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" -msgstr "" +msgstr "Biti će vaš prijavni ID" #: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" -msgstr "" +msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." -msgstr "" +msgstr "Izvršit će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" -msgstr "" +msgstr "Sa Zaglavljem" #. Label of the worker_information_section (Section Break) field in DocType 'RQ #. Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" -msgstr "" +msgstr "Informacije Radnika" #. Label of the worker_name (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" -msgstr "" +msgstr "Naziv Radnika" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Group in DocType's connections @@ -29098,42 +29397,42 @@ msgstr "" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow" -msgstr "" +msgstr "Radni Tok" #. Name of a DocType #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" -msgstr "" +msgstr "Radnja Radnog Toka" #. Name of a DocType #. Description of a DocType #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "" +msgstr "Postavke Radnje Radnog Toka" #. Label of the workflow_action_name (Data) field in DocType 'Workflow Action #. Master' #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Name" -msgstr "" +msgstr "Naziv Radnje Radnog Toka" #. Name of a DocType #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" -msgstr "" +msgstr "Dozvoljena Uloga Radnje Radnog Toka" #. Description of the 'Is Optional State' (Check) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Action is not created for optional states" -msgstr "" +msgstr "Radnja Radnog Toka nije kreirana za opcijska stanja" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.js:25 #: frappe/workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" -msgstr "" +msgstr "Konstruktor Radnog Toka" #. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document #. State' @@ -29142,72 +29441,72 @@ msgstr "" #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Builder ID" -msgstr "" +msgstr "Konstruktor Radnog Toka" #: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." -msgstr "" +msgstr "Konstruktor Radnog Toka vam omogućava da kreirate radne tokove vizuelno. Možete prevući i ispustiti stanja i povezati ih da biste kreirali prelaze. Također možete ažurirati njihova svojstva sa bočne trake." #. Label of the workflow_data (JSON) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" -msgstr "" +msgstr "Podaci Radnog Toka" #: frappe/public/js/workflow_builder/components/Properties.vue:42 msgid "Workflow Details" -msgstr "" +msgstr "Radni Tok Detalji" #. Name of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" -msgstr "" +msgstr "Stanje Dokumenta Radnog Toka" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" -msgstr "" +msgstr "Naziv Radnog Toka" #. Label of the workflow_state (Data) field in DocType 'Workflow Action' #. Name of a DocType #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow State" -msgstr "" +msgstr "Stanje Radnog Toka" #. Label of the workflow_state_field (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow State Field" -msgstr "" +msgstr "Polje stanja radnog toka" #: frappe/model/workflow.py:61 msgid "Workflow State not set" -msgstr "" +msgstr "Stanje Radnog Toka nije postavljeno" #: frappe/model/workflow.py:204 frappe/model/workflow.py:212 msgid "Workflow State transition not allowed from {0} to {1}" -msgstr "" +msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}" #: frappe/workflow/doctype/workflow/workflow.js:140 msgid "Workflow States Don't Exist" -msgstr "" +msgstr "Stanja Radnog Toka ne postoje" #: frappe/model/workflow.py:328 msgid "Workflow Status" -msgstr "" +msgstr "Status Radnog Toka" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" -msgstr "" +msgstr "Prijelaz Radnog Toka" #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." -msgstr "" +msgstr "Stanje Radnog Toka predstavlja trenutno stanje dokumenta." #: frappe/public/js/workflow_builder/store.js:83 msgid "Workflow updated successfully" -msgstr "" +msgstr "Radni Tok je uspješno ažuriran" #. Label of the workspace_section (Section Break) field in DocType 'User' #. Label of a Link in the Build Workspace @@ -29216,46 +29515,46 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" -msgstr "" +msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" -msgstr "" +msgstr "Radni Prostor {0} ne postoji" #. Name of a DocType #: frappe/desk/doctype/workspace_chart/workspace_chart.json msgid "Workspace Chart" -msgstr "" +msgstr "Grafikon Radnog Prostora" #. Name of a DocType #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" -msgstr "" +msgstr "Prilagođeni Blok Radnog Prostora" #. Name of a DocType #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Workspace Link" -msgstr "" +msgstr "Veza za Radni Prostor" #. Name of a role #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Manager" -msgstr "" +msgstr "Upravitelj Radnog Prostora" #. Name of a DocType #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Workspace Number Card" -msgstr "" +msgstr "Numerička Kartica Radnog Prostora" #. Name of a DocType #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Workspace Quick List" -msgstr "" +msgstr "Brza Lista Radnog Prostora" #. Label of a standard navbar item #. Type: Action @@ -29263,45 +29562,45 @@ msgstr "" #: frappe/desk/doctype/workspace_settings/workspace_settings.json #: frappe/hooks.py msgid "Workspace Settings" -msgstr "" +msgstr "Postavke Radnog Prostora" #. Label of the workspace_setup_completed (Check) field in DocType 'Workspace #. Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Setup Completed" -msgstr "" +msgstr "Postavljanje Radnog Prostora je završeno" #. Name of a DocType #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Workspace Shortcut" -msgstr "" +msgstr "Prečica Radnog Prostora" #. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace #. Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Visibility" -msgstr "" +msgstr "Vidljivost Radnog Prostora" #: frappe/public/js/frappe/views/workspace/workspace.js:538 msgid "Workspace {0} created" -msgstr "" +msgstr "Radni Prostor {0} kreiran" #. Option for the 'View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Workspaces" -msgstr "" +msgstr "Radni Prostori" #: frappe/public/js/frappe/form/footer/form_timeline.js:756 msgid "Would you like to publish this comment? This means it will become visible to website/portal users." -msgstr "" +msgstr "Želite li objaviti ovaj komentar? To znači da će postati vidljiv korisnicima web stranice/portala." #: frappe/public/js/frappe/form/footer/form_timeline.js:760 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." -msgstr "" +msgstr "Želite li poništiti objavu ovog komentara? To znači da više neće biti vidljiv korisnicima web stranice/portala." #: frappe/desk/page/setup_wizard/setup_wizard.py:41 msgid "Wrapping up" -msgstr "" +msgstr "Završava se.." #. Label of the write (Check) field in DocType 'Custom DocPerm' #. Label of the write (Check) field in DocType 'DocPerm' @@ -29312,57 +29611,57 @@ msgstr "" #: frappe/core/doctype/docshare/docshare.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "" +msgstr "Piši" #: frappe/model/base_document.py:954 msgid "Wrong Fetch From value" -msgstr "" +msgstr "Pogrešno Peuzimanje iz vrijednosti" #: frappe/public/js/frappe/views/reports/report_view.js:490 msgid "X Axis Field" -msgstr "" +msgstr "Polje Ose X" #. Label of the x_field (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "X Field" -msgstr "" +msgstr "X Polje" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "XLSX" -msgstr "" +msgstr "XLSX" #. Label of the y_axis (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" -msgstr "" +msgstr "Y Osa" #: frappe/public/js/frappe/views/reports/report_view.js:497 msgid "Y Axis Fields" -msgstr "" +msgstr "Polja Ose Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" -msgstr "" +msgstr "Y Polje" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yahoo Mail" -msgstr "" +msgstr "Yahoo Mail" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "" +msgstr "Yandex.Mail" #. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' #. Label of the year (Data) field in DocType 'Company History' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/doctype/company_history/company_history.json msgid "Year" -msgstr "" +msgstr "Godina" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -29380,14 +29679,14 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:403 msgid "Yearly" -msgstr "" +msgstr "Godišnje" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Yellow" -msgstr "" +msgstr "Žuta" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -29404,773 +29703,777 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" -msgstr "" +msgstr "Da" #: frappe/public/js/frappe/ui/messages.js:32 msgctxt "Approve confirmation dialog" msgid "Yes" -msgstr "" +msgstr "Da" #: frappe/public/js/frappe/ui/filters/filter.js:545 msgctxt "Checkbox is checked" msgid "Yes" -msgstr "" +msgstr "Da" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" -msgstr "" +msgstr "Jučer" #: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." msgid "You" -msgstr "" +msgstr "Vi" #: frappe/public/js/frappe/form/footer/form_timeline.js:463 msgid "You Liked" -msgstr "" +msgstr "Svidjelo vam se" #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." -msgstr "" +msgstr "Povezani ste na internet." #: frappe/public/js/frappe/ui/toolbar/navbar.html:20 msgid "You are impersonating as another user." -msgstr "" +msgstr "Predstavljate se kao neki drugi korisnik." #: frappe/integrations/frappe_providers/frappecloud_billing.py:28 msgid "You are not allowed to access this resource" -msgstr "" +msgstr "Nije vam dozvoljen pristup ovom resursu" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" -msgstr "" +msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" -msgstr "" +msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" -msgstr "" +msgstr "Nije vam dozvoljeno da kreirate kolone" #: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" -msgstr "" +msgstr "Nije vam dozvoljeno brisanje Standardnog Izvještaja" #: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" -msgstr "" +msgstr "Nije vam dozvoljeno brisanje standardne Teme Web Stranice" #: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." -msgstr "" +msgstr "Nije vam dozvoljeno uređivati izvještaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" -msgstr "" +msgstr "Nije vam dozvoljeno da izvezete {} doctype" #: frappe/public/js/frappe/views/treeview.js:448 msgid "You are not allowed to print this report" -msgstr "" +msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" -msgstr "" +msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" -msgstr "" +msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" #: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." -msgstr "" +msgstr "Niste povezani na Internet. Pokušaj ponovo nakon nekog vremena." #: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." -msgstr "" +msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave." #: frappe/www/app.py:27 msgid "You are not permitted to access this page." -msgstr "" +msgstr "Nije vam dozvoljen pristup ovoj stranici." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" -msgstr "" +msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup" #: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." -msgstr "" +msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." -msgstr "" +msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije." #: frappe/email/doctype/email_account/email_account.js:284 msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." -msgstr "" +msgstr "Birate Opciju Sinhronizacije kao SVE, ona će ponovo sinhronizovati sve pročitane i nepročitane poruke sa servera. Ovo također može uzrokovati dupliciranje komunikacije (e-pošta)." #: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "You attached {0}" -msgstr "" +msgstr "Priložili ste {0}" #: frappe/printing/page/print_format_builder/print_format_builder.js:749 msgid "You can add dynamic properties from the document by using Jinja templating." -msgstr "" +msgstr "Možete dodati dinamička svojstva iz dokumenta korištenjem Jinja šablona." #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" -msgstr "" +msgstr "Također možete pristupiti wkhtmltopdf varijablama (važe samo u PDF ispis):" #: frappe/templates/emails/new_user.html:22 msgid "You can also copy-paste following link in your browser" -msgstr "" +msgstr "Takođ možete kopirati i zalijepiti sljedeću vezu u svoj preglednik" #: frappe/templates/emails/download_data.html:9 msgid "You can also copy-paste this " -msgstr "" +msgstr "Ovo također možete kopirati i zalijepiti " #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" -msgstr "" +msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač" #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." -msgstr "" +msgstr "Podnesene dokumente možete promijeniti tako što ćete ih poništiti, a zatim ih izmijeniti." #: frappe/public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." -msgstr "" +msgstr "Pravila zadržavanja možete promijeniti u {0}." #: frappe/public/js/frappe/widgets/onboarding_widget.js:194 msgid "You can continue with the onboarding after exploring this page" -msgstr "" +msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." -msgstr "" +msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." #: frappe/core/doctype/file/file.py:736 msgid "You can increase the limit from System Settings." -msgstr "" +msgstr "Ograničenje možete povećati u Postavkama Sistema." #: frappe/utils/synchronization.py:48 msgid "You can manually remove the lock if you think it's safe: {}" -msgstr "" +msgstr "Možete ručno ukloniti zaključavanje ako mislite da je sigurno: {}" #: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" -msgstr "" +msgstr "Slike možete umetnuti samo u polja Markdown" #: frappe/public/js/frappe/list/bulk_operations.js:42 msgid "You can only print upto {0} documents at a time" -msgstr "" +msgstr "Možete ispisati najviše {0} dokumenata odjednom" #: frappe/core/doctype/user_type/user_type.py:104 msgid "You can only set the 3 custom doctypes in the Document Types table." -msgstr "" +msgstr "Možete postaviti samo tri prilagođena tipa dokumenata u tabeli Tipovi Dokumenata." #: frappe/handler.py:182 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." -msgstr "" +msgstr "Možete otpremati samo JPG, PNG, PDF, TXT, CSV ili Microsoft dokumente." #: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" -msgstr "" +msgstr "Možete učitati do 5000 zapisa u jednom potezu. (može biti manje u nekim slučajevima)" #: frappe/website/doctype/web_page/web_page.js:92 msgid "You can select one from the following," -msgstr "" +msgstr "Možete odabrati jedan od sljedećih," #. Description of the 'Rate limit for email link login' (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "You can set a high value here if multiple users will be logging in from the same network." -msgstr "" +msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." -msgstr "" +msgstr "Možete pokušati promijeniti filtere vašeg izvještaja." #: frappe/core/page/permission_manager/permission_manager_help.html:27 msgid "You can use Customize Form to set levels on fields." -msgstr "" +msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima." #: frappe/public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" -msgstr "" +msgstr "Možete koristiti zamjenski znak %" #: frappe/custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Options' for field {0}" -msgstr "" +msgstr "Ne možete postaviti 'Opcije' za polje {0}" #: frappe/custom/doctype/customize_form/customize_form.py:393 msgid "You can't set 'Translatable' for field {0}" -msgstr "" +msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" msgid "You cancelled this document" -msgstr "" +msgstr "Otkazali ste ovaj dokument" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 msgctxt "Form timeline" msgid "You cancelled this document {1}" -msgstr "" +msgstr "Otkazali ste ovaj dokument {1}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 msgid "You cannot create a dashboard chart from single DocTypes" -msgstr "" +msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata" #: frappe/custom/doctype/customize_form/customize_form.py:385 msgid "You cannot unset 'Read Only' for field {0}" -msgstr "" +msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" -msgstr "" +msgstr "Promijenuli ste vrijednost {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" -msgstr "" +msgstr "Promijenuli ste vrijednost {0} {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" -msgstr "" +msgstr "Promijenuli ste vrijednosti za {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" -msgstr "" +msgstr "Promijenuli ste vrijednosti za {0} {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "You changed {0} to {1}" -msgstr "" +msgstr "Promijenuli ste {0} u {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:140 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 msgid "You created this" -msgstr "" +msgstr "Vi ste kreirali ovo" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 msgctxt "Form timeline" msgid "You created this document {0}" -msgstr "" +msgstr "Izradili ste ovaj dokument {0}" #: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" -msgstr "" +msgstr "Nemate dozvole za Čitanje ili Odabir za {}" #: frappe/public/js/frappe/request.js:177 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." -msgstr "" +msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" -msgstr "" +msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "Nemate dopuštenje za pristup polju: {0}" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." -msgstr "" +msgstr "Nemate dozvolu za pristup {0}: {1}." #: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." -msgstr "" +msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" -msgstr "" +msgstr "Nemate pristup Izvještaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." -msgstr "" +msgstr "Nemate dozvolu za pristup {0} DocType." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" -msgstr "" +msgstr "Nemate dozvolu za pristup ovoj datoteci" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" -msgstr "" +msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}" #: frappe/website/doctype/web_form/web_form.py:172 msgid "You don't have the permissions to access this document" -msgstr "" +msgstr "Nemate dozvole za pristup ovom dokumentu" #: frappe/templates/emails/new_message.html:1 msgid "You have a new message from: " -msgstr "" +msgstr "Imate novu poruku od: " #: frappe/handler.py:118 msgid "You have been successfully logged out" -msgstr "" +msgstr "Uspješno ste odjavljeni" #: frappe/custom/doctype/customize_form/customize_form.py:244 msgid "You have hit the row size limit on database table: {0}" -msgstr "" +msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" #: frappe/public/js/frappe/list/bulk_operations.js:412 msgid "You have not entered a value. The field will be set to empty." -msgstr "" +msgstr "Niste unijeli vrijednost. Polje će biti prazno." #: frappe/templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" -msgstr "" +msgstr "Dobili ste ❤️ lajk na svom blog postu" #: frappe/twofactor.py:432 msgid "You have to enable Two Factor Auth from System Settings." -msgstr "" +msgstr "Morate omogućiti Dvofaktorsku Autentifikaciju iz Postavki Sistema." #: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." -msgstr "" +msgstr "Imate nespremljene promjene u ovoj formi. Spremi prije nego nastavite." #: frappe/public/js/frappe/ui/toolbar/navbar.html:50 msgid "You have unseen notifications" -msgstr "" +msgstr "Imate neviđene obavijesti" #: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" -msgstr "" +msgstr "Niste vidjeli {0}" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 msgid "You haven't added any Dashboard Charts or Number Cards yet." -msgstr "" +msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice." #: frappe/public/js/frappe/list/list_view.js:498 msgid "You haven't created a {0} yet" -msgstr "" +msgstr "{0} nema u sistemu" #: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." -msgstr "" +msgstr "Dosegli ste ograničenje zbog previše zahtjeva. Molimo pokušajte nakon nekog vremena." #: frappe/public/js/frappe/form/footer/form_timeline.js:151 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 msgid "You last edited this" -msgstr "" +msgstr "Zadnji put ste uređivali ovo" #: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." -msgstr "" +msgstr "Morate dodati barem jednu vezu." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." -msgstr "" +msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" -msgstr "" +msgstr "Morate se prijaviti da pošaljete ovu formu" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." -msgstr "" +msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju." #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." -msgstr "" +msgstr "Morate biti Upravitelj Radnog Prostora da biste izbrisali javni radni prostor." #: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" -msgstr "" +msgstr "Morate biti Upravitelj Radnog Prostora da biste uredili ovaj dokument" #: frappe/www/attribution.py:16 msgid "You need to be a system user to access this page." -msgstr "" +msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici." #: frappe/website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" -msgstr "" +msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." -msgstr "" +msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama." #: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 msgid "You need to be logged in to access this page" -msgstr "" +msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici" #: frappe/website/doctype/web_form/web_form.py:161 msgid "You need to be logged in to access this {0}." -msgstr "" +msgstr "Morate biti prijavljeni da biste pristupili ovom {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 msgid "You need to create these first: " -msgstr "" +msgstr "Prvo morate kreirati ove: " #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." -msgstr "" +msgstr "Morate omogućiti JavaScript da bi vaša aplikacija radila." #: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" -msgstr "" +msgstr "Morate imati dozvolu \"Dijeli\"" #: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" -msgstr "" +msgstr "Morate instalirati pycups da biste koristili ovu funkciju!" #: frappe/core/doctype/recorder/recorder.js:38 msgid "You need to select indexes you want to add first." -msgstr "" +msgstr "Prvo morate odabrati indekse koje želite dodati." #: frappe/email/doctype/email_account/email_account.py:160 msgid "You need to set one IMAP folder for {0}" -msgstr "" +msgstr "Morate postaviti jednu IMAP mapu za {0}" #: frappe/model/rename_doc.py:391 msgid "You need write permission on {0} {1} to merge" -msgstr "" +msgstr "Trebate dozvolu za pisanje na {0} {1} za spajanje" #: frappe/model/rename_doc.py:386 msgid "You need write permission on {0} {1} to rename" -msgstr "" +msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali" #: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" -msgstr "" +msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" -msgstr "" +msgstr "Uklonili ste prilog {0}" #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" -msgstr "" +msgstr "Izgleda da ste spremni!" #: frappe/templates/includes/contact.js:20 msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." -msgstr "" +msgstr "Čini se da ste napisali svoje ime umjesto e-pošte. Unesite ispravnu adresu e-pošte kako bismo vas mogli informisati." #: frappe/public/js/frappe/list/bulk_operations.js:31 msgid "You selected Draft or Cancelled documents" -msgstr "" +msgstr "Izabrali ste Nacrt ili Otkazane dokumente" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" msgid "You submitted this document" -msgstr "" +msgstr "Podnijeli ste ovaj dokument" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 msgctxt "Form timeline" msgid "You submitted this document {0}" -msgstr "" +msgstr "Podnijeli ste ovaj dokument {0}" #: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" -msgstr "" +msgstr "Prestali ste pratiti ovaj dokument" #: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" -msgstr "" +msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." -msgstr "" +msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem." #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." -msgstr "" +msgstr "CSV datoteka se generira i pojavit će se u odjeljku Prilozi kada bude spremna. Osim toga, dobit ćete obavijest kada datoteka bude dostupna za preuzimanje." #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" -msgstr "" +msgstr "Vaša Zemlja" #: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" -msgstr "" +msgstr "Vaš Jezik" #: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" -msgstr "" +msgstr "Vaše Ime" #: frappe/public/js/frappe/list/bulk_operations.js:132 msgid "Your PDF is ready for download" -msgstr "" +msgstr "Vaš PDF je spreman za preuzimanje" #: frappe/patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" -msgstr "" +msgstr "Vaše Prečice" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 msgid "Your account has been deleted" -msgstr "" +msgstr "Vaš Račun je izbrisan" #: frappe/auth.py:514 msgid "Your account has been locked and will resume after {0} seconds" -msgstr "" +msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" #: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" -msgstr "" +msgstr "Vašu dodjelu {0} {1} je uklonio {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." -msgstr "" +msgstr "Vaš pretraživač ne podržava audio element." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." -msgstr "" +msgstr "Vaš pretraživač ne podržava video element." #: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" -msgstr "" +msgstr "Vaš zahtjev za povezivanje sa Google Kalendarom je uspješno prihvaćen" #: frappe/www/contact.html:35 msgid "Your email address" -msgstr "" +msgstr "Vaša adresa e-pošte" #: frappe/public/js/frappe/web_form/web_form.js:428 msgid "Your form has been successfully updated" -msgstr "" +msgstr "Vaša forma je uspješno ažurirana" #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" -msgstr "" +msgstr "Vaš Id za prijavu je" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." -msgstr "" +msgstr "Vaša nova lozinka je uspješno postavljena." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." -msgstr "" +msgstr "Vaša stara lozinka nije tačna." #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "" +msgstr "Ime vaše organizacije i adresa za podnožje e-pošte." #: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." -msgstr "" +msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." -msgstr "" +msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." #: frappe/public/js/frappe/ui/toolbar/navbar.html:15 msgid "Your site is undergoing maintenance or being updated." -msgstr "" +msgstr "Vaša je stranica u toku održavanja ili ažuriranja." #: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" -msgstr "" +msgstr "Vaš verifikacioni kod je {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" -msgstr "" +msgstr "Nula" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Zero means send records updated at anytime" -msgstr "" +msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[Radnju preduzeta od {0}]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "" +msgstr "_doctype" #. Label of the _report (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_report" -msgstr "" +msgstr "_izvješće" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" -msgstr "" +msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" #: frappe/utils/background_jobs.py:120 msgid "`job_id` paramater is required for deduplication." -msgstr "" +msgstr "Paramater `job_id` je potreban za deduplikaciju." #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 msgid "added rows for {0}" -msgstr "" +msgstr "dodao redove za {0}" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "" +msgstr "nakon_umetanja" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "amend" -msgstr "" +msgstr "izmijeni" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" -msgstr "" +msgstr "i" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "ascending" -msgstr "" +msgstr "uzlazno" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "blue" -msgstr "" +msgstr "plava" #: frappe/public/js/frappe/form/workflow.js:35 msgid "by Role" -msgstr "" +msgstr "po Ulozi" #. Label of the profile (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "cProfile Output" -msgstr "" +msgstr "cProfil Izlaz" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 msgid "calendar" -msgstr "" +msgstr "kalendar" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "cancel" -msgstr "" +msgstr "otkaži" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" -msgstr "" +msgstr "otkazano" #: frappe/templates/includes/list/filters.html:19 msgid "clear" -msgstr "" +msgstr "očisti" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 msgid "commented" -msgstr "" +msgstr "komentarisao" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "create" -msgstr "" +msgstr "kreiraj" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "cyan" -msgstr "" +msgstr "cijan" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "" +msgstr "d" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "darkgrey" -msgstr "" +msgstr "tamno siva" #: frappe/core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" -msgstr "" +msgstr "nadzorna tabla" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd-mm-yyyy" -msgstr "" +msgstr "dd/mm/gggg" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd.mm.yyyy" -msgstr "" +msgstr "dd.mm.gggg" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd/mm/yyyy" -msgstr "" +msgstr "dd/mm/gggg" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "default" -msgstr "" +msgstr "standard" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" -msgstr "" +msgstr "odloženo" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "" +msgstr "izbriši" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "descending" -msgstr "" +msgstr "silazno" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" -msgstr "" +msgstr "tip dokumenta..., npr. klijent" #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "" +msgstr "npr. \"Podrška\", \"Prodaja\", \"Jerry Yang\"" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." -msgstr "" +msgstr "npr. (55 + 434) / 4 ili =Math.sin(Math.PI/2)..." #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "" +msgstr "npr. pop.gmail.com / imap.gmail.com" #. Description of the 'Default Incoming' (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "" +msgstr "npr. replies@yourcomany.com. Svi odgovori će stići u ovaj inbox." #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. smtp.gmail.com" -msgstr "" +msgstr "npr. smtp.gmail.com" #: frappe/custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" -msgstr "" +msgstr "npr.:" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "emacs" -msgstr "" +msgstr "emacs" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30179,367 +30482,367 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "email" -msgstr "" +msgstr "e-pošta" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "email inbox" -msgstr "" +msgstr "prijemno sanduče e-pošte" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" -msgstr "" +msgstr "prazno" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "" +msgstr "izvoz" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "facebook" -msgstr "" +msgstr "facebook" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "failed" -msgstr "" +msgstr "neuspješno" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "" +msgstr "fairlogin" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "finished" -msgstr "" +msgstr "završeno" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "gray" -msgstr "" +msgstr "sivo" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "green" -msgstr "" +msgstr "zeleno" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "grey" -msgstr "" +msgstr "siva" #: frappe/utils/backups.py:399 msgid "gzip not found in PATH! This is required to take a backup." -msgstr "" +msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "" +msgstr "h" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" -msgstr "" +msgstr "čvorište" #. Label of the icon (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "icon" -msgstr "" +msgstr "ikona" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "" +msgstr "uvoz" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "in minutes" -msgstr "" +msgstr "u minutama" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" -msgstr "" +msgstr "jane@example.com" #: frappe/public/js/frappe/utils/pretty_date.js:46 msgid "just now" -msgstr "" +msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" -msgstr "" +msgstr "oznaka" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "light-blue" -msgstr "" +msgstr "svijetlo-plava" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "link" -msgstr "" +msgstr "veza" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "linkedin" -msgstr "" +msgstr "linkedin" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "list" -msgstr "" +msgstr "lista" #: frappe/www/third_party_apps.html:43 msgid "logged in" -msgstr "" +msgstr "prijavljen" #: frappe/website/doctype/web_form/web_form.js:362 msgid "login_required" -msgstr "" +msgstr "prijava_potrebna" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "long" -msgstr "" +msgstr "dugo" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "" +msgstr "m" #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" -msgstr "" +msgstr "spojeno {0} u {1}" #: frappe/website/doctype/blog_post/templates/blog_post.html:25 #: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 msgid "min read" -msgstr "" +msgstr "min čitanja" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "mm-dd-yyyy" -msgstr "" +msgstr "mm-dd-gggg" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "mm/dd/yyyy" -msgstr "" +msgstr "mm/dd/gggg" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "module" -msgstr "" +msgstr "modul" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." -msgstr "" +msgstr "naziv modula..." #: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 msgid "new" -msgstr "" +msgstr "novi" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" -msgstr "" +msgstr "nova vrsta dokumenta" #. Label of the no_failed (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "no failed attempts" -msgstr "" +msgstr "nema neuspjelih pokušaja" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" -msgstr "" +msgstr "jednokratno" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json msgid "notified" -msgstr "" +msgstr "obaviješten" #: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" -msgstr "" +msgstr "sad" #: frappe/public/js/frappe/form/grid_pagination.js:116 msgid "of" -msgstr "" +msgstr "od" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "" +msgstr "stari_nadređeni" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "" +msgstr "na_otkazivanju" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "" +msgstr "na_promjeni" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "" +msgstr "na_podnošenju" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "" +msgstr "na_smeću" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "" +msgstr "na_ažuriranju" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "" +msgstr "na_ažuriranju_nakon_podnošenja" #: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 #: frappe/www/login.py:112 msgid "or" -msgstr "" +msgstr "ili" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "orange" -msgstr "" +msgstr "narandžasta" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "page" -msgstr "" +msgstr "stranica" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "pink" -msgstr "" +msgstr "roze" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "plain" -msgstr "" +msgstr "običan" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "print" -msgstr "" +msgstr "ispiši" #. Label of the processlist (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "processlist" -msgstr "" +msgstr "lista procesa" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "purple" -msgstr "" +msgstr "ljubičasta" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "query-report" -msgstr "" +msgstr "upit-izvještaj" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "queued" -msgstr "" +msgstr "u redu čekanja" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "" +msgstr "čitaj" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "red" -msgstr "" +msgstr "crveno" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 msgid "removed rows for {0}" -msgstr "" +msgstr "uklonjeni redovi za {0}" #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" -msgstr "" +msgstr "preimenovan iz {0} u {1}" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "report" -msgstr "" +msgstr "izvještaj" #. Label of the response (HTML) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json msgid "response" -msgstr "" +msgstr "odgovor" #: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" -msgstr "" +msgstr "vraćeno {0} kao {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "" +msgstr "s" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" -msgstr "" +msgstr "s256" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" -msgstr "" +msgstr "zakazano" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "" +msgstr "odaberi" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "share" -msgstr "" +msgstr "dijeli" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "short" -msgstr "" +msgstr "kratko" #: frappe/public/js/frappe/widgets/number_card_widget.js:298 msgid "since last month" -msgstr "" +msgstr "od prošlog mjeseca" #: frappe/public/js/frappe/widgets/number_card_widget.js:297 msgid "since last week" @@ -30547,129 +30850,129 @@ msgstr "od prošlog tjedna" #: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since last year" -msgstr "" +msgstr "od prosle godine" #: frappe/public/js/frappe/widgets/number_card_widget.js:296 msgid "since yesterday" -msgstr "" +msgstr "od jučer" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "started" -msgstr "" +msgstr "pokrenut" #: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." -msgstr "" +msgstr "počinje postavljanje..." #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. group" -msgstr "" +msgstr "string vrijednost, tj. grupa" #. Description of the 'LDAP Group Member attribute' (Data) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. member" -msgstr "" +msgstr "string vrijednost, tj. član" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" -msgstr "" +msgstr "vrijednost stringa, tj. {0} ili uid={0},ou=korisnici,dc=primjer,dc=com" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "submit" -msgstr "" +msgstr "podnesi" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" -msgstr "" +msgstr "naziv oznake..., npr. #tag" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" -msgstr "" +msgstr "tekst u vrsti dokumenta" #: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" -msgstr "" +msgstr "ova forma" #: frappe/tests/test_translate.py:174 msgid "this shouldn't break" -msgstr "" +msgstr "ovo ne bi trebalo da se pokvari" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "twitter" -msgstr "" +msgstr "twitter" #: frappe/public/js/frappe/change_log.html:7 msgid "updated to {0}" -msgstr "" +msgstr "ažurirano na {0}" #: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" -msgstr "" +msgstr "koristi % kao zamjenski znak" #: frappe/public/js/frappe/ui/filters/filter.js:360 msgid "values separated by commas" -msgstr "" +msgstr "vrijednosti odvojene zarezima" #. Label of the version_table (HTML) field in DocType 'Audit Trail' #: frappe/core/doctype/audit_trail/audit_trail.json msgid "version_table" -msgstr "" +msgstr "verzija_tabele" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" -msgstr "" +msgstr "preko Pravila Dodjele" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "via Auto Repeat" -msgstr "" +msgstr "putem Automatskog Ponavljanja" #: frappe/core/doctype/data_import/importer.py:271 #: frappe/core/doctype/data_import/importer.py:292 msgid "via Data Import" -msgstr "" +msgstr "putem Uvoza Podataka" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "via Google Meet" -msgstr "" +msgstr "putem Google Meet" #: frappe/email/doctype/notification/notification.py:361 msgid "via Notification" -msgstr "" +msgstr "putem Obavijesti" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" -msgstr "" +msgstr "preko {0}" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "vim" -msgstr "" +msgstr "vim" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "vscode" -msgstr "" +msgstr "vscode" #: frappe/templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" -msgstr "" +msgstr "želi pristupiti sljedećim detaljima vašeg računa" #. Description of the 'Popover Element' (Check) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "when clicked on element it will focus popover if present." -msgstr "" +msgstr "kada se klikne na element, on će fokusirati skočni prozor ako postoji." #. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -30678,675 +30981,676 @@ msgstr "wkhtmltopdf" #: frappe/printing/page/print/print.js:622 msgid "wkhtmltopdf 0.12.x (with patched qt)." -msgstr "" +msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)." #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "" +msgstr "pisati" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "yellow" -msgstr "" +msgstr "žuta" #: frappe/public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" -msgstr "" +msgstr "juče" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "yyyy-mm-dd" -msgstr "" +msgstr "gggg-mm-dd" #: frappe/desk/doctype/event/event.js:87 #: frappe/public/js/frappe/form/footer/form_timeline.js:547 msgid "{0}" -msgstr "" +msgstr "{0}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 msgid "{0} ${skip_list ? \"\" : type}" -msgstr "" +msgstr "{0} ${skip_list ? \"\" : tip}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 msgid "{0} ${type}" -msgstr "" +msgstr "{0} ${type}" #: frappe/public/js/frappe/data_import/data_exporter.js:80 #: frappe/public/js/frappe/views/gantt/gantt_view.js:54 msgid "{0} ({1})" -msgstr "" +msgstr "{0} ({1})" #: frappe/public/js/frappe/data_import/data_exporter.js:77 msgid "{0} ({1}) (1 row mandatory)" -msgstr "" +msgstr "{0} ({1}) (1 red obavezan)" #: frappe/public/js/frappe/views/gantt/gantt_view.js:53 msgid "{0} ({1}) - {2}%" -msgstr "" +msgstr "{0} ({1}) - {2}%" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 msgid "{0} = {1}" -msgstr "" +msgstr "{0} = {1}" #: frappe/public/js/frappe/views/calendar/calendar.js:30 msgid "{0} Calendar" -msgstr "" +msgstr "{0} Kalendar" #: frappe/public/js/frappe/views/reports/report_view.js:570 msgid "{0} Chart" -msgstr "" +msgstr "{0} Grafikon" #: frappe/core/page/dashboard_view/dashboard_view.js:67 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" -msgstr "" +msgstr "{0} Nadzorna Tabla" #: frappe/public/js/frappe/form/grid_row.js:470 #: frappe/public/js/frappe/list/list_settings.js:227 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" -msgstr "" +msgstr "{0} Polja" #: frappe/integrations/doctype/google_calendar/google_calendar.py:376 msgid "{0} Google Calendar Events synced." -msgstr "" +msgstr "{0} Događaji Google Kalendara su sinhronizovani." #: frappe/integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." -msgstr "" +msgstr "{0} Google Kontakti su sinhronizovani." #: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" -msgstr "" +msgstr "{0} Lajkade" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 #: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 #: frappe/www/list.html:8 msgid "{0} List" -msgstr "" +msgstr "{0} Lista" #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" -msgstr "" +msgstr "{0} M" #: frappe/public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" -msgstr "" +msgstr "{0} Karta" #: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" -msgstr "" +msgstr "{0} Naziv" #: frappe/model/base_document.py:1154 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" -msgstr "" +msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 #: frappe/public/js/frappe/widgets/chart_widget.js:366 msgid "{0} Report" -msgstr "" +msgstr "{0} Izvještaj" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" -msgstr "" +msgstr "{0} Izvještaji" #: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" -msgstr "" +msgstr "{0} Postavke" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 #: frappe/public/js/frappe/views/treeview.js:152 msgid "{0} Tree" -msgstr "" +msgstr "{0} Stablo" #: frappe/public/js/frappe/form/footer/form_timeline.js:128 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 msgid "{0} Web page views" -msgstr "" +msgstr "{0} Prikaza Web Stranice" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 msgid "{0} Workspace" -msgstr "" +msgstr "{0} Radni Prostor" #: frappe/public/js/frappe/form/link_selector.js:225 msgid "{0} added" -msgstr "" +msgstr "{0} dodano" #: frappe/public/js/frappe/form/controls/data.js:204 msgid "{0} already exists. Select another name" -msgstr "" +msgstr "{0} već postoji. Odaberite drugo ime" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" -msgstr "" +msgstr "{0} je već odjavljen" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" -msgstr "" +msgstr "{0} je već otkazan za {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" -msgstr "" +msgstr "{0} i {1}" #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" -msgstr "" +msgstr "{0} su trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" -msgstr "" +msgstr "{0} su obavezni" #: frappe/desk/form/assign_to.py:286 msgid "{0} assigned a new task {1} {2} to you" -msgstr "" +msgstr "{0} vam je dodijelio novi zadatak {1} {2}" #: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" -msgstr "" +msgstr "{0} dodijeljen {1}: {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" msgid "{0} attached {1}" -msgstr "" +msgstr "{0} priloženo {1}" #: frappe/core/doctype/system_settings/system_settings.py:150 msgid "{0} can not be more than {1}" -msgstr "" +msgstr "{0} ne može biti više od {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" -msgstr "" +msgstr "{0} je otkazao ovaj dokument" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 msgctxt "Form timeline" msgid "{0} cancelled this document {1}" -msgstr "" +msgstr "{0} je otkazao ovaj dokument {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." -msgstr "" +msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene." #: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" -msgstr "" +msgstr "{0} ne može biti skriven i obavezan bez ikakve zadane vrijednosti" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" -msgstr "" +msgstr "{0} promijenio vrijednost {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" -msgstr "" +msgstr "{0} promijenio vrijednost {1} {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" -msgstr "" +msgstr "{0} promijenio je vrijednosti za {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" -msgstr "" +msgstr "{0} promijenio vrijednosti za {1} {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:444 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" -msgstr "" +msgstr "{0} promijenio(la) {1} u {2}" #: frappe/website/doctype/blog_post/blog_post.py:382 msgid "{0} comments" -msgstr "" +msgstr "{0} komentara" #: frappe/core/doctype/doctype/doctype.py:1605 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." -msgstr "" +msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan." #: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" -msgstr "" +msgstr "{0} je uspješno kreiran" #: frappe/public/js/frappe/form/footer/form_timeline.js:141 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" -msgstr "" +msgstr "{0} je kreirao(la) ovo" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 msgctxt "Form timeline" msgid "{0} created this document {1}" -msgstr "" +msgstr "{0} je stvorio/la ovaj dokument {1}" #: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" -msgstr "" +msgstr "{0} d" #: frappe/public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" -msgstr "" +msgstr "{0} dana prije" #: frappe/website/doctype/website_settings/website_settings.py:96 #: frappe/website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" -msgstr "" +msgstr "{0} ne postoji u redu {1}" #: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" -msgstr "" +msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." -msgstr "" +msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}." #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" -msgstr "" +msgstr "{0} od {1} do {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" -msgstr "" +msgstr "{0} od {1} do {2} u redu #{3}" #: frappe/public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" -msgstr "" +msgstr "{0} h" #: frappe/core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." -msgstr "" +msgstr "{0} je već dodijelio(la) standard vrijednost za {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" -msgstr "" +msgstr "{0} je napustio(la) konverzaciju u {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" -msgstr "" +msgstr "{0} sati prije" #: frappe/website/doctype/web_form/templates/web_form.html:148 msgid "{0} if you are not redirected within {1} seconds" -msgstr "" +msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi" #: frappe/website/doctype/website_settings/website_settings.py:102 #: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" -msgstr "" +msgstr "{0} u redu {1} ne može imati i URL i podređene artikle" #: frappe/core/doctype/doctype/doctype.py:934 msgid "{0} is a mandatory field" -msgstr "" +msgstr "{0} je obavezno polje" #: frappe/core/doctype/file/file.py:544 msgid "{0} is a not a valid zip file" -msgstr "" +msgstr "{0} nije važeća zip datoteka" #: frappe/core/doctype/doctype/doctype.py:1618 msgid "{0} is an invalid Data field." -msgstr "" +msgstr "{0} je nevažeće polje podataka." #: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 msgid "{0} is an invalid email address in 'Recipients'" -msgstr "" +msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'" #: frappe/public/js/frappe/views/reports/report_view.js:1468 msgid "{0} is between {1} and {2}" -msgstr "" +msgstr "{0} je između {1} i {2}" #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 msgid "{0} is currently {1}" -msgstr "" +msgstr "{0} je trenutno {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1437 msgid "{0} is equal to {1}" -msgstr "" +msgstr "{0} je jednako {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1457 msgid "{0} is greater than or equal to {1}" -msgstr "" +msgstr "{0} je veće ili jednako {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1447 msgid "{0} is greater than {1}" -msgstr "" +msgstr "{0} je veće od {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1462 msgid "{0} is less than or equal to {1}" -msgstr "" +msgstr "{0} je manje ili jednako {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1452 msgid "{0} is less than {1}" -msgstr "" +msgstr "{0} je manje od {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1487 msgid "{0} is like {1}" -msgstr "" +msgstr "{0} je kao {1}" #: frappe/email/doctype/email_account/email_account.py:193 msgid "{0} is mandatory" -msgstr "" +msgstr "{0} je obavezan" + +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "{0} nije podređena tablica od {1}" #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" -msgstr "" +msgstr "{0} nije polje tipa dokumenta {1}" #: frappe/www/printview.py:384 msgid "{0} is not a raw printing format." -msgstr "" +msgstr "{0} nije direktni format za ispisivanje." #: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." -msgstr "" +msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar." #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 msgid "{0} is not a valid Cron expression." -msgstr "" +msgstr "{0} nije važeći Cron izraz." #: frappe/public/js/frappe/form/controls/dynamic_link.js:27 msgid "{0} is not a valid DocType for Dynamic Link" -msgstr "" +msgstr "{0} nije važeća DocType za dinamičku vezu" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" -msgstr "" +msgstr "{0} nije važeća adresa e-pošte" #: frappe/geo/doctype/country/country.py:30 msgid "{0} is not a valid ISO 3166 ALPHA-2 code." -msgstr "" +msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" -msgstr "" +msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" -msgstr "" +msgstr "{0} nije ispravan broj telefona" #: frappe/model/workflow.py:189 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." -msgstr "" +msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" -msgstr "" +msgstr "{0} nije važeći nadređeni DocType za {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" -msgstr "" +msgstr "{0} nije važeće nadređeno polje za {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" -msgstr "" +msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}" #: frappe/core/doctype/file/file.py:524 msgid "{0} is not a zip file" -msgstr "" +msgstr "{0} nije zip datoteka" #: frappe/public/js/frappe/views/reports/report_view.js:1442 msgid "{0} is not equal to {1}" -msgstr "" +msgstr "{0} nije jednako {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is not like {1}" -msgstr "" +msgstr "{0} nije kao {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1483 msgid "{0} is not one of {1}" -msgstr "" +msgstr "{0} nije jedno od {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1493 msgid "{0} is not set" -msgstr "" +msgstr "{0} nije postavljeno" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" -msgstr "" +msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" #: frappe/public/js/frappe/views/reports/report_view.js:1476 msgid "{0} is one of {1}" -msgstr "" +msgstr "{0} je jedan od {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" -msgstr "" +msgstr "{0} je obavezan" #: frappe/public/js/frappe/views/reports/report_view.js:1492 msgid "{0} is set" -msgstr "" +msgstr "{0} je postavljeno" #: frappe/public/js/frappe/views/reports/report_view.js:1471 msgid "{0} is within {1}" -msgstr "" +msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" -msgstr "" +msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" -msgstr "" +msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:152 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" -msgstr "" +msgstr "{0} je zadnji put uredio ovo" #: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" -msgstr "" +msgstr "{0} prijavljen" #: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" -msgstr "" +msgstr "{0} odjavljen: {1}" #: frappe/public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "" +msgstr "{0} m" #: frappe/desk/notifications.py:408 msgid "{0} mentioned you in a comment in {1} {2}" -msgstr "" +msgstr "{0} vas je spomenuo u komentaru u {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" -msgstr "" +msgstr "prije {0} minuta" #: frappe/public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" -msgstr "" +msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" -msgstr "" +msgstr "{0} mora biti iza {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" -msgstr "" +msgstr "{0} mora početi sa '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" -msgstr "" +msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" -msgstr "" +msgstr "{0} ne smije biti ni jedna od {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" -msgstr "" +msgstr "{0} mora biti jedan od {1}" #: frappe/model/base_document.py:876 msgid "{0} must be set first" -msgstr "" +msgstr "{0} se mora prvo postaviti" #: frappe/model/base_document.py:729 msgid "{0} must be unique" -msgstr "" +msgstr "{0} mora biti jedinstven" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" -msgstr "" +msgstr "{0} mora biti {1} {2}" #: frappe/core/doctype/language/language.py:79 msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." -msgstr "" +msgstr "{0} mora početi i završavati slovom i može sadržavati samo slova, crticu ili donju crticu." #: frappe/workflow/doctype/workflow/workflow.py:90 msgid "{0} not a valid State" -msgstr "" +msgstr "{0} nije važeća Zemlja" #: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" -msgstr "" +msgstr "{0} nije dozvoljeno preimenovati" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" -msgstr "" +msgstr "{0} nije pronađen" #: frappe/core/doctype/report/report.py:427 #: frappe/public/js/frappe/list/list_view.js:1068 msgid "{0} of {1}" -msgstr "" +msgstr "{0} od {1}" #: frappe/public/js/frappe/list/list_view.js:1070 msgid "{0} of {1} ({2} rows with children)" -msgstr "" +msgstr "{0} od {1} ({2} redovi sa potomcima)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." -msgstr "" +msgstr "Samo {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" -msgstr "" +msgstr "{0} ili {1}" #: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" -msgstr "" +msgstr "{0} zapis(a) obrisan(o)" #: frappe/public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." -msgstr "" +msgstr "{0} zapis(a) nije obrisan(o) automatski." #: frappe/public/js/frappe/logtypes.js:29 msgid "{0} records are retained for {1} days." -msgstr "" +msgstr "{0} zapis(a) su zadržana {1} dana." #: frappe/core/doctype/user_permission/user_permission_list.js:179 msgid "{0} records deleted" -msgstr "" +msgstr "{0} zapis(a) je obrisan(o)" #: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" -msgstr "" +msgstr "{0} zapis(a) će biti izvezen(o)" #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" -msgstr "" +msgstr "{0} uklonio prilog {1}" #: frappe/desk/doctype/todo/todo.py:58 msgid "{0} removed their assignment." -msgstr "" +msgstr "{0} je uklonio(la) svoju dodjelu." #: frappe/public/js/frappe/roles_editor.js:62 msgid "{0} role does not have permission on any doctype" -msgstr "" +msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " -msgstr "" +msgstr "{0} red #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" -msgstr "" +msgstr "{0} uspješno spremljen" #: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" -msgstr "" +msgstr "{0} je sam sebi dodijelio ovaj zadatak: {1}" #: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" -msgstr "" +msgstr "{0} podijelio(la) dokument {1} {2} s vama" #: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" -msgstr "" +msgstr "{0} je podijelio(la) ovaj dokument sa svima" #: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" -msgstr "" +msgstr "{0} podijelio(la) ovaj dokument sa {1}" #: frappe/core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" -msgstr "" +msgstr "{0} treba indeksirati jer se poziva na konekcije nadzorne table" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 msgid "{0} should not be same as {1}" -msgstr "" +msgstr "{0} ne bi trebalo biti isto kao {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" -msgstr "" +msgstr "{0} je podnio ovaj dokument" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" msgid "{0} submitted this document {1}" -msgstr "" +msgstr "{0} je podnio ovaj dokument {1}" #: frappe/email/doctype/email_group/email_group.py:62 #: frappe/email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" -msgstr "" +msgstr "{0} pretplatnika je dodano" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" -msgstr "" +msgstr "{0} da prestanete primati e-poštu ovog tipa" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 #: frappe/public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" -msgstr "" +msgstr "{0} do {1}" #: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" -msgstr "" +msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}" #: frappe/custom/doctype/customize_form/customize_form.py:253 msgid "{0} updated" -msgstr "" +msgstr "{0} ažurirano" #: frappe/public/js/frappe/form/controls/multiselect_list.js:198 msgid "{0} values selected" -msgstr "" +msgstr "{0} vrijednosti odabrane" #: frappe/public/js/frappe/form/footer/form_timeline.js:184 msgid "{0} viewed this" -msgstr "" +msgstr "{0} je prikazao ovo" #: frappe/public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "" +msgstr "{0} w" #: frappe/public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" @@ -31354,237 +31658,237 @@ msgstr "prije {0} tjedana" #: frappe/public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" -msgstr "" +msgstr "{0} g" #: frappe/public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" -msgstr "" +msgstr "{0} godina prije" #: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" -msgstr "" +msgstr "{0} {1} dodano" #: frappe/public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" -msgstr "" +msgstr "{0} {1} dodan na Nadzornu Ploču {2}" #: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" -msgstr "" +msgstr "{0} {1} već postoji" #: frappe/model/base_document.py:987 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" -msgstr "" +msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\"" #: frappe/utils/nestedset.py:340 msgid "{0} {1} cannot be a leaf node as it has children" -msgstr "" +msgstr "{0} {1} ne može biti nadređeni jer ima podređene" #: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" -msgstr "" +msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje" #: frappe/public/js/frappe/form/form.js:951 msgid "{0} {1} is linked with the following submitted documents: {2}" -msgstr "" +msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" -msgstr "" +msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." -msgstr "" +msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}." #: frappe/model/base_document.py:1115 msgid "{0}, Row {1}" -msgstr "" +msgstr "{0}, Red {1}" #: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 msgid "{0}/{1} complete | Please leave this tab open until completion." -msgstr "" +msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka." #: frappe/model/base_document.py:1120 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" -msgstr "" +msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}" #: frappe/core/doctype/doctype/doctype.py:1800 msgid "{0}: Cannot set Amend without Cancel" -msgstr "" +msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži" #: frappe/core/doctype/doctype/doctype.py:1818 msgid "{0}: Cannot set Assign Amend if not Submittable" -msgstr "" +msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo" #: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Assign Submit if not Submittable" -msgstr "" +msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo" #: frappe/core/doctype/doctype/doctype.py:1795 msgid "{0}: Cannot set Cancel without Submit" -msgstr "" +msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi" #: frappe/core/doctype/doctype/doctype.py:1802 msgid "{0}: Cannot set Import without Create" -msgstr "" +msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja" #: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" -msgstr "" +msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši" #: frappe/core/doctype/doctype/doctype.py:1822 msgid "{0}: Cannot set import as {1} is not importable" -msgstr "" +msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" -msgstr "" +msgstr "{0}: Nije uspjelo prilaganje novog ponavljajućeg dokumenta. Da biste omogućili prilaganje dokumenta u automatskom ponavljanju obavijesti e-pošte, omogući {1} u Postavkama Ispisa" #: frappe/core/doctype/doctype/doctype.py:1426 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" -msgstr "" +msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti" #: frappe/core/doctype/doctype/doctype.py:1334 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" -msgstr "" +msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog" #: frappe/core/doctype/doctype/doctype.py:1293 msgid "{0}: Field {1} of type {2} cannot be mandatory" -msgstr "" +msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno" #: frappe/core/doctype/doctype/doctype.py:1281 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" -msgstr "" +msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}" #: frappe/core/doctype/doctype/doctype.py:1413 msgid "{0}: Fieldtype {1} for {2} cannot be unique" -msgstr "" +msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven" #: frappe/core/doctype/doctype/doctype.py:1755 msgid "{0}: No basic permissions set" -msgstr "" +msgstr "{0}: Nisu postavljene osnovne dozvole" #: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" -msgstr "" +msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}" #: frappe/core/doctype/doctype/doctype.py:1315 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" -msgstr "" +msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}" #: frappe/core/doctype/doctype/doctype.py:1304 msgid "{0}: Options required for Link or Table type field {1} in row {2}" -msgstr "" +msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}" #: frappe/core/doctype/doctype/doctype.py:1322 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" -msgstr "" +msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}" #: frappe/public/js/frappe/form/workflow.js:45 msgid "{0}: Other permission rules may also apply" -msgstr "" +msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama" #: frappe/core/doctype/doctype/doctype.py:1784 msgid "{0}: Permission at level 0 must be set before higher levels are set" -msgstr "" +msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa" #: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" -msgstr "" +msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}" #: frappe/core/doctype/doctype/doctype.py:1268 msgid "{0}: fieldname cannot be set to reserved keyword {1}" -msgstr "" +msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}" #: frappe/contacts/doctype/address/address.js:35 #: frappe/contacts/doctype/contact/contact.js:88 msgid "{0}: {1}" -msgstr "" +msgstr "{0}: {1}" #: frappe/workflow/doctype/workflow_action/workflow_action.py:172 msgid "{0}: {1} is set to state {2}" -msgstr "" +msgstr "{0}: {1} je postavljeno na stanje {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" -msgstr "" +msgstr "{0}: {1} naspram {2}" #: frappe/core/doctype/doctype/doctype.py:1434 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" -msgstr "" +msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati" #: frappe/public/js/frappe/form/quick_entry.js:195 msgid "{1} saved" -msgstr "" +msgstr "{1} spremljen" #: frappe/public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" -msgstr "" +msgstr "{count} ćelija kopirana" #: frappe/public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" -msgstr "" +msgstr "{count} ćelija kopirano" #: frappe/public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" -msgstr "" +msgstr "{count} red odabran" #: frappe/public/js/frappe/utils/datatable.js:17 msgid "{count} rows selected" -msgstr "" +msgstr "{count} redova odabrano" #: frappe/core/doctype/doctype/doctype.py:1488 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." -msgstr "" +msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}." #: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" -msgstr "" +msgstr "{} Završeno" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" -msgstr "" +msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" -msgstr "" +msgstr "{} Možda nevažeći python kod.
{}" #. Count format of shortcut in the Website Workspace #: frappe/website/workspace/website/website.json msgid "{} Published" -msgstr "" +msgstr "{} Objavljeno" #: frappe/core/doctype/log_settings/log_settings.py:54 msgid "{} does not support automated log clearing." -msgstr "" +msgstr "{} ne podržava automatsko brisanje dnevnika." #: frappe/core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." -msgstr "" +msgstr "Polje {} ne može biti prazno." #: frappe/email/doctype/email_account/email_account.py:223 #: frappe/email/doctype/email_account/email_account.py:231 msgid "{} has been disabled. It can only be enabled if {} is checked." -msgstr "" +msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." -msgstr "" +msgstr "{} nije ispravan datumski niz." #: frappe/commands/utils.py:562 msgid "{} not found in PATH! This is required to access the console." -msgstr "" +msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli." #: frappe/database/db_manager.py:99 msgid "{} not found in PATH! This is required to restore the database." -msgstr "" +msgstr "{} nije pronađeno u PATH! Ovo je potrebno za vraćanje baze podataka." #: frappe/utils/backups.py:466 msgid "{} not found in PATH! This is required to take a backup." -msgstr "" +msgstr "{} nije pronađeno u PATH! Ovo je potrebno za izradu sigurnosne kopije." #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 #: frappe/public/js/frappe/file_uploader/WebLink.vue:4 msgid "← Back to upload files" -msgstr "" +msgstr "← Nazad na učitavanje datoteka" diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 5a063ebaf7..874aa3cd9b 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Módosítás nem engedélyezett" @@ -1974,7 +2029,7 @@ msgstr "Módosítás nem engedélyezett" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "Feltétel leírás" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Hozzáférés megerősítése" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Nem sikerült elindulni: " @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11256,7 +11344,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "" +msgstr "Rács Oldal hossza" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12025,7 +12130,7 @@ msgstr "" #. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "If enabled, all responses on the web form will be submitted anonymously" -msgstr "" +msgstr "Ha engedélyezve van, a webes űrlapra adott összes válasz névtelenül kerül benyújtásra." #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12470,7 +12575,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 msgid "In Minutes" -msgstr "" +msgstr "Percben" #. Label of the in_preview (Check) field in DocType 'DocField' #. Label of the in_preview (Check) field in DocType 'Custom Field' @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12927,7 +13036,7 @@ msgstr "" #: frappe/integrations/frappe_providers/frappecloud_billing.py:111 msgid "Invalid Code. Please try again." -msgstr "" +msgstr "Érvénytelen kód. Kérjük próbáld újra." #: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/id.po b/frappe/locale/id.po index 3e07ae769b..69f71893f1 100644 --- a/frappe/locale/id.po +++ b/frappe/locale/id.po @@ -1,365 +1,263 @@ -# Translations template for Frappe Framework. -# Copyright (C) 2024 Frappe Technologies -# This file is distributed under the same license as the Frappe Framework -# project. -# FIRST AUTHOR , 2024. -# msgid "" msgstr "" -"Project-Id-Version: Frappe Framework VERSION\n" +"Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2024-01-12 01:53+0053\n" -"PO-Revision-Date: 2024-01-10 16:34+0553\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-25 22:40\n" "Last-Translator: developers@frappe.io\n" -"Language-Team: developers@frappe.io\n" +"Language-Team: Indonesian\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.13.1\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: id\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: id_ID\n" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid " to your browser" msgstr "ke browser Anda" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" msgstr "" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "\"Sejarah Perusahaan\"" +msgstr "" -#: core/doctype/data_export/exporter.py:204 +#: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" msgstr "\"Induk\" menandakan tabel induk di mana baris ini harus ditambahkan" #. Description of the 'Team Members Heading' (Data) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "\"Anggota Tim\" atau \"Manajemen\"" +msgstr "" -#: public/js/frappe/form/form.js:1063 +#: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." msgstr "Bidang "amended_from" harus ada untuk melakukan amandemen." -#: utils/csvutils.py:219 +#: frappe/utils/csvutils.py:246 msgid "\"{0}\" is not a valid Google Sheets URL" msgstr ""{0}" bukan URL Google Spreadsheet yang valid" -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "# ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#'###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#, ###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,###.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#,##,###.##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "#.###,##" -msgstr "" - -#. Option for the 'Number Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "#.###,##" -msgstr "" - -#: public/js/frappe/ui/toolbar/tag_utils.js:21 -#: public/js/frappe/ui/toolbar/tag_utils.js:22 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 msgid "#{0}" msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "<head> HTML" -msgstr "<head> HTML" +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" -#: public/js/form_builder/store.js:201 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "" + +#: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1305 +#: frappe/core/doctype/doctype/doctype.py:1354 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}" -#: public/js/form_builder/store.js:193 +#: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:360 +#: frappe/custom/doctype/customize_form/customize_form.py:362 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}" -#: automation/doctype/auto_repeat/auto_repeat.py:149 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" msgstr "'Penerima' belum ditentukan" -#: utils/__init__.py:240 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" -#: core/doctype/doctype/doctype.py:1299 +#: frappe/core/doctype/doctype/doctype.py:1348 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}" -#: model/rename_doc.py:689 +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" msgstr "** Gagal: {0} ke {1}: {2}" +#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" + #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "0 - Draft; 1 - Dikirim; 2 - Dibatalkan" +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "0 adalah tertinggi" +msgstr "" -#: public/js/frappe/form/grid_row.js:786 +#: frappe/public/js/frappe/form/grid_row.js:876 msgid "1 = True & 0 = False" msgstr "" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "" -"1 Currency = [?] Fraction\n" +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" "For e.g. 1 USD = 100 Cent" msgstr "" -#: public/js/frappe/form/reminders.js:19 +#: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:358 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." msgstr "1 Acara Kalender Google disinkronkan." -#: website/doctype/blog_post/blog_post.py:378 +#: frappe/public/js/frappe/views/reports/query_report.js:954 +msgid "1 Report" +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:380 msgid "1 comment" msgstr "1 komentar" -#: tests/test_utils.py:647 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" -#: public/js/frappe/form/reminders.js:17 +#: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" msgstr "" -#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645 +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643 +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651 +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 bulan lalu" -#: public/js/frappe/data_import/data_exporter.js:223 +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" msgstr "1 catatan akan diekspor" -#: tests/test_utils.py:642 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" -#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649 +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 minggu yang lalu" -#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653 +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 tahun yang lalu" -#: tests/test_utils.py:646 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: tests/test_utils.py:652 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: tests/test_utils.py:650 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: tests/test_utils.py:654 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: tests/test_utils.py:644 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" -#: public/js/frappe/form/reminders.js:16 +#: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" msgstr "" -#: public/js/frappe/form/reminders.js:18 +#: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "5 catatan" -#: tests/test_utils.py:648 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:37 +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" msgstr "; tidak diijinkan dalam kondisi" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<=" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:564 +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "" #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"
\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
\n" " Edit list of Series in the box. Rules:\n" "
    \n" "
  • Each Series Prefix on a new line.
  • \n" @@ -380,11 +278,12 @@ msgid "" "
  • .MM. - Month
  • \n" "
  • .DD. - Day of month
  • \n" "
  • .WW. - Week of the year
  • \n" -"
  • .FY. - Fiscal Year
  • \n" "
  • \n" " .{fieldname}. - fieldname on the document e.g.\n" " branch\n" "
  • \n" +"
  • .FY. - Fiscal Year (requires ERPNext to be installed)
  • \n" +"
  • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
  • \n" "
\n" " \n" " \n" @@ -400,38 +299,27 @@ msgid "" msgstr "" #. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "" -"

Custom CSS Help

\n" -"\n" -"

Notes:

\n" -"\n" +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

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

Examples

\n" -"\n" -"

1. Left align integers

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

1. Add border to sections except the last section

\n" -"\n" +"\n\n" +"

Examples

\n\n" +"

1. Left align integers

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

1. Add border to sections except the last section

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

Print Format Help

\n" +msgid "

Print Format Help

\n" "
\n" "

Introduction

\n" "

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

\n" @@ -500,11 +388,9 @@ msgid "" msgstr "" #. Description of the 'Template' (Code) field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/address_template/address_template.json #, python-format -msgctxt "Address Template" -msgid "" -"

Default Template

\n" +msgid "

Default Template

\n" "

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

\n" "
{{ address_line1 }}<br>\n"
 "{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
 msgstr ""
 
 #. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"

Email Reply Example

\n" -"\n" -"
Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "

Email Reply Example

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

How to get fieldnames

\n" -"\n" -"

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

\n" -"\n" -"

Templating

\n" -"\n" +"
\n\n" +"

How to get fieldnames

\n\n" +"

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

\n\n" +"

Templating

\n\n" "

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

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

Condition Examples:

\n" +#: frappe/integrations/doctype/webhook/webhook.json +msgid "

Condition Examples:

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

Condition Examples:

\n" +#: frappe/email/doctype/notification/notification.json +msgid "

Condition Examples:

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

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

For Example:

\n" +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "

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

For Example:

\n" "

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

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

Set context before rendering a template. Example:

\n" +#: frappe/website/doctype/web_page/web_page.json +msgid "

Set context before rendering a template. Example:

\n" "

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

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

For example:

// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "

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

For example:

// here root_element is provided by default\n"
 "let some_class_element = root_element.querySelector('.some-class');\n"
 "some_class_element.textContent = \"New content\";\n"
 "
" msgstr "" -#: twofactor.py:469 +#: frappe/twofactor.py:446 msgid "

Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.

" msgstr "" #. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job #. Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "" -"
*  *  *  *  *\n"
-"┬  ┬  ┬  ┬  ┬\n"
-"│  │  │  │  │\n"
-"│  │  │  │  └ day of week (0 - 6) (0 is Sunday)\n"
-"│  │  │  └───── month (1 - 12)\n"
-"│  │  └────────── day of month (1 - 31)\n"
-"│  └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n" -msgstr "" - #. Description of the 'Cron Format' (Data) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "" -"
*  *  *  *  *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "
*  *  *  *  *\n"
 "┬  ┬  ┬  ┬  ┬\n"
 "│  │  │  │  │\n"
 "│  │  │  │  └ day of week (0 - 6) (0 is Sunday)\n"
 "│  │  │  └───── month (1 - 12)\n"
 "│  │  └────────── day of month (1 - 31)\n"
 "│  └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
 "* - Any value\n"
 "/ - Step values\n"
 "
\n" msgstr "" #. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "" -"
doc.grand_total > 0
\n" -"\n" +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "
doc.grand_total > 0
\n\n" "

Conditions should be written in simple Python. Please use properties available in the form only.

\n" "

Allowed functions:\n" "

    \n" @@ -686,27369 +519,22965 @@ msgid "" "

    Example:

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

    " msgstr "" -#: custom/doctype/custom_field/custom_field.js:39 +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "=" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">" msgstr "" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid ">=" msgstr "" -#. Description of the Onboarding Step 'Custom Document Types' -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs." -msgstr "" - -#: core/doctype/doctype/doctype.py:1015 +#: frappe/core/doctype/doctype/doctype.py:1034 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" -#: website/doctype/blog_post/blog_post.py:93 +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + +#: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Postingan unggulan harus memiliki gambar sampul" -#: custom/doctype/custom_field/custom_field.py:171 +#: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: core/doctype/file/file.py:254 +#: frappe/core/doctype/file/file.py:257 msgid "A file with same name {} already exists" msgstr "" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.
    e.g. project" -msgstr "Sebuah daftar sumber daya yang App Klien akan memiliki akses ke setelah pengguna memungkinkan.
    misalnya proyek" +msgstr "" -#: templates/emails/new_user.html:5 +#: frappe/templates/emails/new_user.html:5 msgid "A new account has been created for you at {0}" msgstr "Sebuah akun baru telah dibuat untuk Anda di {0}" -#: automation/doctype/auto_repeat/auto_repeat.py:388 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}." #. Description of the 'Symbol' (Data) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "A symbol for this currency. For e.g. $" -msgstr "Simbol untuk mata uang ini. Contoh $" +msgstr "" -#: printing/doctype/print_format_field_template/print_format_field_template.py:48 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 msgid "A template already exists for field {0} of {1}" msgstr "" -#: utils/password_strength.py:173 +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
    \n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + +#: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Sebuah kata dengan sendirinya mudah ditebak." #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A0" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A1" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A2" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A3" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A4" -msgstr "A4" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A5" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A6" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A7" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A8" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "A9" msgstr "" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "ALL" -msgstr "SEMUA" +msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "API" -msgstr "API" +msgstr "" -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "API Access" -msgstr "Akses API" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "API Access" -msgstr "Akses API" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the api_endpoint (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "API Endpoint" -msgstr "API Endpoint" +msgstr "" -#. Label of a Code field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "API Endpoint Args" -msgstr "API Endpoint Args" +msgstr "" -#. Label of a Data field in DocType 'Google Settings' -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Key" -msgstr "API Key" +msgstr "" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "API Key" -msgstr "API Key" +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" #. Description of the 'API Key' (Data) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "API Key cannot be regenerated" msgstr "" -#. Label of a Data field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "API Method" -msgstr "Metode API" +msgstr "" -#. Label of a Password field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" -msgstr "API Rahasia" - -#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "ASC" -msgstr "ASC" +msgstr "" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "ASC" +msgstr "" #. Label of a standard help item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "About" msgstr "" -#: www/about.html:11 www/about.html:18 +#: frappe/www/about.html:11 frappe/www/about.html:18 msgid "About Us" msgstr "" #. Name of a DocType -#: website/doctype/about_us_settings/about_us_settings.json -msgid "About Us Settings" -msgstr "Pengaturan Tetang Kami" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json msgid "About Us Settings" msgstr "Pengaturan Tetang Kami" #. Name of a DocType -#: website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "About Us Team Member" msgstr "Tentang Kami Anggota Tim" -#: core/doctype/data_import/data_import.js:27 +#: frappe/core/doctype/data_import/data_import.js:27 msgid "About {0} minute remaining" msgstr "Sekitar {0} menit tersisa" -#: core/doctype/data_import/data_import.js:28 +#: frappe/core/doctype/data_import/data_import.js:28 msgid "About {0} minutes remaining" msgstr "Sekitar {0} menit tersisa" -#: core/doctype/data_import/data_import.js:25 +#: frappe/core/doctype/data_import/data_import.js:25 msgid "About {0} seconds remaining" msgstr "Tentang {0} detik tersisa" -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Access Key ID" -msgstr "ID Kunci Akses" - -#. Label of a Password field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Access Key Secret" -msgstr "Akses Kunci Rahasia" +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "" #. Name of a DocType -#: core/doctype/access_log/access_log.json -msgid "Access Log" -msgstr "Log Akses" - #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Access Log" +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json msgid "Access Log" msgstr "Log Akses" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Access Log" -msgstr "Log Akses" - -#. Label of a Data field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Access Token" -msgstr "Akses Token" +msgstr "" -#. Label of a Password field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Access Token" -msgstr "Akses Token" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Access Token URL" -msgstr "URL Token Akses" +msgstr "" -#: auth.py:444 +#: frappe/auth.py:491 msgid "Access not allowed from this IP Address" msgstr "Akses tidak diizinkan dari Alamat IP ini" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Account" msgstr "Akun" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Account Deletion Settings" msgstr "" #. Name of a role -#: automation/doctype/auto_repeat/auto_repeat.json -#: contacts/doctype/contact/contact.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Accounts Manager" msgstr "Pengelola Akun" #. Name of a role -#: automation/doctype/auto_repeat/auto_repeat.json -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Accounts User" msgstr "Pengguna Akun" -#: email/doctype/email_group/email_group.js:34 -#: email/doctype/email_group/email_group.js:63 -#: email/doctype/email_group/email_group.js:72 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37 -#: public/js/frappe/form/sidebar/review.js:59 -#: workflow/page/workflow_builder/workflow_builder.js:37 -msgid "Action" -msgstr "Tindakan" - -#. Label of a Select field in DocType 'Amended Document Naming Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Select field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Action" -msgstr "Tindakan" +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "" +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 msgid "Action" msgstr "Tindakan" -#. Label of a Select field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Action" -msgstr "Tindakan" - -#. Label of a Small Text field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action / Route" -msgstr "Tindakan / Rute" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:310 -#: public/js/frappe/widgets/onboarding_widget.js:381 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 msgid "Action Complete" msgstr "" -#: model/document.py:1648 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "aksi Gagal" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Action Label" msgstr "" -#. Label of a Int field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json msgid "Action Timeout (Seconds)" -msgstr "Timeout Aksi (Detik)" +msgstr "" -#. Label of a Select field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action Type" -msgstr "tipe aksi" +msgstr "" -#: core/doctype/submission_queue/submission_queue.py:119 +#: frappe/core/doctype/submission_queue/submission_queue.py:120 msgid "Action {0} completed successfully on {1} {2}. View it {3}" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:115 +#: frappe/core/doctype/submission_queue/submission_queue.py:116 msgid "Action {0} failed on {1} {2}. View it {3}" msgstr "" -#: core/doctype/communication/communication.js:66 -#: core/doctype/communication/communication.js:74 -#: core/doctype/communication/communication.js:82 -#: core/doctype/communication/communication.js:90 -#: core/doctype/communication/communication.js:99 -#: core/doctype/communication/communication.js:108 -#: core/doctype/communication/communication.js:131 -#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39 -#: custom/doctype/customize_form/customize_form.js:108 -#: custom/doctype/customize_form/customize_form.js:116 -#: custom/doctype/customize_form/customize_form.js:124 -#: custom/doctype/customize_form/customize_form.js:132 -#: custom/doctype/customize_form/customize_form.js:140 -#: custom/doctype/customize_form/customize_form.js:238 -#: public/js/frappe/views/reports/query_report.js:190 -#: public/js/frappe/views/reports/query_report.js:203 -#: public/js/frappe/views/reports/query_report.js:213 +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Tindakan" -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Actions" -msgstr "Tindakan" - -#. Label of a Section Break field in DocType 'DocType' -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Actions" -msgstr "Tindakan" - -#. Label of a Check field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Activate" msgstr "" -#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12 -#: workflow/doctype/workflow/workflow_list.js:5 -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Active" -msgstr "Aktif" - #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 msgid "Active" msgstr "Aktif" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Active Directory" msgstr "" -#. Label of a Section Break field in DocType 'Domain Settings' -#. Label of a Table field in DocType 'Domain Settings' -#: core/doctype/domain_settings/domain_settings.json -msgctxt "Domain Settings" +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Active Domains" -msgstr "Domain aktif" +msgstr "" -#: www/third_party_apps.html:32 +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 msgid "Active Sessions" msgstr "Sesi Aktif" -#: public/js/frappe/form/dashboard.js:22 -msgid "Activity" -msgstr "Aktivitas" - #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 msgid "Activity" msgstr "Aktivitas" #. Name of a DocType -#: core/doctype/activity_log/activity_log.json -msgid "Activity Log" -msgstr "Log Aktivitas" - #. Label of a Link in the Build Workspace #. Label of a Link in the Users Workspace -#: core/workspace/build/build.json core/workspace/users/users.json -msgctxt "Activity Log" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json msgid "Activity Log" msgstr "Log Aktivitas" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Activity Log" -msgstr "Log Aktivitas" - -#: core/page/permission_manager/permission_manager.js:465 -#: email/doctype/email_group/email_group.js:60 -#: public/js/frappe/form/grid_row.js:468 -#: public/js/frappe/form/sidebar/assign_to.js:100 -#: public/js/frappe/list/bulk_operations.js:372 -#: public/js/frappe/views/dashboard/dashboard_view.js:440 -#: public/js/frappe/views/reports/query_report.js:265 -#: public/js/frappe/views/reports/query_report.js:293 -#: public/js/frappe/widgets/widget_dialog.js:30 +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Tambahkan" -#: core/doctype/user_permission/user_permission_list.js:4 +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" msgstr "Tambah / Perbarui" -#: core/page/permission_manager/permission_manager.js:425 +#: frappe/core/page/permission_manager/permission_manager.js:442 msgid "Add A New Rule" msgstr "Tambah Aturan Baru" -#: public/js/frappe/views/interaction.js:159 +#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Tambahkan lampiran" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_background_image (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Background Image" msgstr "" -#. Title of an Onboarding Step -#: website/onboarding_step/add_blog_category/add_blog_category.json -msgid "Add Blog Category" -msgstr "" - -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Border at Bottom" msgstr "" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Border at Top" msgstr "" -#: public/js/frappe/views/reports/query_report.js:209 +#: frappe/desk/doctype/number_card/number_card.js:36 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Tambahkan Bagan ke Dasbor" -#: public/js/frappe/views/treeview.js:285 +#: frappe/public/js/frappe/views/treeview.js:301 msgid "Add Child" msgstr "Tambah Anak" -#: public/js/frappe/views/reports/query_report.js:1664 -#: public/js/frappe/views/reports/query_report.js:1667 -#: public/js/frappe/views/reports/report_view.js:329 -#: public/js/frappe/views/reports/report_view.js:354 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/report_view.js:355 +#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Tambahkan Kolom" -#: core/doctype/communication/communication.js:127 +#: frappe/core/doctype/communication/communication.js:127 msgid "Add Contact" msgstr "Tambah kontak" -#: desk/doctype/event/event.js:38 +#: frappe/desk/doctype/event/event.js:38 msgid "Add Contacts" msgstr "Tambahkan Kontak" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_container (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Container" -msgstr "Tambahkan Penampung" +msgstr "" -#. Label of a Button field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the set_meta_tags (Button) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Add Custom Tags" -msgstr "Tambahkan Tag Kustom" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:159 -#: public/js/frappe/widgets/widget_dialog.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 msgid "Add Filters" msgstr "Tambahkan Filter" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_shade (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Gray Background" -msgstr "Tambahkan Latar Belakang Abu-abu" +msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:417 +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Tambahkan Grup" -#: core/page/permission_manager/permission_manager.js:428 +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "Tambahkan Beberapa" + +#: frappe/core/page/permission_manager/permission_manager.js:445 msgid "Add New Permission Rule" msgstr "Tambahkan Rule Izin Baru" -#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42 +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 msgid "Add Participants" msgstr "Tambahkan Peserta" -#. Label of a Check field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the add_query_parameters (Check) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Add Query Parameters" msgstr "" -#: public/js/frappe/form/sidebar/review.js:45 -msgid "Add Review" -msgstr "Tambahkan Ulasan" - -#: core/doctype/user/user.py:768 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" -#: public/js/frappe/views/communication.js:117 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Row" +msgstr "" + +#. Label of the add_signature (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Tambahkan Signature" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Add Signature" -msgstr "Tambahkan Signature" - -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Space at Bottom" msgstr "" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the add_top_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Space at Top" msgstr "" -#: email/doctype/email_group/email_group.js:38 -#: email/doctype/email_group/email_group.js:59 +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 msgid "Add Subscribers" msgstr "Tambahkan Pelanggan" -#: public/js/frappe/list/bulk_operations.js:360 +#: frappe/public/js/frappe/list/bulk_operations.js:425 msgid "Add Tags" msgstr "" -#: public/js/frappe/list/list_view.js:1834 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: public/js/frappe/views/communication.js:320 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Add Total Row" -msgstr "Tambahkan 'Baris Total'" +msgstr "" -#. Label of a Check field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "" + +#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Add Unsubscribe Link" -msgstr "Menambahkan Unsubscribe Link" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:6 +#: frappe/core/doctype/user_permission/user_permission_list.js:6 msgid "Add User Permissions" msgstr "Tambahkan Izin Pengguna" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Add Video Conferencing" msgstr "" -#: public/js/frappe/form/form_tour.js:203 +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:211 msgid "Add a Row" msgstr "" -#: templates/includes/comments/comments.html:30 -#: templates/includes/comments/comments.html:47 +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 msgid "Add a comment" msgstr "Tambah komentar" -#: public/js/frappe/form/form.js:192 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:193 msgid "Add a row above the current row" msgstr "" -#: public/js/frappe/form/form.js:204 +#: frappe/public/js/frappe/form/form.js:205 msgid "Add a row at the bottom" msgstr "" -#: public/js/frappe/form/form.js:200 +#: frappe/public/js/frappe/form/form.js:201 msgid "Add a row at the top" msgstr "" -#: public/js/frappe/form/form.js:196 +#: frappe/public/js/frappe/form/form.js:197 msgid "Add a row below the current row" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:285 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 msgid "Add a {0} Chart" msgstr "Tambahkan Bagan {0}" -#: custom/doctype/client_script/client_script.js:16 +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:16 msgid "Add script for Child Table" msgstr "Tambahkan skrip untuk Tabel Anak" -#: public/js/frappe/utils/dashboard_utils.js:263 -#: public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Tambahkan ke Dashboard" -#: public/js/frappe/form/sidebar/assign_to.js:98 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 msgid "Add to ToDo" msgstr "Tambahkan ke ToDo" -#: website/doctype/website_slideshow/website_slideshow.js:32 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 msgid "Add to table" msgstr "Tambahkan ke tabel" -#: public/js/frappe/form/footer/form_timeline.js:97 +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 msgid "Add to this activity by mailing to {0}" msgstr "" +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:286 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "" + #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "Ditambahkan HTML di bagian dari halaman web, terutama digunakan untuk verifikasi situs dan SEO" +msgstr "" -#: core/doctype/log_settings/log_settings.py:82 +#: frappe/core/doctype/log_settings/log_settings.py:81 msgid "Added default log doctypes: {}" msgstr "" -#: core/doctype/file/file.py:720 -msgid "Added {0}" -msgstr "Ditambahkan {0}" - -#: public/js/frappe/form/link_selector.js:180 -#: public/js/frappe/form/link_selector.js:202 +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" msgstr "Ditambahkan {0} ({1})" -#: core/doctype/user/user.py:271 -msgid "Adding System Manager to this User as there must be atleast one System Manager" -msgstr "Menambahkan Pengelola Sistem untuk user ini dikarenakan minimal harus ada satu Pengelola Sistem" - -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Additional Permissions" -msgstr "Izin Tambahan" - -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Additional Permissions" -msgstr "Izin Tambahan" +msgstr "" #. Name of a DocType -#: contacts/doctype/address/address.json +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Address" msgstr "Alamat" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Address" -msgstr "Alamat" - -#. Label of a Section Break field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address" -msgstr "Alamat" - -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Address" -msgstr "Alamat" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Alamat Baris 1" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address Line 1" -msgstr "Alamat Baris 1" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Address Line 2" -msgstr "Alamat Baris 2" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 2" msgstr "Alamat Baris 2" #. Name of a DocType -#: contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/address_template/address_template.json msgid "Address Template" msgstr "Template Alamat" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Title" -msgstr "Judul Alamat" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Address Title" -msgstr "Judul Alamat" - -#: contacts/doctype/address/address.py:71 +#: frappe/contacts/doctype/address/address.py:72 msgid "Address Title is mandatory." msgstr "Wajib masukan Judul Alamat." -#. Label of a Select field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Address Type" -msgstr "Tipe Alamat" +msgstr "" #. Description of the 'Address' (Small Text) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Address and other legal information you may want to put in the footer." -msgstr "Alamat dan informasi legal lainnya yang mungkin Anda ingin masukkan ke footer." +msgstr "" -#: contacts/doctype/address/address.py:208 +#: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" msgstr "Daftar Alamat" #. Name of a report -#: contacts/report/addresses_and_contacts/addresses_and_contacts.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json msgid "Addresses And Contacts" msgstr "Alamat-Alamat Dan Kontak-Kontak" -#: public/js/frappe/ui/toolbar/search_utils.js:536 +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" msgstr "Administrasi" #. Name of a role -#: contacts/doctype/salutation/salutation.json -#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json -#: core/doctype/module_def/module_def.json core/doctype/page/page.json -#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json -#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json -#: core/doctype/transaction_log/transaction_log.json -#: core/doctype/user_type/user_type.json core/doctype/version/version.json -#: custom/doctype/client_script/client_script.json -#: custom/doctype/custom_field/custom_field.json -#: custom/doctype/property_setter/property_setter.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -#: desk/doctype/onboarding_step/onboarding_step.json -#: website/doctype/website_theme/website_theme.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Administrator" -msgstr "Administrator" +msgstr "" -#: core/doctype/user/user.py:1180 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" -msgstr "Administrator Logged In" +msgstr "" -#: core/doctype/user/user.py:1174 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}." -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Advanced" -msgstr "Lanjutan" +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Advanced" -msgstr "Lanjutan" +msgstr "" -#. Label of a Section Break field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the advanced_control_section (Section Break) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Advanced Control" -msgstr "Kontrol Tingkat Lanjut" +msgstr "" -#: public/js/frappe/form/controls/link.js:315 -#: public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/controls/link.js:335 +#: frappe/public/js/frappe/form/controls/link.js:337 msgid "Advanced Search" msgstr "Pencarian Lanjutan" -#. Label of a Section Break field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Advanced Settings" -msgstr "Pengaturan lanjutan" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Cancel" -msgstr "Setelah Batal" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Delete" -msgstr "Setelah Hapus" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "After Insert" msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "After Save" -msgstr "Setelah Simpan" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "After Save (Submitted Document)" -msgstr "Setelah Menyimpan (Dokumen yang Dikirim)" +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save (Submitted Document)" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "After Submission" msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "After Submit" -msgstr "Setelah Kirim" +msgstr "" -#: desk/doctype/number_card/number_card.py:58 +#: frappe/desk/doctype/number_card/number_card.py:62 msgid "Aggregate Field is required to create a number card" msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Aggregate Function Based On" -msgstr "Fungsi Agregat Berdasarkan" +msgstr "" -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Aggregate Function Based On" -msgstr "Fungsi Agregat Berdasarkan" - -#: desk/doctype/dashboard_chart/dashboard_chart.py:410 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 msgid "Aggregate Function field is required to create a dashboard chart" msgstr "Bidang Fungsi Agregat diperlukan untuk membuat bagan dasbor" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Alert" -msgstr "Waspada" +msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Alerts and Notifications" msgstr "" -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Align" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the align_labels_right (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Align Labels to the Right" -msgstr "Meratakan Labels ke kanan" +msgstr "" -#. Label of a Check field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#. Label of the right (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Align Right" -msgstr "Rata kanan" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:479 +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" msgstr "menyelaraskan Nilai" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: contacts/doctype/gender/gender.json -#: contacts/doctype/salutation/salutation.json -#: core/doctype/communication/communication.json core/doctype/file/file.json -#: core/doctype/language/language.json core/doctype/module_def/module_def.json -#: core/doctype/user/user.json desk/doctype/event/event.json -#: desk/doctype/notification_log/notification_log.json -#: desk/doctype/notification_settings/notification_settings.json -#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json -#: desk/doctype/todo/todo.json geo/doctype/country/country.json -#: integrations/doctype/connected_app/connected_app.json -#: integrations/doctype/token_cache/token_cache.json -#: printing/doctype/print_heading/print_heading.json -#: website/doctype/personal_data_download_request/personal_data_download_request.json -#: website/doctype/website_settings/website_settings.json -msgid "All" -msgstr "Semua" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "All" -msgstr "Semua" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "All" msgstr "Semua" -#: public/js/frappe/ui/notifications/notifications.js:394 +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 msgid "All Day" msgstr "Semua Hari" -#. Label of a Check field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" -msgid "All Day" -msgstr "Semua Hari" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "All Day" -msgstr "Semua Hari" - -#: website/doctype/website_slideshow/website_slideshow.py:42 +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" msgstr "Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum" -#: public/js/frappe/data_import/data_exporter.js:29 +#: frappe/public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" msgstr "Semua Rekaman" -#: custom/doctype/customize_form/customize_form.js:384 +#: frappe/public/js/frappe/form/form.js:2222 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." msgstr "Semua kustomisasi akan terhapus. Silakan konfirmasi." -#: templates/includes/comments/comments.html:158 +#: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." msgstr "" #. Description of the 'Document States' (Table) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" msgstr "" -#: utils/password_strength.py:187 +#: frappe/utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." msgstr "Semua-huruf besar hampir sama mudahnya untuk menebak semua-huruf kecil." -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Allocated To" -msgstr "Dialokasikan Ke" - -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Allot Points To Assigned Users" -msgstr "Allot Points Untuk Pengguna yang Ditugaskan" - -#: templates/includes/oauth_confirmation.html:15 -msgid "Allow" -msgstr "Mengizinkan" +msgstr "" +#. Label of the allow (Link) field in DocType 'User Permission' #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 msgid "Allow" msgstr "Mengizinkan" -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Allow" -msgstr "Mengizinkan" - -#: website/doctype/website_settings/website_settings.py:160 +#: frappe/website/doctype/website_settings/website_settings.py:160 msgid "Allow API Indexing Access" msgstr "Izinkan Akses Pengindeksan API" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Auto Repeat" -msgstr "Izinkan Ulangi Otomatis" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow Auto Repeat" -msgstr "Izinkan Ulangi Otomatis" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow Bulk Edit" -msgstr "Izinkan Edit Massal" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow Bulk Edit" -msgstr "Izinkan Edit Massal" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Comments" -msgstr "Izinkan Komentar" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Consecutive Login Attempts " -msgstr "Izinkan Upaya Masuk Berturut-turut" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Delete" -msgstr "Izinkan Hapus" - -#. Label of a Button field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Allow Dropbox Access" -msgstr "Izinkan Akses Dropbox" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Editing After Submit" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:100 -#: integrations/doctype/google_calendar/google_calendar.py:114 +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts " +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" msgstr "Izinkan Google Kalender Akses" -#: integrations/doctype/google_contacts/google_contacts.py:39 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 msgid "Allow Google Contacts Access" msgstr "Izinkan Google Kontak Mengakses" -#: integrations/doctype/google_drive/google_drive.py:51 -msgid "Allow Google Drive Access" -msgstr "Izinkan Akses Google Drive" - -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" -msgstr "Izinkan Tamu" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow Guest to View" -msgstr "Izinkan tamu untuk Lihat" +msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Allow Guest to comment" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Guests to Upload Files" -msgstr "Izinkan Tamu Mengunggah File" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Allow Import (via Data Import Tool)" -msgstr "Izinkan Impor (melalui Alat Import Data)" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow Import (via Data Import Tool)" -msgstr "Izinkan Impor (melalui Alat Import Data)" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Incomplete Forms" -msgstr "Izikan Formulir tidak lengkap" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login After Fail" -msgstr "Perbolehkan Masuk Setelah Gagal" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login using Mobile Number" -msgstr "Izinkan Login menggunakan Nomor Handphone" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Allow Login using User Name" -msgstr "Izinkan Login menggunakan User Name" - -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Allow Modules" -msgstr "Izinkan Modul" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Multiple Responses" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_import (Check) field in DocType 'DocType' +#. Label of the allow_import (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Import (via Data Import Tool)" +msgstr "" + +#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login After Fail" +msgstr "" + +#. Label of the allow_login_using_mobile_number (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using Mobile Number" +msgstr "" + +#. Label of the allow_login_using_user_name (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using User Name" +msgstr "" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Older Web View Links (Insecure)" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Allow Print" -msgstr "Izinkan Cetak" - -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Cancelled" -msgstr "Memungkinkan Print untuk Dibatalkan" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:395 +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Memungkinkan Print untuk Draft" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Allow Print for Draft" -msgstr "Memungkinkan Print untuk Draft" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Allow Read On All Link Options" -msgstr "Izinkan Baca Di Semua Opsi Tautan" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow Rename" -msgstr "Izinkan Rename" +msgstr "" -#. Label of a Table MultiSelect field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Allow Roles" -msgstr "Izinkan Roles" +msgstr "" -#. Label of a Section Break field in DocType 'Role Permission for Page and -#. Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Allow Roles" -msgstr "Izinkan Roles" - -#. Label of a Check field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the allow_self_approval (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "Izinkan Persetujuan Sendiri" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_telemetry (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Sending Usage Data for Improving Applications" msgstr "" #. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow #. Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "Izinkan persetujuan untuk pembuat dokumen" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow document creation via Email" -msgstr "Izinkan pembuatan dokumen melalui Email" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Allow document creation via Email" -msgstr "Izinkan pembuatan dokumen melalui Email" +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Allow events in timeline" -msgstr "Izinkan acara dalam garis waktu" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow in Quick Entry" -msgstr "Izinkan dalam Entri Cepat" +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow on Submit" -msgstr "Izinkan Submit" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Allow on Submit" -msgstr "Izinkan Submit" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Allow on Submit" -msgstr "Izinkan Submit" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow only one session per user" -msgstr "Hanya mengizinkan satu sesi per pengguna" +msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow page break inside tables" -msgstr "Memungkinkan halaman istirahat dalam tabel" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:420 +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 msgid "Allow recording my first session to improve user experience" msgstr "" -#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web #. Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "Izinkan untuk menyimpan jika bidang wajib tidak diisi" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:413 +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" msgstr "" #. Description of the 'Login After' (Int) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Allow user to login only after this hour (0-24)" -msgstr "Memungkinkan pengguna untuk login hanya setelah jam ini (0-24)" +msgstr "" #. Description of the 'Login Before' (Int) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Allow user to login only before this hour (0-24)" -msgstr "Memungkinkan pengguna untuk login hanya sebelum jam ini (0-24)" +msgstr "" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allow users to log in without a password, using a login link sent to their email" msgstr "" -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allowed" -msgstr "Diizinkan" +msgstr "" -#. Label of a Small Text field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Allowed File Extensions" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "Diizinkan Dengan Sebutan" +msgstr "" -#. Label of a Section Break field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Allowed Modules" msgstr "" -#: public/js/frappe/form/form.js:1229 +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1256 msgid "Allowing DocType, DocType. Be careful!" msgstr "Membiarkan DocType, DocType. Hati-hati!" -#: core/doctype/user/user.py:977 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Sudah Terdaftar" -#: desk/form/assign_to.py:132 +#: frappe/desk/form/assign_to.py:137 msgid "Already in the following Users ToDo list:{0}" msgstr "Sudah ada di daftar ToDo Pengguna berikut: {0}" -#: public/js/frappe/views/reports/report_view.js:840 +#: frappe/public/js/frappe/views/reports/report_view.js:902 msgid "Also adding the dependent currency field {0}" msgstr "Juga menambahkan field mata uang dependen {0}" -#: public/js/frappe/views/reports/report_view.js:853 +#: frappe/public/js/frappe/views/reports/report_view.js:915 msgid "Also adding the status dependency field {0}" msgstr "Juga menambahkan bidang dependensi status {0}" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "Selalu menambahkan "Draft" Menuju rancangan pencetakan dokumen" +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Amend" -msgstr "Merubah" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Amend" -msgstr "Merubah" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Amend" -msgstr "Merubah" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Amend Counter" -msgstr "" - #. Option for the 'Default Amendment Naming' (Select) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" msgstr "" #. Name of a DocType -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" msgstr "" -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" msgstr "" -#. Label of a Link field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" +#. Label of the amended_from (Link) field in DocType 'Transaction Log' +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" -msgstr "Diubah Dari" +msgstr "" -#. Label of a Link field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Amended From" -msgstr "Diubah Dari" - -#: public/js/frappe/form/save.js:12 +#: frappe/public/js/frappe/form/save.js:12 msgctxt "Freeze message while amending a document" msgid "Amending" msgstr "Amandemen" -#. Label of a Table field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:208 +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:287 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Terjadi kesalahan saat mengatur Sesi Default" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr "File icon dengan ekstensi .ico. Harus 16 x 16 px. Dihasilkan menggunakan generator favicon. [favicon-generator.org]" +msgstr "" -#: templates/includes/oauth_confirmation.html:35 +#: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "Analytics" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:35 +#: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" msgstr "Leluhur Dari" +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Annual" msgstr "Tahunan" -#. Label of a Code field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Anonymization Matrix" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Anonymous" -msgstr "Anonim" +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" -#: public/js/frappe/request.js:186 +#: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." msgstr "Transaksi lain yang menghalangi satu ini. Silakan coba lagi dalam beberapa detik." -#: model/rename_doc.py:380 +#: frappe/model/rename_doc.py:379 msgid "Another {0} with name {1} exists, select another name" msgstr "Lain {0} dengan nama {1} ada, pilih nama lain" #. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." -msgstr "Bahasa printer berbasis string apa pun dapat digunakan. Menulis perintah mentah membutuhkan pengetahuan tentang bahasa asli printer yang disediakan oleh produsen printer. Silakan merujuk ke manual pengembang yang disediakan oleh pabrik printer tentang cara menulis perintah asli mereka. Perintah-perintah ini diberikan di sisi server menggunakan Bahasa Templating Jinja." - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "App" -msgstr "Aplikasi" - -#. Label of a Data field in DocType 'Website Theme Ignore App' -#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json -msgctxt "Website Theme Ignore App" -msgid "App" -msgstr "Aplikasi" - -#. Label of a Data field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "App Access Key" -msgstr "Aplikasi Access Key" - -#: integrations/doctype/dropbox_settings/dropbox_settings.js:22 -msgid "App Access Key and/or Secret Key are not present." msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Client ID" -msgstr "Aplikasi Client ID" +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Client Secret" -msgstr "Aplikasi Client Rahasia" +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "" -#. Label of a Data field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json msgid "App Logo" msgstr "" -#: core/doctype/installed_applications/installed_applications.js:27 +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Nama App" -#. Label of a Select field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "App Name" -msgstr "Nama App" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "App Name" -msgstr "Nama App" - -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "App Name" -msgstr "Nama App" - -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "App Secret Key" -msgstr "App Kunci Rahasia" - -#: modules/utils.py:268 +#: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: __init__.py:1677 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} tidak diinstal" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Append Emails to Sent Folder" -msgstr "Tambahkan Email ke Folder Terkirim" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Append Emails to Sent Folder" -msgstr "Tambahkan Email ke Folder Terkirim" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "Append To" -msgstr "Untuk menambahkan" +msgstr "" -#. Label of a Link field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "Append To" -msgstr "Untuk menambahkan" - -#: email/doctype/email_account/email_account.py:178 +#: frappe/email/doctype/email_account/email_account.py:202 msgid "Append To can be one of {0}" msgstr "Tambahkan Untuk dapat menjadi salah satu {0}" #. Description of the 'Append To' (Link) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." msgstr "" -#: core/doctype/user_permission/user_permission_list.js:105 +#: frappe/core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" msgstr "Jenis Dokumen yang Berlaku" -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Applicable For" -msgstr "Berlaku Untuk" +msgstr "" -#. Label of a Attach Image field in DocType 'Navbar Settings' -#. Label of a Section Break field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Application Logo" -msgstr "Logo Aplikasi" +msgstr "" -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Application Name" -msgstr "nama aplikasi" +msgstr "" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Application Name" -msgstr "nama aplikasi" - -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json msgid "Application Version" -msgstr "Versi Aplikasi" +msgstr "" -#. Label of a Select field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" -msgstr "Diterapkan Pada" +msgstr "" -#: public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Terapkan Aturan Penugasan" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Apply Document Permissions" -msgstr "Terapkan Izin Dokumen" - -#: public/js/frappe/ui/filters/filter_list.js:315 +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" msgstr "" -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Apply Only Once" -msgstr "Terapkan Hanya Sekali" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the apply_strict_user_permissions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Apply Strict User Permissions" -msgstr "Terapkan Izin Pengguna yang Ketat" +msgstr "" -#. Label of a Select field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json msgid "Apply To" msgstr "" -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "Berlaku untuk Semua Jenis Dokumen" +msgstr "" -#. Label of a Link field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" msgstr "" +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "" + #. Description of the 'If user is the owner' (Check) field in DocType 'Custom #. DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Apply this rule if the User is the Owner" -msgstr "Menerapkan aturan ini jika pengguna adalah pemilik" - #. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "Apply this rule if the User is the Owner" -msgstr "Menerapkan aturan ini jika pengguna adalah pemilik" +msgstr "" -#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Apply this rule only once per document" -msgstr "Terapkan aturan ini hanya sekali per dokumen" - -#: core/doctype/user_permission/user_permission_list.js:75 +#: frappe/core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" msgstr "Berlaku untuk semua Jenis Dokumen" -#: model/workflow.py:265 +#: frappe/model/workflow.py:266 msgid "Applying: {0}" msgstr "Menerapkan: {0}" -#: public/js/frappe/form/sidebar/review.js:62 -msgid "Appreciate" -msgstr "Menghargai" - -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Appreciation" -msgstr "Apresiasi" - -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" msgstr "Diperlukan Persetujuan" -#: public/js/frappe/utils/number_systems.js:41 +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Archived" -msgstr "Diarsipkan" +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" -#: public/js/frappe/views/kanban/kanban_board.bundle.js:490 +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 msgid "Archived Columns" msgstr "Kolom diarsipkan" -#: public/js/frappe/form/grid.js:269 +#: frappe/public/js/frappe/list/list_view.js:1966 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:294 msgid "Are you sure you want to delete all rows?" msgstr "Anda yakin ingin menghapus semua baris?" -#: public/js/frappe/views/workspace/workspace.js:885 -msgid "Are you sure you want to delete page {0}?" -msgstr "" - -#: public/js/frappe/form/sidebar/attachments.js:135 +#: frappe/public/js/frappe/form/controls/attach.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:135 msgid "Are you sure you want to delete the attachment?" msgstr "Apakah Anda yakin ingin menghapus lampiran?" -#: public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:185 msgid "Are you sure you want to discard the changes?" msgstr "" -#: public/js/frappe/form/toolbar.js:110 +#: frappe/public/js/frappe/views/reports/query_report.js:968 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 msgid "Are you sure you want to merge {0} with {1}?" msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?" -#: public/js/frappe/views/kanban/kanban_view.js:105 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 msgid "Are you sure you want to proceed?" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:25 +#: frappe/core/doctype/rq_job/rq_job_list.js:25 msgid "Are you sure you want to re-enable scheduler?" msgstr "" -#: core/doctype/communication/communication.js:163 +#: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" msgstr "Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}?" -#: core/doctype/rq_job/rq_job_list.js:10 +#: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" msgstr "" -#: public/js/frappe/list/list_filter.js:109 +#: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:267 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" msgstr "Apakah Anda yakin ingin mengatur ulang semua penyesuaian?" -#: email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:16 -#: core/doctype/user_permission/user_permission_list.js:165 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" msgstr "Apakah kamu yakin" -#. Label of a Code field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Arguments" msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "Arial" +msgstr "" -#: desk/form/assign_to.py:102 +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "" + +#: frappe/desk/form/assign_to.py:107 msgid "As document sharing is disabled, please give them the required permissions before assigning." msgstr "" -#: templates/emails/account_deletion_notification.html:3 +#: frappe/templates/emails/account_deletion_notification.html:3 msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" -msgstr "Kondisi Penugasan" +msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:163 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Tugaskan Kepada" -#: public/js/frappe/list/list_view.js:1804 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tugaskan Kepada" -#. Label of a Section Break field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Assign To Users" -msgstr "Tetapkan Untuk Pengguna" +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:232 +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 msgid "Assign a user" msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.js:52 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" msgstr "Tetapkan satu per satu, secara berurutan" -#: public/js/frappe/form/sidebar/assign_to.js:154 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" msgstr "Tetapkan ke saya" -#: automation/doctype/assignment_rule/assignment_rule.js:53 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" msgstr "Tugaskan orang yang memiliki tugas paling sedikit" -#: automation/doctype/assignment_rule/assignment_rule.js:54 +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" msgstr "Tetapkan ke kumpulan pengguna di bidang ini" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Assigned" -msgstr "Ditugaskan" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Assigned" -msgstr "Ditugaskan" - -#: desk/report/todo/todo.py:41 +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 msgid "Assigned By" msgstr "Ditugaskan Oleh" -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Assigned By" -msgstr "Ditugaskan Oleh" - -#. Label of a Read Only field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Assigned By Full Name" -msgstr "Ditugaskan Dengan Nama Lengkap" +msgstr "" -#: desk/doctype/todo/todo_list.js:35 -msgid "Assigned By Me" -msgstr "Ditugaskan Olehku" - -#: model/__init__.py:151 model/meta.py:55 -#: public/js/frappe/list/list_sidebar_group_by.js:71 -#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126 -#: public/js/frappe/views/interaction.js:82 +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 msgid "Assigned To" msgstr "Ditugaskan Kepada" -#: desk/report/todo/todo.py:40 +#: frappe/desk/report/todo/todo.py:40 msgid "Assigned To/Owner" msgstr "Ditugaskan Untuk / Owner" -#: public/js/frappe/form/sidebar/assign_to.js:241 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "Tugas" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "Tugas Selesai" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Assignment Completed" -msgstr "Tugas Selesai" - -#. Label of a Section Break field in DocType 'Assignment Rule' -#. Label of a Table field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the sb (Section Break) field in DocType 'Assignment Rule' +#. Label of the assignment_days (Table) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Days" -msgstr "Hari Penugasan" - -#: automation/doctype/assignment_rule/assignment_rule.py:64 -msgid "Assignment Day{0} {1} has been repeated." msgstr "" #. Name of a DocType -#: automation/doctype/assignment_rule/assignment_rule.json -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Assignment Rule" -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Assignment Rule" -msgstr "Aturan Penugasan" - -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json msgid "Assignment Rule" msgstr "Aturan Penugasan" #. Name of a DocType -#: automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json msgid "Assignment Rule Day" msgstr "Hari Aturan Penugasan" #. Name of a DocType -#: automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" msgstr "Pengguna Aturan Penugasan" -#: automation/doctype/assignment_rule/assignment_rule.py:53 -msgid "Assignment Rule is not allowed on {0} document type" +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" msgstr "" -#. Label of a Section Break field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Rules" -msgstr "Aturan Penugasan" +msgstr "" -#: desk/doctype/notification_log/notification_log.py:157 +#: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" msgstr "Pembaruan Tugas pada {0}" -#: desk/form/assign_to.py:75 +#: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" msgstr "Tugas untuk {0} {1}" -#: desk/doctype/todo/todo.py:62 +#: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:227 +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 msgid "Assignments" msgstr "Tugas" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Assignments" -msgstr "Tugas" - -#: public/js/frappe/form/grid_row.js:629 +#: frappe/public/js/frappe/form/grid_row.js:680 msgid "At least one column is required to show in the grid." msgstr "" -#: website/doctype/web_form/web_form.js:64 -msgid "Atleast one field is required in Web Form Fields Table" +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" msgstr "" -#: core/doctype/data_export/data_export.js:44 -msgid "Atleast one field of Parent Document Type is mandatory" -msgstr "Setidaknya satu bidang Jenis Dokumen Induk adalah wajib" - -#: public/js/frappe/form/controls/attach.js:5 -msgid "Attach" -msgstr "Melampirkan" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Attach" -msgstr "Melampirkan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Attach" -msgstr "Melampirkan" +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Attach" -msgstr "Melampirkan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" msgstr "Melampirkan" -#: public/js/frappe/views/communication.js:139 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Lampirkan Dokumen Cetak" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Attach Image" -msgstr "Pasang Gambar" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Attach Image" -msgstr "Pasang Gambar" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Attach Image" -msgstr "Pasang Gambar" +msgstr "" -#. Label of a Attach field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Attach Package" msgstr "" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "Lampirkan Cetak" +msgstr "" -#: website/doctype/website_slideshow/website_slideshow.js:8 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." msgstr "Lampirkan file / url dan tambahkan dalam tabel." -#. Label of a Code field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Attached File" -msgstr "File terlampir" +msgstr "" -#. Label of a Link field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To DocType" -msgstr "Terlampir Untuk DocType" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "Terlampir ke lapangan" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "Terlampir Untuk Nama" +msgstr "" -#: core/doctype/file/file.py:140 +#: frappe/core/doctype/file/file.py:142 msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Attachment" -msgstr "Lampiran" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Attachment" -msgstr "Lampiran" - -#. Label of a Attach field in DocType 'Newsletter Attachment' -#: email/doctype/newsletter_attachment/newsletter_attachment.json -msgctxt "Newsletter Attachment" -msgid "Attachment" -msgstr "Lampiran" - -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the attachment_limit (Int) field in DocType 'Email Account' +#. Label of the attachment_limit (Int) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Attachment Limit (MB)" -msgstr "Batas Lampiran (MB)" +msgstr "" -#. Label of a Int field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Attachment Limit (MB)" -msgstr "Batas Lampiran (MB)" - -#: core/doctype/file/file.py:321 -#: public/js/frappe/form/sidebar/attachments.js:36 +#: frappe/core/doctype/file/file.py:324 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" -#. Label of a HTML field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Attachment Link" -msgstr "Tautan Lampiran" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "Lampiran Dihapus" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Attachment Removed" -msgstr "Lampiran Dihapus" - -#: core/doctype/file/utils.py:40 -#: email/doctype/newsletter/templates/newsletter.html:47 -#: website/doctype/web_form/templates/web_form.html:103 +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Lampiran" -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Attachments" -msgstr "Lampiran" - -#. Label of a Table field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Attachments" -msgstr "Lampiran" - -#: public/js/frappe/form/print_utils.js:89 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Mencoba Koneksi ke Baki QZ ..." -#: public/js/frappe/form/print_utils.js:105 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Mencoba meluncurkan QZ Tray ..." -#. Label of a Table field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Audience" +#: frappe/www/attribution.html:9 +msgid "Attribution" msgstr "" #. Name of a report -#: custom/report/audit_system_hooks/audit_system_hooks.json +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" msgstr "" #. Name of a DocType -#: core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/audit_trail/audit_trail.json msgid "Audit Trail" msgstr "" -#. Label of a Code field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the auth_url_data (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Auth URL Data" -msgstr "Data URL Auth" +msgstr "" +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' #. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Authentication" msgstr "pembuktian keaslian" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Authentication" -msgstr "pembuktian keaslian" - -#: www/qrcode.html:19 +#: frappe/www/qrcode.html:19 msgid "Authentication Apps you can use are: " msgstr "Aplikasi Otentikasi yang dapat Anda gunakan adalah:" -#: email/doctype/email_account/email_account.py:294 +#: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." msgstr "Autentikasi gagal saat menerima email dari Akun Email: {0}." -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Author" -msgstr "Penulis" +msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Authorization Code" -msgstr "Kode otorisasi" - -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Authorization Code" -msgstr "Kode otorisasi" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Authorization Code" -msgstr "Kode otorisasi" +msgstr "" -#. Label of a Small Text field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Authorization URI" msgstr "" -#: templates/includes/oauth_confirmation.html:32 +#: frappe/templates/includes/oauth_confirmation.html:35 msgid "Authorization error for {}." msgstr "" -#. Label of a Button field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Authorize API Access" msgstr "" -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Authorize API Indexing Access" -msgstr "Izinkan Akses Pengindeksan API" +msgstr "" -#. Label of a Button field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Authorize Google Calendar Access" -msgstr "Otorisasi Akses Kalender Google" +msgstr "" -#. Label of a Button field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Authorize Google Contacts Access" -msgstr "Otorisasi Akses Kontak Google" +msgstr "" -#. Label of a Button field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Authorize Google Drive Access" -msgstr "Otorisasi Akses Google Drive" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the authorize_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Authorize URL" -msgstr "Otorisasi URL" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Authorized" -msgstr "resmi" +msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Auto" -msgstr "Mobil" +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Auto" -msgstr "Mobil" +msgstr "" +#. Label of a Link in the Tools Workspace #. Name of a DocType -#: email/doctype/auto_email_report/auto_email_report.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Auto Email Report" msgstr "Laporan Surel Otomatis" -#. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Auto Email Report" -msgid "Auto Email Report" -msgstr "Laporan Surel Otomatis" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Auto Name" -msgstr "Nama Otomatis" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Auto Name" -msgstr "Nama Otomatis" +msgstr "" #. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.json -#: public/js/frappe/utils/common.js:442 -msgid "Auto Repeat" -msgstr "Ulangi Otomatis" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Auto Repeat" -msgid "Auto Repeat" -msgstr "Ulangi Otomatis" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 msgid "Auto Repeat" msgstr "Ulangi Otomatis" #. Name of a DocType -#: automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json msgid "Auto Repeat Day" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:158 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:436 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 msgid "Auto Repeat Document Creation Failed" msgstr "Ulangi Pembuatan Dokumen Otomatis Gagal" -#: automation/doctype/auto_repeat/auto_repeat.js:115 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 msgid "Auto Repeat Schedule" msgstr "" -#: public/js/frappe/utils/common.js:434 +#: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Ulangi Otomatis dibuat untuk dokumen ini" -#: automation/doctype/auto_repeat/auto_repeat.py:439 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 msgid "Auto Repeat failed for {0}" msgstr "Ulangi Otomatis gagal untuk {0}" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply" msgstr "" -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply Message" -msgstr "Auto Reply Pesan" +msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:179 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 msgid "Auto assignment failed: {0}" msgstr "Tugas otomatis gagal: {0}" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that are assigned to you" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that are shared with you" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you Like" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you comment on" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Auto follow documents that you create" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Autocomplete" -msgstr "" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Autocomplete" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Autocomplete" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Autoincrement" msgstr "" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "" + #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Automated Message" msgstr "" -#: public/js/frappe/ui/theme_switcher.js:69 -msgid "Automatic" -msgstr "" - #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 msgid "Automatic" msgstr "" -#: email/doctype/email_account/email_account.py:675 +#: frappe/email/doctype/email_account/email_account.py:772 msgid "Automatic Linking can be activated only for one Email Account." msgstr "Tautan Otomatis hanya dapat diaktifkan untuk satu Akun Email." -#: email/doctype/email_account/email_account.py:670 +#: frappe/email/doctype/email_account/email_account.py:766 msgid "Automatic Linking can be activated only if Incoming is enabled." msgstr "Tautan Otomatis hanya dapat diaktifkan jika Incoming diaktifkan." -#. Label of a Int field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:128 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "" + +#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Automatically delete account within (hours)" msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Automation" msgstr "Otomatisasi" -#. Label of a Attach Image field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#. Label of the avatar (Attach Image) field in DocType 'Blogger' +#: frappe/website/doctype/blogger/blogger.json msgid "Avatar" -msgstr "Avatar" - -#: public/js/frappe/form/controls/password.js:89 -#: public/js/frappe/ui/group_by/group_by.js:21 -msgid "Average" -msgstr "Rata-rata" +msgstr "" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Average" -msgstr "Rata-rata" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 msgid "Average" msgstr "Rata-rata" -#: public/js/frappe/ui/group_by/group_by.js:332 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Rata-rata dari {0}" -#: utils/password_strength.py:132 +#: frappe/utils/password_strength.py:130 msgid "Avoid dates and years that are associated with you." msgstr "Hindari tanggal dan tahun yang berkaitan dengan Anda." -#: utils/password_strength.py:126 +#: frappe/utils/password_strength.py:124 msgid "Avoid recent years." msgstr "Hindari beberapa tahun terakhir." -#: utils/password_strength.py:119 +#: frappe/utils/password_strength.py:117 msgid "Avoid sequences like abc or 6543 as they are easy to guess" msgstr "Hindari urutan seperti abc atau 6543 karena hal itu mudah ditebak" -#: utils/password_strength.py:126 +#: frappe/utils/password_strength.py:124 msgid "Avoid years that are associated with you." msgstr "Hindari tahun yang berkaitan dengan Anda." -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json msgid "Awaiting Password" -msgstr "Menunggu Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Awaiting password" -msgstr "Menunggu Sandi" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:200 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 msgid "Awesome Work" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:358 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 msgid "Awesome, now try making an entry yourself" msgstr "" -#: public/js/frappe/utils/number_systems.js:9 +#: frappe/public/js/frappe/utils/number_systems.js:9 msgctxt "Number system" msgid "B" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B0" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B1" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B10" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B2" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B3" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B4" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B5" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B6" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B7" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B8" msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "B9" msgstr "" -#: public/js/frappe/views/communication.js:76 +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "BCC" -msgstr "BCC" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" msgid "BCC" -msgstr "BCC" +msgstr "" -#. Label of a Code field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "BCC" -msgstr "BCC" +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" -#: templates/pages/integrations/gcalendar-success.html:13 +#: frappe/templates/pages/integrations/gcalendar-success.html:13 msgid "Back to Desk" msgstr "Kembali ke Meja" -#: www/404.html:20 +#: frappe/www/404.html:26 msgid "Back to Home" msgstr "Kembali ke rumah" -#: www/login.html:181 www/login.html:212 +#: frappe/www/login.html:201 frappe/www/login.html:232 msgid "Back to Login" msgstr "Kembali ke Login" -#. Label of a Color field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Background Color" -msgstr "Warna Latar" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Background Color" -msgstr "Warna Latar" - -#. Label of a Attach Image field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Background Image" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:143 -msgid "Background Jobs" -msgstr "Pekerjaan/Proses Latar" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "RQ Job" +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Pekerjaan/Proses Latar" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Workers" -msgstr "Pekerja latar" +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:31 -msgid "Backing up to Google Drive." -msgstr "Mencadangkan ke Google Drive." - -#. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgid "Backup" -msgstr "Cadangan" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Details" -msgstr "Detail Cadangan" - -#: desk/page/backups/backups.js:26 +#: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Files" -msgstr "File Cadangan" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Backup Folder ID" -msgstr "ID Folder Cadangan" - -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Backup Folder Name" -msgstr "Nama Folder Cadangan" - -#. Label of a Select field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Backup Frequency" -msgstr "Frekuensi Pencadangan" - -#. Label of a Select field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup Frequency" -msgstr "Frekuensi Pencadangan" - -#: desk/page/backups/backups.py:99 +#: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" msgstr "Pekerjaan cadangan sudah dalam antrian. Anda akan menerima surel dengan tautan unduh" -#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Backup public and private files along with the database." -msgstr "Cadangkan file publik dan pribadi bersama dengan database." - -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Backups" -msgstr "Cadangan" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding" msgstr "" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding (legacy)" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner" -msgstr "Spanduk" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner HTML" -msgstr "Spanduk HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json msgid "Banner Image" -msgstr "Spanduk Gambar" - -#. Label of a Attach Image field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Banner Image" -msgstr "Spanduk Gambar" +msgstr "" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Banner is above the Top Menu Bar." -msgstr "Spanduk di atas Menu Atas." +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Bar" -msgstr "Bar" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Barcode" -msgstr "Kode batang" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Barcode" -msgstr "Kode batang" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Barcode" msgstr "Kode batang" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Base Distinguished Name (DN)" -msgstr "Dasar Pembedaan Nama (DN)" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Base URL" -msgstr "URL dasar" +msgstr "" -#: printing/page/print/print.js:266 printing/page/print/print.js:320 -msgid "Based On" -msgstr "Berdasarkan" - -#. Label of a Link field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:273 +#: frappe/printing/page/print/print.js:327 msgid "Based On" msgstr "Berdasarkan" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Based on Field" -msgstr "Berdasarkan Bidang" +msgstr "" -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the user (Link) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Based on Permissions For User" -msgstr "Berdasarkan Izin Untuk Pengguna" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Basic" -msgstr "Dasar" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Basic Info" msgstr "" +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "" + #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Cancel" -msgstr "Sebelum Batalkan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Delete" -msgstr "Sebelum Hapus" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Before Insert" -msgstr "Sebelum Memasukkan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Before Save" -msgstr "Sebelum Menyimpan" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Save (Submitted Document)" -msgstr "Sebelum Menyimpan (Dokumen yang Dikirim)" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Submit" -msgstr "Sebelum Kirim" +msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Before Validate" msgstr "" #. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json msgid "Beginner" -msgstr "Pemula" +msgstr "" -#: public/js/frappe/form/link_selector.js:29 +#: frappe/public/js/frappe/form/link_selector.js:29 msgid "Beginning with" msgstr "Dimulai dengan" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Beta" -msgstr "beta" +msgstr "" -#: utils/password_strength.py:75 +#: frappe/utils/password_strength.py:73 msgid "Better add a few more letters or another word" msgstr "Lebih baik tambahkan beberapa huruf atau gunakan kata lain" -#: public/js/frappe/ui/filters/filter.js:27 +#: frappe/public/js/frappe/ui/filters/filter.js:27 msgid "Between" msgstr "Antara" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Billing" -msgstr "Penagihan" +msgstr "" -#. Label of a Small Text field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#. Label of the bio (Small Text) field in DocType 'Blogger' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/blogger/blogger.json msgid "Bio" -msgstr "Bio" +msgstr "" -#. Label of a Small Text field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Bio" -msgstr "Bio" - -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Bio" -msgstr "Bio" - -#. Label of a Date field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Birth Date" -msgstr "Tanggal lahir" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:41 +#: frappe/public/js/frappe/data_import/data_exporter.js:41 msgid "Blank Template" msgstr "Templat Kosong" #. Name of a DocType -#: core/doctype/block_module/block_module.json +#: frappe/core/doctype/block_module/block_module.json msgid "Block Module" msgstr "Blok Modul" -#. Label of a Table field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json msgid "Block Modules" -msgstr "Blok Modul" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Block Modules" -msgstr "Blok Modul" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Blocked" -msgstr "Diblokir" +msgstr "" #. Label of a Card Break in the Website Workspace -#: website/doctype/blog_post/blog_post.py:239 -#: website/doctype/blog_post/templates/blog_post.html:13 -#: website/doctype/blog_post/templates/blog_post_list.html:2 -#: website/doctype/blog_post/templates/blog_post_list.html:11 -#: website/workspace/website/website.json +#: frappe/website/doctype/blog_post/blog_post.py:245 +#: frappe/website/doctype/blog_post/templates/blog_post.html:13 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 +#: frappe/website/workspace/website/website.json msgid "Blog" -msgstr "Blog" +msgstr "" #. Name of a DocType -#: website/doctype/blog_category/blog_category.json -msgid "Blog Category" -msgstr "Kategori Blog" - +#. Label of the blog_category (Link) field in DocType 'Blog Post' #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blog Category" +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/workspace/website/website.json msgid "Blog Category" msgstr "Kategori Blog" -#. Label of a Link field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Blog Category" -msgstr "Kategori Blog" - -#. Label of a Small Text field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Blog Intro" -msgstr "Pendahuluan Blog" +msgstr "" -#. Label of a Small Text field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Introduction" -msgstr "Pendahuluan Blog" +msgstr "" #. Name of a DocType -#: website/doctype/blog_post/blog_post.json -msgid "Blog Post" -msgstr "Posting Blog" - -#. Linked DocType in Blog Category's connections -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Blog Post" -msgstr "Posting Blog" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blog Post" -msgid "Blog Post" -msgstr "Posting Blog" - -#. Linked DocType in Blogger's connections -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/workspace/website/website.json msgid "Blog Post" msgstr "Posting Blog" #. Name of a DocType -#: website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Settings" msgstr "Pengaturan Blog" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the blog_title (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Title" -msgstr "Judul Blog" +msgstr "" #. Name of a role +#. Label of the blogger (Link) field in DocType 'Blog Post' #. Name of a DocType -#: website/doctype/blog_category/blog_category.json -#: website/doctype/blog_post/blog_post.json -#: website/doctype/blog_settings/blog_settings.json -#: website/doctype/blogger/blogger.json -msgid "Blogger" -msgstr "Blogger" - -#. Label of a Link field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Blogger" -msgstr "Blogger" - #. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Blogger" +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/workspace/website/website.json msgid "Blogger" -msgstr "Blogger" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Blogger" -msgstr "Blogger" - -#. Subtitle of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Blogs, Website View Tracking, and more." msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Blue" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Blue" +msgstr "Biru" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Bold" -msgstr "Mencolok" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Bold" -msgstr "Mencolok" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Bold" -msgstr "Mencolok" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "Bot" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:126 +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" msgstr "Kedua DOCTYPE dan Nama diperlukan" +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 msgid "Bottom" -msgstr "Bawah" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 msgid "Bottom Center" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Bottom Center" -msgstr "" - -#. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 msgid "Bottom Left" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Bottom Right" -msgstr "" - #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 msgid "Bottom Right" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Bounced" -msgstr "Memantul" +msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand" msgstr "Merek" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand HTML" -msgstr "Merek HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Brand Image" -msgstr "Image Merek" +msgstr "" -#. Label of a Attach Image field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Brand Logo" msgstr "" #. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "" -"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" "has a transparent background and use the <img /> tag. Keep size as 200px x 30px" msgstr "" -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json msgid "Breadcrumbs" -msgstr "Tepung Roti" +msgstr "" -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Breadcrumbs" -msgstr "Tepung Roti" - -#: website/doctype/blog_post/templates/blog_post_list.html:18 -#: website/doctype/blog_post/templates/blog_post_list.html:21 +#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Browse by category" msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Browse by category" +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" msgstr "" -#: website/report/website_analytics/website_analytics.js:36 -msgid "Browser" -msgstr "Browser" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Browser" -msgstr "Browser" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the browser_version (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Browser Version" -msgstr "Versi Peramban" +msgstr "" -#: public/js/frappe/desk.js:19 +#: frappe/public/js/frappe/desk.js:19 msgid "Browser not supported" msgstr "Browser tidak didukung" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Brute Force Security" -msgstr "Brute Force Security" +msgstr "" -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Bucket Name" -msgstr "Nama Keranjang" - -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66 -msgid "Bucket {0} not found." +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" msgstr "" #. Name of a Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "Build" msgstr "" -#: workflow/doctype/workflow/workflow_list.js:18 +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 msgid "Build {0}" msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Bulk Actions" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:142 +#: frappe/core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" msgstr "Hapus Massal" -#: public/js/frappe/list/bulk_operations.js:256 +#: frappe/public/js/frappe/list/bulk_operations.js:321 msgid "Bulk Edit" msgstr "" -#: public/js/frappe/form/grid.js:1151 +#: frappe/public/js/frappe/form/grid.js:1188 msgid "Bulk Edit {0}" msgstr "Sunting Massal {0}" -#. Name of a DocType -#: desk/doctype/bulk_update/bulk_update.json -msgid "Bulk Update" -msgstr "Perbarui Massal" +#: frappe/desk/reportview.py:602 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:606 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Bulk Update" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Bulk Update" msgstr "Perbarui Massal" -#: model/workflow.py:253 +#: frappe/model/workflow.py:254 msgid "Bulk approval only support up to 500 documents." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:57 +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 msgid "Bulk operation is enqueued in background." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:70 +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 msgid "Bulk operations only support up to 500 documents." msgstr "" -#: model/workflow.py:243 +#: frappe/model/workflow.py:243 msgid "Bulk {0} is enqueued in background." msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Button" -msgstr "Tombol" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Button" -msgstr "Tombol" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Button" -msgstr "Tombol" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Gradients" -msgstr "Gradien Tombol" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Rounded Corners" -msgstr "Tombol Rounded Corners" +msgstr "" -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "Bayangan Tombol" - -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "By \"Naming Series\" field" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" msgstr "" -#: website/doctype/web_page/web_page.js:111 -#: website/doctype/web_page/web_page.js:118 +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 msgid "By default the title is used as meta title, adding a value here will override it." msgstr "Secara default, judul digunakan sebagai judul meta, menambahkan nilai di sini akan menimpanya." -#. Description of the 'Send Email for Successful Backup' (Check) field in -#. DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "By default, emails are only sent for failed backups." -msgstr "" - +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By fieldname" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "By fieldname" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "By script" msgstr "" -#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "By script" -msgstr "" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" -msgstr "Bypass Restricted IP Address Periksa Jika Two Factor Auth Diaktifkan" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "Bypass Two Factor Auth untuk pengguna yang masuk dari IP Address terbatas" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "Bypass restricted IP Address check Jika Two Factor Auth Diaktifkan" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "C5E" msgstr "" -#: templates/print_formats/standard_macros.html:212 +#: frappe/templates/print_formats/standard_macros.html:220 msgid "CANCELLED" msgstr "DIBATALKAN" -#: public/js/frappe/views/communication.js:71 +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "CC" -msgstr "CC" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" msgid "CC" -msgstr "CC" +msgstr "" -#. Label of a Code field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "CC" -msgstr "CC" - -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "CMD" msgstr "" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "CSS" -msgstr "CSS" +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" -#. Label of a Code field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json msgid "CSS" -msgstr "CSS" +msgstr "" -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "CSS" -msgstr "CSS" - -#. Label of a Small Text field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "CSS Class" -msgstr "Kelas CSS" +msgstr "" #. Description of the 'Element Selector' (Data) field in DocType 'Form Tour #. Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "CSS selector for the element you want to highlight." msgstr "" -#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "CSV" -msgstr "CSV" - #. Option for the 'File Type' (Select) field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "CSV" -msgstr "CSV" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_label (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA Label" -msgstr "Label CTA" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_url (Data) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA URL" -msgstr "URL CTA" +msgstr "" -#: sessions.py:31 +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 msgid "Cache Cleared" msgstr "Cache Dihapus" -#: public/js/frappe/ui/toolbar/awesome_bar.js:181 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 msgid "Calculate" msgstr "Menghitung" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Event" -msgid "Calendar" -msgstr "Kalender" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Calendar" -msgstr "Kalender" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Calendar" -msgstr "Kalender" +msgstr "" -#. Label of a Data field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Calendar Name" -msgstr "Nama Kalender" +msgstr "" #. Name of a DocType -#: desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 msgid "Calendar View" msgstr "Tampilan kalender" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Calendar View" -msgstr "Tampilan kalender" - -#: contacts/doctype/contact/contact.js:50 -msgid "Call" -msgstr "Panggilan Telpon" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json msgid "Call" msgstr "Panggilan Telpon" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action" -msgstr "Panggilan untuk bertindak" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "URL Ajakan Bertindak" +msgstr "" -#. Label of a Section Break field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Call to Action" msgstr "" -#. Label of a Small Text field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Message" -msgstr "Pesan Panggilan Balik" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Title" -msgstr "Judul Panggilan Balik" +msgstr "" -#: public/js/frappe/ui/capture.js:326 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" msgstr "Kamera" -#: public/js/frappe/utils/utils.js:1711 -#: website/report/website_analytics/website_analytics.js:39 +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "" +msgstr "Promosi" -#. Label of a Link field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Campaign" -msgstr "" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Campaign" -msgstr "" - -#. Label of a Small Text field in DocType 'Marketing Campaign' -#: website/doctype/marketing_campaign/marketing_campaign.json -msgctxt "Marketing Campaign" +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Campaign Description (Optional)" msgstr "" -#: custom/doctype/custom_field/custom_field.py:360 +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: core/doctype/doctype/doctype.py:1114 +#: frappe/core/doctype/doctype/doctype.py:1163 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" #. Description of the 'Apply User Permission On' (Link) field in DocType 'User #. Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#: frappe/core/doctype/user_type/user_type.json msgid "Can only list down the document types which has been linked to the User document type." msgstr "" -#: model/rename_doc.py:367 +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 msgid "Can't rename {0} to {1} because {0} doesn't exist." msgstr "" -#: core/doctype/doctype/doctype_list.js:113 -#: public/js/frappe/form/reminders.js:54 +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Batalkan" -#: public/js/frappe/list/list_view.js:1889 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Batalkan" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Cancel" -msgstr "Batalkan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Cancel" -msgstr "Batalkan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Cancel" -msgstr "Batalkan" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Cancel" -msgstr "Batalkan" - -#: public/js/frappe/ui/messages.js:68 +#: frappe/public/js/frappe/ui/messages.js:68 msgctxt "Secondary button in warning dialog" msgid "Cancel" msgstr "Batalkan" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Cancel" -msgstr "Batalkan" - -#: public/js/frappe/form/form.js:998 +#: frappe/public/js/frappe/form/form.js:979 msgid "Cancel All" msgstr "" -#: public/js/frappe/form/form.js:985 +#: frappe/public/js/frappe/form/form.js:966 msgid "Cancel All Documents" msgstr "Batalkan Semua Dokumen" -#: email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: public/js/frappe/list/list_view.js:1894 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Batalkan {0} dokumen?" -#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78 -#: public/js/frappe/ui/filters/filter.js:495 -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Cancelled" -msgstr "Dibatalkan" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Cancelled" -msgstr "Dibatalkan" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Cancelled" -msgstr "Dibatalkan" - #. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 msgid "Cancelled" msgstr "Dibatalkan" -#: core/doctype/deleted_document/deleted_document.py:51 +#: frappe/core/doctype/deleted_document/deleted_document.py:52 msgid "Cancelled Document restored as Draft" msgstr "Dokumen yang Dibatalkan dipulihkan sebagai Konsep" -#: public/js/frappe/form/save.js:13 +#: frappe/public/js/frappe/form/save.js:13 msgctxt "Freeze message while cancelling a document" msgid "Cancelling" msgstr "Membatalkan" -#: desk/form/linked_with.py:379 +#: frappe/desk/form/linked_with.py:381 msgid "Cancelling documents" msgstr "Membatalkan dokumen" -#: desk/doctype/bulk_update/bulk_update.py:94 +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 msgid "Cancelling {0}" msgstr "Membatalkan {0}" -#: core/doctype/prepared_report/prepared_report.py:244 +#: frappe/core/doctype/prepared_report/prepared_report.py:265 msgid "Cannot Download Report due to insufficient permissions" msgstr "" -#: client.py:461 +#: frappe/client.py:452 msgid "Cannot Fetch Values" msgstr "" -#: core/page/permission_manager/permission_manager.py:150 +#: frappe/core/page/permission_manager/permission_manager.py:156 msgid "Cannot Remove" msgstr "Tidak bisa Hapus" -#: model/base_document.py:1034 +#: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" msgstr "" -#: core/doctype/file/file.py:574 +#: frappe/core/doctype/file/file.py:621 msgid "Cannot access file path {0}" msgstr "" -#: public/js/workflow_builder/utils.js:183 +#: frappe/public/js/workflow_builder/utils.js:183 msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: workflow/doctype/workflow/workflow.py:112 +#: frappe/workflow/doctype/workflow/workflow.py:109 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}" -#: public/js/frappe/list/bulk_operations.js:229 +#: frappe/public/js/frappe/list/bulk_operations.js:294 msgid "Cannot cancel {0}." msgstr "" -#: model/document.py:838 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: model/document.py:852 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" -#: public/js/workflow_builder/utils.js:170 +#: frappe/public/js/workflow_builder/utils.js:170 msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: workflow/doctype/workflow/workflow.py:101 +#: frappe/workflow/doctype/workflow/workflow.py:98 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Tidak dapat mengubah keadaan Dibatalkan Dokumen. Transisi baris {0}" -#: core/doctype/doctype/doctype.py:1104 +#: frappe/core/doctype/doctype/doctype.py:1153 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" -#: core/doctype/communication/communication.py:193 +#: frappe/core/doctype/communication/communication.py:169 msgid "Cannot create a {0} against a child document: {1}" msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}" -#: desk/doctype/workspace/workspace.py:250 +#: frappe/desk/doctype/workspace/workspace.py:272 msgid "Cannot create private workspace of other users" msgstr "" -#: core/doctype/file/file.py:151 +#: frappe/core/doctype/file/file.py:153 msgid "Cannot delete Home and Attachments folders" msgstr "Tidak dapat menghapus Rumah dan Lampiran folder" -#: model/delete_doc.py:367 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Tidak dapat menghapus atau membatalkan karena {0} {1} dikaitkan dengan {2} {3} {4}" -#: desk/doctype/workspace/workspace.py:417 -msgid "Cannot delete private workspace of other users" -msgstr "" - -#: desk/doctype/workspace/workspace.py:410 -msgid "Cannot delete public workspace without Workspace Manager role" -msgstr "" - -#: custom/doctype/customize_form/customize_form.js:313 +#: frappe/custom/doctype/customize_form/customize_form.js:369 msgid "Cannot delete standard action. You can hide it if you want" msgstr "Tidak dapat menghapus tindakan standar. Anda bisa menyembunyikannya jika mau" -#: custom/doctype/customize_form/customize_form.js:328 +#: frappe/custom/doctype/customize_form/customize_form.js:391 msgid "Cannot delete standard document state." msgstr "" -#: custom/doctype/customize_form/customize_form.js:276 +#: frappe/custom/doctype/customize_form/customize_form.js:321 msgid "Cannot delete standard field {0}. You can hide it instead." msgstr "" -#: custom/doctype/customize_form/customize_form.js:298 +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 msgid "Cannot delete standard link. You can hide it if you want" msgstr "Tidak dapat menghapus link standar. Anda bisa menyembunyikannya jika mau" -#: custom/doctype/customize_form/customize_form.js:268 +#: frappe/custom/doctype/customize_form/customize_form.js:313 msgid "Cannot delete system generated field {0}. You can hide it instead." msgstr "" -#: public/js/frappe/list/bulk_operations.js:171 +#: frappe/public/js/frappe/list/bulk_operations.js:215 msgid "Cannot delete {0}" msgstr "Tidak dapat menghapus {0}" -#: utils/nestedset.py:302 +#: frappe/utils/nestedset.py:299 msgid "Cannot delete {0} as it has child nodes" msgstr "Tidak dapat menghapus {0} karena memiliki node anak" -#: desk/doctype/dashboard/dashboard.py:49 +#: frappe/desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" msgstr "" -#: email/doctype/notification/notification.py:120 +#: frappe/email/doctype/notification/notification.py:192 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Tidak dapat mengedit Pemberitahuan Standar. Untuk mengedit, nonaktifkan ini dan gandakan" -#: desk/doctype/dashboard_chart/dashboard_chart.py:388 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 msgid "Cannot edit Standard charts" msgstr "" -#: core/doctype/report/report.py:68 +#: frappe/core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "tidak dapat mengedit laporan standar. Silakan menggandakan dan membuat laporan baru" -#: model/document.py:858 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Tidak dapat mengedit dokumen dibatalkan" -#: desk/doctype/dashboard_chart/dashboard_chart.js:378 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" msgstr "Tidak dapat mengedit filter untuk bagan standar" -#: client.py:166 +#: frappe/desk/doctype/number_card/number_card.js:277 +#: frappe/desk/doctype/number_card/number_card.js:364 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 msgid "Cannot edit standard fields" msgstr "Tidak dapat mengedit bidang standar" -#: automation/doctype/auto_repeat/auto_repeat.py:124 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: core/doctype/file/file.py:249 +#: frappe/core/doctype/file/file.py:252 msgid "Cannot find file {} on disk" msgstr "" -#: core/doctype/file/file.py:520 +#: frappe/core/doctype/file/file.py:561 msgid "Cannot get file contents of a Folder" msgstr "" -#: printing/page/print/print.js:817 +#: frappe/printing/page/print/print.js:844 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal." -#: model/document.py:926 +#: frappe/public/js/frappe/form/grid.js:1132 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Tidak dapat menghubungkan dokumen dibatalkan: {0}" -#: model/mapper.py:184 +#: frappe/model/mapper.py:175 msgid "Cannot map because following condition fails:" msgstr "" -#: core/doctype/data_import/importer.py:924 +#: frappe/core/doctype/data_import/importer.py:971 msgid "Cannot match column {0} with any field" msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun" -#: public/js/frappe/form/grid_row.js:172 +#: frappe/public/js/frappe/form/grid_row.js:175 msgid "Cannot move row" msgstr "Tidak dapat memindahkan baris" -#: public/js/frappe/views/reports/report_view.js:865 +#: frappe/public/js/frappe/views/reports/report_view.js:927 msgid "Cannot remove ID field" msgstr "Tidak dapat menghapus bidang ID" -#: email/doctype/notification/notification.py:136 -msgid "Cannot set Notification on Document Type {0}" -msgstr "Tidak dapat mengatur Pemberitahuan pada Jenis Dokumen {0}" +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" -#: core/doctype/docshare/docshare.py:69 +#: frappe/email/doctype/notification/notification.py:209 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:67 msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" msgstr "" -#: public/js/frappe/list/bulk_operations.js:226 +#: frappe/public/js/frappe/list/bulk_operations.js:291 msgid "Cannot submit {0}." msgstr "" -#: desk/doctype/workspace/workspace.py:351 -msgid "Cannot update private workspace of other users" -msgstr "" - -#: desk/doctype/bulk_update/bulk_update.js:26 -#: public/js/frappe/list/bulk_operations.js:301 +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 msgid "Cannot update {0}" msgstr "Tidak dapat memperbarui {0}" -#: model/db_query.py:1125 +#: frappe/model/db_query.py:1126 msgid "Cannot use sub-query in order by" msgstr "tidak bisa menggunakan sub-query dalam rangka oleh" -#: model/db_query.py:1143 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" -#: public/js/frappe/list/bulk_operations.js:232 +#: frappe/public/js/frappe/list/bulk_operations.js:297 msgid "Cannot {0} {1}." msgstr "" -#: utils/password_strength.py:185 +#: frappe/utils/password_strength.py:181 msgid "Capitalization doesn't help very much." msgstr "Kapitalisasi tidak membantu sangat banyak." -#: public/js/frappe/ui/capture.js:286 +#: frappe/public/js/frappe/ui/capture.js:294 msgid "Capture" msgstr "" -#. Label of a Link field in DocType 'Number Card Link' -#: desk/doctype/number_card_link/number_card_link.json -msgctxt "Number Card Link" +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Card" -msgstr "Kartu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Card Break" msgstr "" -#: public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Label Kartu" -#: public/js/frappe/widgets/widget_dialog.js:227 +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 msgid "Card Links" msgstr "" -#. Label of a Table field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Cards" -msgstr "Kartu-kartu" +msgstr "" -#: public/js/frappe/views/interaction.js:72 +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json msgid "Category" msgstr "Kategori" -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Category" -msgstr "Kategori" - -#. Label of a Link field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Category" -msgstr "Kategori" - -#. Label of a Text field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Category Description" -msgstr "Kategori Deskripsi" +msgstr "" -#. Label of a Data field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Category Name" -msgstr "Kategori Nama" - -#: utils/data.py:1491 -msgid "Cent" -msgstr "Sen" +msgstr "" #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Center" -msgstr "Pusat" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Center" -msgstr "Pusat" +msgstr "" -#: core/report/transaction_log_report/transaction_log_report.py:82 +#: frappe/core/page/permission_manager/permission_manager_help.html:16 +msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." +msgstr "" + +#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 msgid "Chain Integrity" msgstr "Integritas Rantai" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Chaining Hash" -msgstr "Chaining Hash" +msgstr "" -#: tests/test_translate.py:98 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 msgid "Change" msgstr "Perubahan" -#: tests/test_translate.py:99 +#: frappe/tests/test_translate.py:112 msgctxt "Coins" msgid "Change" msgstr "Perubahan" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "" + +#. Label of the label (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Change Label (via Custom Translation)" -msgstr "Ganti Label (via Khusus Translation)" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Change Password" -msgstr "Ganti kata sandi" +msgstr "" -#: public/js/print_format_builder/print_format_builder.bundle.js:27 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 msgid "Change Print Format" msgstr "" -#: desk/page/user_profile/user_profile_controller.js:51 -#: desk/page/user_profile/user_profile_controller.js:59 -msgid "Change User" -msgstr "Ganti pengguna" - #. Description of the 'Update Series Counter' (Section Break) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"Change the starting / current sequence number of an existing series.
    \n" -"\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
    \n\n" "Warning: Incorrectly updating counters can prevent documents from getting created. " msgstr "" -#: email/doctype/email_domain/email_domain.js:5 +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.js:5 msgid "Changing any setting will reflect on all the email accounts associated with this domain." msgstr "" -#: core/doctype/system_settings/system_settings.js:62 +#: frappe/core/doctype/system_settings/system_settings.js:67 msgid "Changing rounding method on site with data can result in unexpected behaviour." msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Channel" -msgstr "Saluran" +msgstr "" -#. Label of a Link field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Chart" msgstr "Grafik" -#. Label of a Code field in DocType 'Dashboard Settings' -#: desk/doctype/dashboard_settings/dashboard_settings.json -msgctxt "Dashboard Settings" +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Chart Configuration" -msgstr "Konfigurasi Grafik" +msgstr "" -#. Label of a Data field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" -msgstr "Nama Bagan" +msgstr "" -#. Label of a Link field in DocType 'Workspace Chart' -#: desk/doctype/workspace_chart/workspace_chart.json -msgctxt "Workspace Chart" -msgid "Chart Name" -msgstr "Nama Bagan" - -#. Label of a Code field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Options" -msgstr "Opsi Bagan" +msgstr "" -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Chart Options" -msgstr "Opsi Bagan" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Source" -msgstr "Sumber Bagan" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:479 +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:505 msgid "Chart Type" msgstr "Jenis bagan" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Chart Type" -msgstr "Jenis bagan" - -#. Label of a Table field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Charts" -msgstr "Grafik" - -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Charts" -msgstr "Grafik" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Chat" -msgstr "Obrolan" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Check" -msgstr "Memeriksa" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Check" -msgstr "Memeriksa" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Check" -msgstr "Memeriksa" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Check" -msgstr "Memeriksa" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Check" -msgstr "Memeriksa" +msgstr "" -#: integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:95 msgid "Check Request URL" msgstr "Periksa Permintaan URL" -#: email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:442 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 msgid "Check the Error Log for more information: {0}" msgstr "Periksa Log Kesalahan untuk informasi lebih lanjut: {0}" -#: website/doctype/website_settings/website_settings.js:147 +#: frappe/website/doctype/website_settings/website_settings.js:147 msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." msgstr "Centang ini jika Anda tidak ingin pengguna mendaftar akun di situs Anda. Pengguna tidak akan mendapatkan akses meja kecuali Anda menyediakannya secara eksplisit." #. Description of the 'User must always select' (Check) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." -msgstr "Periksa ini jika Anda ingin untuk memaksa pengguna untuk memilih seri sebelum menyimpan. Tidak akan ada default jika Anda memeriksa ini." - -#: email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." msgstr "" -#: public/js/frappe/desk.js:214 +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Memeriksa satu saat" -#: website/doctype/website_settings/website_settings.js:140 +#: frappe/website/doctype/website_settings/website_settings.js:140 msgid "Checking this will enable tracking page views for blogs, web pages, etc." msgstr "Memeriksa ini akan mengaktifkan pelacakan tampilan halaman untuk blog, halaman web, dll." #. Description of the 'Hide Custom DocTypes and Reports' (Check) field in #. DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "Memeriksa ini akan menyembunyikan jenis dokumen dan kartu laporan khusus di bagian Tautan" +msgstr "" -#: website/doctype/web_page/web_page.js:78 +#: frappe/website/doctype/web_page/web_page.js:78 msgid "Checking this will publish the page on your website and it'll be visible to everyone." msgstr "Memeriksa ini akan menerbitkan halaman di situs web Anda dan akan terlihat oleh semua orang." -#: website/doctype/web_page/web_page.js:104 +#: frappe/website/doctype/web_page/web_page.js:104 msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Memeriksa ini akan menampilkan area teks tempat Anda dapat menulis javascript khusus yang akan berjalan di halaman ini." -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the checksum_version (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Checksum Version" -msgstr "Versi Checksum" +msgstr "" -#: www/list.py:85 +#: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Child Doctype" msgstr "" -#: core/doctype/doctype/doctype.py:1588 +#: frappe/core/doctype/doctype/doctype.py:1647 msgid "Child Table {0} for field {1}" msgstr "" -#: core/doctype/doctype/doctype_list.js:37 -msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" - #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:52 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" -#: public/js/frappe/widgets/widget_dialog.js:614 +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Pilih Kartu yang Ada atau buat Kartu Baru" -#: public/js/frappe/views/workspace/workspace.js:1385 +#: frappe/public/js/frappe/views/workspace/workspace.js:571 msgid "Choose a block or continue typing" msgstr "" -#: public/js/frappe/form/controls/color.js:5 +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 msgid "Choose a color" msgstr "" -#: public/js/frappe/form/controls/icon.js:5 +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 msgid "Choose an icon" msgstr "" #. Description of the 'Two Factor Authentication method' (Select) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Choose authentication method to be used by all users" -msgstr "Pilih metode otentikasi yang akan digunakan oleh semua pengguna" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "City" msgstr "Kota" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "City/Town" -msgstr "Kota / Kota" +msgstr "" -#: core/doctype/recorder/recorder_list.js:12 +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Clear" msgstr "Bersih" -#: public/js/frappe/views/communication.js:325 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: public/js/frappe/views/communication.js:98 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: public/js/frappe/ui/keyboard.js:275 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" msgstr "Bersihkan Cache dan Reload" -#: core/doctype/error_log/error_log_list.js:12 +#: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" msgstr "Log Kesalahan jelas" -#. Label of a Int field in DocType 'Logs To Clear' -#: core/doctype/logs_to_clear/logs_to_clear.json -msgctxt "Logs To Clear" +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Clear Logs After (days)" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:144 +#: frappe/core/doctype/user_permission/user_permission_list.js:144 msgid "Clear User Permissions" msgstr "Hapus Izin Pengguna" -#: public/js/frappe/views/communication.js:326 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" -#: website/doctype/web_page/web_page.py:214 +#: frappe/website/doctype/web_page/web_page.py:215 msgid "Clearing end date, as it cannot be in the past for published pages." msgstr "Menghapus tanggal akhir, karena tidak boleh di masa lalu untuk halaman yang dipublikasikan." -#: website/doctype/web_form/templates/web_form.html:144 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Click here" msgstr "" -#: email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Klik di sini untuk memverifikasi" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +msgid "Click on a file to select it." +msgstr "" -#: integrations/doctype/google_drive/google_drive.js:46 -msgid "Click on Authorize Google Drive Access to authorize Google Drive Access." -msgstr "Klik pada Otorisasi Google Drive Access untuk mengotorisasi Google Drive Access." - -#: templates/emails/login_with_email_link.html:19 +#: frappe/templates/emails/login_with_email_link.html:19 msgid "Click on the button to log in to {0}" msgstr "" -#: templates/emails/data_deletion_approval.html:2 +#: frappe/templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" msgstr "Klik tautan di bawah untuk menyetujui permintaan" -#: templates/emails/new_user.html:7 +#: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" msgstr "Klik link di bawah ini untuk melengkapi pendaftaran Anda dan mengatur sandi baru" -#: templates/emails/download_data.html:3 +#: frappe/templates/emails/download_data.html:3 msgid "Click on the link below to download your data" msgstr "Klik tautan di bawah untuk mengunduh data Anda" -#: templates/emails/delete_data_confirmation.html:4 +#: frappe/templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" msgstr "Klik tautan di bawah untuk memverifikasi permintaan Anda" -#: integrations/doctype/google_calendar/google_calendar.py:101 -#: integrations/doctype/google_contacts/google_contacts.py:40 -#: integrations/doctype/google_drive/google_drive.py:52 -#: website/doctype/website_settings/website_settings.py:161 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 msgid "Click on {0} to generate Refresh Token." msgstr "Klik pada {0} untuk menghasilkan Refresh Token." -#: email/doctype/auto_email_report/auto_email_report.js:96 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klik tabel untuk mengedit" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:402 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:711 +msgid "Click to sort by {0}" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Clicked" -msgstr "Diklik" +msgstr "" -#. Label of a Link field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the client (Link) field in DocType 'OAuth Authorization Code' +#. Label of the client (Link) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Client" -msgstr "Client (Nasabah)" +msgstr "" -#. Label of a Link field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Client" -msgstr "Client (Nasabah)" - -#. Label of a Section Break field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Client Code" -msgstr "Kode Klien" +msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Credentials" -msgstr "Kredensial klien" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client Credentials" -msgstr "Kredensial klien" - -#. Label of a Data field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" -msgstr "ID klien" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client ID" -msgstr "ID klien" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Client Id" msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the client_information (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Information" -msgstr "Informasi klien" +msgstr "" -#. Name of a DocType -#: custom/doctype/client_script/client_script.json -#: website/doctype/web_page/web_page.js:103 -msgid "Client Script" -msgstr "Naskah Klien" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Client Script" +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 msgid "Client Script" msgstr "Naskah Klien" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Code field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Client Script" -msgstr "Naskah Klien" - -#. Label of a Password field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" -msgstr "Rahasia Klien" +msgstr "" -#. Label of a Password field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "Client Secret" -msgstr "Rahasia Klien" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" -#. Label of a Password field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Client Secret" -msgstr "Rahasia Klien" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" -msgstr "URL klien" +msgstr "" -#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23 -#: public/js/frappe/ui/messages.js:245 +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 msgid "Close" msgstr "Tutup" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Close Condition" -msgstr "Kondisi Tutup" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Closed" -msgstr "Tertutup" - #. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json msgid "Closed" msgstr "Tertutup" -#: templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Cmd+Enter to add comment" msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" -msgid "Code" -msgstr "Kode" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Code" -msgstr "Kode" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Code" -msgstr "Kode" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Code" -msgstr "Kode" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Code" -msgstr "Kode" +msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code Challenge" msgstr "" -#. Label of a Select field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Code challenge method" msgstr "" -#: public/js/frappe/form/form_tour.js:268 -#: public/js/frappe/widgets/base_widget.js:157 +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Collapse" msgstr "Jatuh" -#: public/js/frappe/form/controls/code.js:146 +#: frappe/public/js/frappe/form/controls/code.js:184 msgctxt "Shrink code field." msgid "Collapse" msgstr "Jatuh" -#: public/js/frappe/views/treeview.js:121 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Perkecil Semua" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible" -msgstr "Collapsible" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Collapsible" -msgstr "Collapsible" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Collapsible" -msgstr "Collapsible" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "Collapsible Tergantung Pada" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Collapsible Depends On" -msgstr "Collapsible Tergantung Pada" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" msgstr "" -#. Name of a DocType -#: public/js/frappe/views/reports/query_report.js:1140 -#: public/js/frappe/widgets/widget_dialog.js:505 -#: public/js/frappe/widgets/widget_dialog.js:657 -#: website/doctype/color/color.json -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Color' -#: website/doctype/color/color.json -msgctxt "Color" -msgid "Color" -msgstr "Warna" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Color" -msgstr "Warna" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Dashboard Chart Field' -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json -msgctxt "Dashboard Chart Field" -msgid "Color" -msgstr "Warna" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Color" -msgstr "Warna" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Color" -msgstr "Warna" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Color" -msgstr "Warna" - -#. Label of a Select field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" -msgid "Color" -msgstr "Warna" - -#. Label of a Color field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Color" -msgstr "Warna" - +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Color" msgstr "Warna" -#. Label of a Color field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Color" -msgstr "Warna" +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" -#: desk/doctype/kanban_board/kanban_board.py:85 +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 msgid "Column {0} already exist." msgstr "Kolom {0} sudah ada." -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Column Break" -msgstr "Kolom Istirahat" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Column Break" -msgstr "Kolom Istirahat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Column Break" -msgstr "Kolom Istirahat" +msgstr "" -#: core/doctype/data_export/exporter.py:140 +#: frappe/core/doctype/data_export/exporter.py:140 msgid "Column Labels:" msgstr "Kolom Labels:" -#: core/doctype/data_export/exporter.py:25 +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Column Name" msgstr "Kolom Nama" -#. Label of a Data field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Column Name" -msgstr "Kolom Nama" - -#: desk/doctype/kanban_board/kanban_board.py:44 +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 msgid "Column Name cannot be empty" msgstr "Nama kolom tidak boleh kosong" -#: public/js/frappe/form/grid_row.js:593 +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:645 msgid "Column width cannot be zero." msgstr "" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Columns" -msgstr "kolom" +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Columns" -msgstr "kolom" +msgstr "" -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Columns" -msgstr "kolom" - -#. Label of a Table field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Columns" -msgstr "kolom" - -#. Label of a Section Break field in DocType 'Report' -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Columns" -msgstr "kolom" - -#. Label of a HTML Editor field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Columns / Fields" -msgstr "Kolom / Bidang" +msgstr "" -#: public/js/frappe/views/kanban/kanban_view.js:394 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Kolom berdasarkan" -#: integrations/doctype/oauth_client/oauth_client.py:43 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombinasi Tipe Hibah ( {0} ) dan Tipe Respon ( {1} ) tidak diperbolehkan" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Comm10E" msgstr "" #. Name of a DocType -#: core/doctype/comment/comment.json -#: public/js/frappe/form/sidebar/assign_to.js:210 -#: templates/includes/comments/comments.html:34 -msgid "Comment" -msgstr "Komentar" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 msgid "Comment" msgstr "Komentar" -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Comment" -msgstr "Komentar" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment By" -msgstr "Komentar By" +msgstr "" -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment Email" -msgstr "Email Komentar" +msgstr "" -#. Label of a Select field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json msgid "Comment Type" -msgstr "Komentar Type" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Comment Type" -msgstr "Komentar Type" - -#: desk/form/utils.py:58 +#: frappe/desk/form/utils.py:58 msgid "Comment can only be edited by the owner" msgstr "Komentar hanya bisa diedit oleh pemiliknya" -#. Label of a Int field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the comment_limit (Int) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit" msgstr "" #. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Comment limit per hour" msgstr "" -#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206 -#: public/js/frappe/model/model.js:125 -#: website/doctype/web_form/templates/web_form.html:119 +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "" + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:122 msgid "Comments" msgstr "Komentar" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Comments and Communications will be associated with this linked document" -msgstr "Komentar dan Komunikasi akan terkait dengan dokumen terkait ini" +msgstr "" -#: templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:38 msgid "Comments cannot have links or email addresses" msgstr "Komentar tidak dapat memiliki tautan atau alamat email" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Commercial Rounding" msgstr "" -#. Label of a Check field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Commit" -msgstr "Melakukan" +msgstr "" -#. Label of a Check field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json msgid "Committed" msgstr "" -#: utils/password_strength.py:180 +#: frappe/utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." msgstr "Nama-nama umum dan nama keluarga mudah ditebak." #. Name of a DocType -#: core/doctype/communication/communication.json tests/test_translate.py:35 -#: tests/test_translate.py:103 -msgid "Communication" -msgstr "Komunikasi" - #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Communication" -msgstr "Komunikasi" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Communication" -msgstr "Komunikasi" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Communication" -msgstr "Komunikasi" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 msgid "Communication" msgstr "Komunikasi" #. Name of a DocType -#: core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/communication_link/communication_link.json msgid "Communication Link" msgstr "Tautan Komunikasi" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Communication" +#: frappe/core/workspace/build/build.json msgid "Communication Logs" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Communication Type" -msgstr "komunikasi Jenis" +msgstr "" -#: desk/page/leaderboard/leaderboard.js:112 -msgid "Company" -msgstr "Perusahaan" +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" #. Name of a DocType -#: website/doctype/company_history/company_history.json www/about.html:29 +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 msgid "Company History" msgstr "Sejarah Perusahaan" -#. Label of a Text Editor field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Company Introduction" -msgstr "Pendahuluan Perusahaan" +msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Company Name" msgstr "Nama Perusahaan" -#: core/doctype/server_script/server_script.js:14 -#: custom/doctype/client_script/client_script.js:54 -#: public/js/frappe/utils/diffview.js:27 +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: core/doctype/server_script/server_script.py:134 +#: frappe/core/doctype/server_script/server_script.py:157 msgid "Compilation warning" msgstr "" -#: website/doctype/website_theme/website_theme.py:125 +#: frappe/website/doctype/website_theme/website_theme.py:123 msgid "Compiled Successfully" msgstr "Berhasil dikompilasi" -#: www/complete_signup.html:21 -msgid "Complete" -msgstr "Lengkap" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 msgid "Complete" msgstr "Lengkap" -#: public/js/frappe/form/sidebar/assign_to.js:176 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 msgid "Complete By" msgstr "Lengkap Dengan" -#: core/doctype/user/user.py:438 templates/emails/new_user.html:10 +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Pendaftaran Lengkap" -#: utils/goal.py:117 -msgid "Completed" -msgstr "Selesai" +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Completed" -msgstr "Selesai" - -#. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Completed" -msgstr "Selesai" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Completed" -msgstr "Selesai" - #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Completed" -msgstr "Selesai" - +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' #. Option for the 'Status' (Select) field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed" msgstr "Selesai" -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the completed_by_role (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By Role" msgstr "" -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By User" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#: frappe/website/doctype/web_template/web_template.json msgid "Component" -msgstr "Komponen" +msgstr "" -#: public/js/frappe/views/inbox/inbox_view.js:184 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 msgid "Compose Email" msgstr "Menulis Surel" -#. Label of a Small Text field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Select field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Data field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Small Text field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a Code field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Condition" -msgstr "Kondisi" - -#. Label of a HTML field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Condition Description" +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" msgstr "" -#. Label of a JSON field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Condition JSON" msgstr "" -#. Label of a Table field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Conditions" -msgstr "Kondisi" +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "" -#. Label of a Section Break field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Conditions" -msgstr "Kondisi" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Configuration" msgstr "" -#: public/js/frappe/views/reports/report_view.js:461 +#: frappe/public/js/frappe/views/reports/report_view.js:487 msgid "Configure Chart" msgstr "Konfigurasikan Bagan" -#: public/js/frappe/form/grid_row.js:381 +#: frappe/public/js/frappe/form/grid_row.js:390 msgid "Configure Columns" msgstr "" +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "" + #. Description of the 'Amended Documents' (Section Break) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "" -"Configure how amended documents will be named.
    \n" -"\n" -"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n" -"\n" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
    \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "" -#: www/update-password.html:30 +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Menegaskan" -#: public/js/frappe/ui/messages.js:31 +#: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Menegaskan" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100 +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 msgid "Confirm Deletion of Account" msgstr "" -#: core/doctype/user/user.js:173 +#: frappe/core/doctype/user/user.js:191 msgid "Confirm New Password" msgstr "Konfirmasi password baru" -#: www/update-password.html:24 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" -#: templates/emails/data_deletion_approval.html:6 -#: templates/emails/delete_data_confirmation.html:7 +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" msgstr "Konfirmasikan Permintaan" -#: email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Konfirmasi Email Anda" - -#. Label of a Link field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" -msgstr "Template Email Konfirmasi" +msgstr "" -#: email/doctype/newsletter/newsletter.py:381 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Dikonfirmasi" -#: public/js/frappe/widgets/onboarding_widget.js:530 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:25 msgid "Connect to {}" msgstr "" +#. Label of the connected_app (Link) field in DocType 'Email Account' #. Name of a DocType -#: integrations/doctype/connected_app/connected_app.json +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Connected App" msgstr "" -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Connected App" -msgstr "" - -#. Label of a Link field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Connected App" -msgstr "" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Connected User" msgstr "" -#: public/js/frappe/form/print_utils.js:95 -#: public/js/frappe/form/print_utils.js:119 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Terhubung ke Baki QZ!" -#: public/js/frappe/request.js:34 +#: frappe/public/js/frappe/request.js:36 msgid "Connection Lost" msgstr "" -#: templates/pages/integrations/gcalendar-success.html:3 +#: frappe/templates/pages/integrations/gcalendar-success.html:3 msgid "Connection Success" msgstr "Sukses Koneksi" -#: public/js/frappe/dom.js:433 +#: frappe/public/js/frappe/dom.js:446 msgid "Connection lost. Some features might not work." msgstr "Koneksi terputus. Beberapa fitur mungkin tidak bekerja." -#: public/js/frappe/form/dashboard.js:54 +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 msgid "Connections" msgstr "" -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Connections" -msgstr "" - -#. Label of a Tab Break field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Connections" -msgstr "" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Connections" -msgstr "" - -#. Label of a Code field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Console" -msgstr "Menghibur" +msgstr "" #. Name of a DocType -#: desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/console_log/console_log.json msgid "Console Log" msgstr "Log Konsol" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Constraints" msgstr "" #. Name of a DocType -#: contacts/doctype/contact/contact.json -#: core/doctype/communication/communication.js:113 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 msgid "Contact" msgstr "Kontak" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Contact" -msgstr "Kontak" - -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" -msgstr "Kontak Detail" +msgstr "" #. Name of a DocType -#: contacts/doctype/contact_email/contact_email.json +#: frappe/contacts/doctype/contact_email/contact_email.json msgid "Contact Email" msgstr "Email Kontak" -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Contact Numbers" -msgstr "Nomor kontak" +msgstr "" #. Name of a DocType -#: contacts/doctype/contact_phone/contact_phone.json +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Contact Phone" msgstr "Hubungi Telepon" -#: integrations/doctype/google_contacts/google_contacts.py:288 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 msgid "Contact Synced with Google Contacts." msgstr "Kontak Disinkronkan dengan Kontak Google." -#. Name of a DocType -#: website/doctype/contact_us_settings/contact_us_settings.json -msgid "Contact Us Settings" -msgstr "Hubungi Kami Settings" +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" +#. Name of a DocType #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json msgid "Contact Us Settings" msgstr "Hubungi Kami Settings" #. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us #. Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." -msgstr "Opsi kontak, seperti \"Penjualan Query, Dukungan Query\" dll masing-masing pada baris baru atau dipisahkan dengan koma." +msgstr "" -#. Label of a Text Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Blog Post' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1745 +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 msgid "Content" -msgstr "Isi Halaman" +msgstr "" -#. Label of a HTML Editor field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Text Editor field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Text Editor field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Tab Break field in DocType 'Web Page' -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a Long Text field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Content" -msgstr "Isi Halaman" - -#. Label of a HTML Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Content (HTML)" -msgstr "Konten (HTML)" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Content (Markdown)" -msgstr "Konten (penurunan harga)" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Content Hash" -msgstr "Content Hash" +msgstr "" -#. Label of a Select field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the content_type (Select) field in DocType 'Blog Post' +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.json msgid "Content Type" -msgstr "Tipe Konten" +msgstr "" -#. Label of a Select field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Content Type" -msgstr "Tipe Konten" - -#. Label of a Select field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Content Type" -msgstr "Tipe Konten" - -#: desk/doctype/workspace/workspace.py:79 +#: frappe/desk/doctype/workspace/workspace.py:86 msgid "Content data shoud be a list" msgstr "" -#: website/doctype/web_page/web_page.js:91 +#: frappe/website/doctype/web_page/web_page.js:91 msgid "Content type for building the page" msgstr "Jenis konten untuk membangun halaman" -#. Label of a Data field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json msgid "Context" -msgstr "Konteks" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Context" -msgstr "Konteks" - -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Context Script" -msgstr "Skrip Konteks" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:209 -#: public/js/frappe/widgets/onboarding_widget.js:237 -#: public/js/frappe/widgets/onboarding_widget.js:277 -#: public/js/frappe/widgets/onboarding_widget.js:317 -#: public/js/frappe/widgets/onboarding_widget.js:366 -#: public/js/frappe/widgets/onboarding_widget.js:388 -#: public/js/frappe/widgets/onboarding_widget.js:428 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 msgid "Continue" msgstr "Terus" -#. Label of a Check field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json msgid "Contributed" -msgstr "Berkontribusi" - -#. Label of a Data field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Contribution Document Name" -msgstr "Nama Dokumen Kontribusi" - -#. Label of a Select field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Contribution Status" -msgstr "Status Kontribusi" - -#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. " msgstr "" -#: public/js/frappe/utils/utils.js:1030 +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Disalin ke papan klip." -#: public/js/frappe/request.js:615 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:620 msgid "Copy error to clipboard" msgstr "" -#: public/js/frappe/form/toolbar.js:388 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" -msgstr "Hak cipta" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:118 +#: frappe/custom/doctype/customize_form/customize_form.py:122 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes tidak dapat dikustomisasi." -#: desk/doctype/global_search_settings/global_search_settings.py:35 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Modul Inti {0} tidak dapat dicari dalam Pencarian Global." -#: email/smtp.py:77 +#: frappe/printing/page/print/print.js:620 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "Tidak dapat terhubung ke server email keluar" -#: model/document.py:922 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Tidak dapat menemukan {0}" -#: core/doctype/data_import/importer.py:886 +#: frappe/core/doctype/data_import/importer.py:933 msgid "Could not map column {0} to field {1}" msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}" -#: public/js/frappe/web_form/web_form.js:355 +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up: " +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:359 msgid "Couldn't save, please check the data you have entered" msgstr "Tidak dapat menyimpan, harap periksa data yang telah Anda masukkan" -#: public/js/frappe/ui/group_by/group_by.js:19 -#: public/js/frappe/ui/group_by/group_by.js:318 -msgid "Count" -msgstr "Menghitung" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Count" -msgstr "Menghitung" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Menghitung" -#: public/js/frappe/widgets/widget_dialog.js:499 +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 msgid "Count Customizations" msgstr "Hitung Kustomisasi" -#: public/js/frappe/widgets/widget_dialog.js:484 +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 msgid "Count Filter" msgstr "Hitung Filter" -#. Label of a Section Break field in DocType 'Workspace Shortcut' -#. Label of a Code field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Count Filter" -msgstr "Hitung Filter" +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "" -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Counter" -msgstr "Melawan" +msgstr "" +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' #. Name of a DocType -#: geo/doctype/country/country.json +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Negara" -#. Label of a Link field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Country" -msgstr "Negara" - -#. Label of a Link field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" -msgid "Country" -msgstr "Negara" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Country" -msgstr "Negara" - -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Country" -msgstr "Negara" - -#: utils/__init__.py:116 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Country Name" -msgstr "Nama Negara" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "County" -msgstr "daerah" +msgstr "" -#: public/js/frappe/utils/number_systems.js:23 -#: public/js/frappe/utils/number_systems.js:45 +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" msgstr "" -#: core/doctype/communication/communication.js:117 -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 -#: public/js/frappe/form/reminders.js:49 -#: public/js/frappe/views/file/file_view.js:112 -#: public/js/frappe/views/interaction.js:18 -#: public/js/frappe/views/reports/query_report.js:1172 -#: public/js/frappe/views/workspace/workspace.js:1217 -#: workflow/page/workflow_builder/workflow_builder.js:46 +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Buat" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Create" -msgstr "Buat" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Create" -msgstr "Buat" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Create" -msgstr "Buat" - -#: core/doctype/doctype/doctype_list.js:85 +#: frappe/core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" msgstr "" -#. Title of an Onboarding Step -#: website/onboarding_step/create_blogger/create_blogger.json -msgid "Create Blogger" +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" msgstr "" -#: public/js/frappe/views/reports/query_report.js:186 -#: public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Buat Kartu" -#: public/js/frappe/views/reports/query_report.js:284 -#: public/js/frappe/views/reports/query_report.js:1099 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Buat Bagan" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Create Contacts from Incoming Emails" -msgstr "Buat Kontak dari Email Masuk" - -#. Title of an Onboarding Step -#: custom/onboarding_step/custom_field/custom_field.json -msgid "Create Custom Fields" +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:925 -msgid "Create Duplicate" +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Create Entry" -msgstr "Buat Entri" +msgstr "" -#. Label of a Check field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "" + +#. Label of the create_log (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Create Log" -msgstr "Buat Log" +msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41 -#: public/js/frappe/views/treeview.js:361 -#: workflow/page/workflow_builder/workflow_builder.js:41 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 msgid "Create New" msgstr "Buat New" -#: core/doctype/doctype/doctype_list.js:83 +#: frappe/public/js/frappe/list/list_view.js:509 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "Buat New" + +#: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" msgstr "" -#: public/js/frappe/list/list_view_select.js:204 +#: frappe/public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" msgstr "" -#: core/doctype/user/user.js:251 +#: frappe/core/doctype/user/user.js:270 msgid "Create User Email" msgstr "Buat Email Pengguna" -#: public/js/frappe/views/workspace/workspace.js:465 -msgid "Create Workspace" +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" msgstr "" -#: public/js/frappe/form/reminders.js:9 +#: frappe/public/js/frappe/form/reminders.js:9 msgid "Create a Reminder" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:521 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 msgid "Create a new ..." msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:156 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" msgstr "Buat catatan baru" -#: public/js/frappe/form/controls/link.js:291 -#: public/js/frappe/form/controls/link.js:293 -#: public/js/frappe/form/link_selector.js:139 -#: public/js/frappe/list/list_view.js:470 +#: frappe/public/js/frappe/form/controls/link.js:311 +#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:501 +#: frappe/public/js/frappe/web_form/web_form_list.js:225 msgid "Create a new {0}" msgstr "Buat baru {0}" -#: www/login.html:142 +#: frappe/www/login.html:162 msgid "Create a {0} Account" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:34 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" msgstr "" -#: public/js/frappe/list/list_view.js:473 +#: frappe/public/js/frappe/list/list_view.js:504 msgid "Create your first {0}" msgstr "Buat {0} pertama Anda" -#: workflow/doctype/workflow/workflow.js:16 +#: frappe/workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Created" -msgstr "Dibuat" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Created" -msgstr "Dibuat" - -#. Label of a Datetime field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Created At" msgstr "" -#: model/__init__.py:138 model/meta.py:51 -#: public/js/frappe/list/list_sidebar_group_by.js:73 -#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113 +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 msgid "Created By" msgstr "Dibuat Oleh" -#: workflow/doctype/workflow/workflow.py:65 +#: frappe/workflow/doctype/workflow/workflow.py:64 msgid "Created Custom Field {0} in {1}" msgstr "Dibuat Bidang Kustom {0} pada {1}" -#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140 -#: model/meta.py:46 public/js/frappe/model/meta.js:198 -#: public/js/frappe/model/model.js:115 -#: public/js/frappe/views/dashboard/dashboard_view.js:478 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Created On" msgstr "Dibuat pada" -#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376 +#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Membuat {0}" -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Criticism" -msgstr "Kritik" - -#: public/js/frappe/form/sidebar/review.js:66 -msgid "Criticize" -msgstr "Mengkritik" +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Cron" -msgstr "Cron" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "Cron" +msgstr "" -#. Label of a Data field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Cron Format" -msgstr "Format Cron" +msgstr "" -#. Label of a Data field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Cron Format" -msgstr "Format Cron" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" -#: templates/includes/comments/comments.html:32 +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" msgstr "Ctrl + Enter untuk menambahkan komentar" -#. Name of a DocType -#: desk/page/setup_wizard/setup_wizard.js:403 -#: geo/doctype/currency/currency.json -msgid "Currency" -msgstr "Mata uang" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Currency" -msgstr "Mata uang" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Currency" -msgstr "Mata uang" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Currency" -msgstr "Mata uang" - +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Currency" msgstr "Mata uang" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Currency Name" -msgstr "Nama Mata Uang" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Currency Precision" -msgstr "Presisi mata uang" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Current" msgstr "Arus" -#. Label of a Link field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Current Job ID" msgstr "" -#. Label of a Int field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Current Value" msgstr "" -#: public/js/frappe/form/form_viewers.js:5 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" msgstr "Sedang Melihat" -#: public/js/frappe/form/sidebar/review.js:77 -msgid "Currently you have {0} review points" -msgstr "Saat ini Anda memiliki {0} poin ulasan" - -#: core/doctype/user_type/user_type_list.js:7 -#: public/js/frappe/form/reminders.js:20 -msgid "Custom" -msgstr "Disesuaikan" - +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Custom" -msgstr "Disesuaikan" - -#. Label of a Check field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Custom" -msgstr "Disesuaikan" - +#. Label of the custom (Check) field in DocType 'Desktop Icon' #. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Custom" -msgstr "Disesuaikan" - -#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Custom" -msgstr "Disesuaikan" - +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 msgid "Custom" msgstr "Disesuaikan" -#. Label of a Check field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Custom Base URL" -msgstr "URL Basis Kustom" +msgstr "" -#. Label of a Link field in DocType 'Workspace Custom Block' -#: desk/doctype/workspace_custom_block/workspace_custom_block.json -msgctxt "Workspace Custom Block" +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Custom Block Name" msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Custom Blocks" msgstr "" -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json msgid "Custom CSS" -msgstr "Kustom CSS" +msgstr "" -#. Label of a Code field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Custom CSS" -msgstr "Kustom CSS" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Custom Configuration" -msgstr "Konfigurasi Kustom" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" #. Name of a DocType -#: core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json msgid "Custom DocPerm" msgstr "kustom DocPerm" -#. Title of an Onboarding Step -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "Custom Document Types" -msgstr "" - -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Custom Document Types (Select Permission)" msgstr "" -#: core/doctype/user_type/user_type.py:104 +#: frappe/core/doctype/user_type/user_type.py:105 msgid "Custom Document Types Limit Exceeded" msgstr "" -#: desk/desktop.py:483 +#: frappe/desk/desktop.py:524 msgid "Custom Documents" msgstr "Dokumen Kustom" -#. Name of a DocType -#: custom/doctype/custom_field/custom_field.json -msgid "Custom Field" -msgstr "Bidang Kustom" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Custom Field" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Custom Field" msgstr "Bidang Kustom" -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Custom Field" -msgstr "Bidang Kustom" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Custom Field" -msgstr "Bidang Kustom" - -#: custom/doctype/custom_field/custom_field.py:216 +#: frappe/custom/doctype/custom_field/custom_field.py:220 msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." msgstr "Bidang Khusus {0} dibuat oleh Administrator dan hanya dapat dihapus melalui akun Administrator." -#. Subtitle of the Module Onboarding 'Customization' -#: custom/module_onboarding/customization/customization.json -msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports" -msgstr "" - -#: custom/doctype/custom_field/custom_field.py:260 +#: frappe/custom/doctype/custom_field/custom_field.py:277 msgid "Custom Fields can only be added to a standard DocType." msgstr "Bidang Kustom hanya dapat ditambahkan ke DocType standar." -#: custom/doctype/custom_field/custom_field.py:257 +#: frappe/custom/doctype/custom_field/custom_field.py:274 msgid "Custom Fields cannot be added to core DocTypes." msgstr "Bidang Kustom tidak dapat ditambahkan ke DocTypes inti." -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Custom Footer" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Custom Format" -msgstr "Kustom Format" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Custom Group Search" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:119 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:190 -#: printing/page/print_format_builder/print_format_builder.js:720 +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 msgid "Custom HTML" -msgstr "Custom HTML" +msgstr "" #. Name of a DocType -#: desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "Custom HTML Block" msgstr "" -#. Label of a HTML field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Custom HTML Help" -msgstr "Custom HTML Bantuan" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:111 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" msgstr "" -#. Label of a Data field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Custom Label" msgstr "" -#. Label of a Data field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Custom Label" -msgstr "" - -#. Label of a Table field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Menu Items" -msgstr "Kustom Menu Produk" +msgstr "" -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Custom Options" -msgstr "Opsi Kustom" +msgstr "" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Custom Overrides" -msgstr "Penggantian Kustom" +msgstr "" #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Custom Report" -msgstr "Laporan Kustom" +msgstr "" -#: desk/desktop.py:484 +#: frappe/desk/desktop.py:525 msgid "Custom Reports" msgstr "Laporan Kustom" #. Name of a DocType -#: core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/custom_role/custom_role.json msgid "Custom Role" msgstr "Peran kustom" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Custom SCSS" -msgstr "SCSS Kustom" +msgstr "" -#. Label of a Section Break field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Sidebar Menu" -msgstr "Kustom Sidebar menu" +msgstr "" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Translation" +#: frappe/core/workspace/build/build.json msgid "Custom Translation" msgstr "" -#: core/doctype/doctype/doctype_list.js:65 -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Check field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Custom?" -msgstr "Kustom?" - -#. Label of a Card Break in the Build Workspace -#. Title of the Module Onboarding 'Customization' -#: core/workspace/build/build.json -#: custom/module_onboarding/customization/customization.json -msgid "Customization" -msgstr "Kustomisasi" - -#. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Customization" -msgstr "Kustomisasi" - -#. Group in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Customization" -msgstr "Kustomisasi" - -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Customization" -msgstr "Kustomisasi" - -#. Success message of the Module Onboarding 'Customization' -#: custom/module_onboarding/customization/customization.json -msgid "Customization onboarding is all done!" +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:511 +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "Kustom?" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "Kustomisasi" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" msgstr "" -#: custom/doctype/customize_form/customize_form.js:397 +#: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" msgstr "Penyesuaian ulang Reset" -#: modules/utils.py:95 +#: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
    {1}" msgstr "Penyesuaian untuk {0} diekspor ke:
    {1}" -#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527 +#: frappe/printing/page/print/print.js:171 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Sesuaikan" -#: public/js/frappe/list/list_view.js:1664 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Sesuaikan" -#: custom/doctype/customize_form/customize_form.js:89 +#: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" msgstr "" -#: public/js/frappe/views/dashboard/dashboard_view.js:37 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" msgstr "" -#. Name of a DocType -#: custom/doctype/customize_form/customize_form.json -#: public/js/frappe/views/kanban/kanban_view.js:340 -msgid "Customize Form" -msgstr "Sesuaikan Form" - #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Customize Form" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Sesuaikan Form" -#: custom/doctype/customize_form/customize_form.js:100 +#: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" msgstr "" #. Name of a DocType -#: custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" msgstr "Sesuaikan Form Lapangan" -#. Title of an Onboarding Step -#: custom/onboarding_step/print_format/print_format.json -msgid "Customize Print Formats" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" msgstr "" -#: public/js/frappe/views/file/file_view.js:144 +#: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" msgstr "Memotong" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Cyan" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "DELETE" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "DELETE" msgstr "" -#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "DESC" -msgstr "DESC" - #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "DESC" -msgstr "DESC" +msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "DLE" msgstr "" -#: templates/print_formats/standard_macros.html:207 +#: frappe/templates/print_formats/standard_macros.html:215 msgid "DRAFT" msgstr "Draf" -#: public/js/frappe/utils/common.js:398 -#: website/report/website_analytics/website_analytics.js:23 -msgid "Daily" -msgstr "Sehari-hari" - +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 msgid "Daily" msgstr "Sehari-hari" -#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox -#. Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Daily" -msgstr "Sehari-hari" - -#. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Daily" -msgstr "Sehari-hari" - -#: templates/emails/upcoming_events.html:8 +#: frappe/templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Harian Kegiatan Digest dikirim untuk Kalender Acara di mana pengingat ditetapkan." -#: desk/doctype/event/event.py:93 +#: frappe/desk/doctype/event/event.py:100 msgid "Daily Events should finish on the Same Day." msgstr "Acara Harian harus selesai pada Hari yang Sama." #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Daily Long" -msgstr "Long setiap hari" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Daily Long" -msgstr "Long setiap hari" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Danger" -msgstr "Bahaya" +msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Dark" msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Dark Color" -msgstr "Warna gelap" +msgstr "" -#: public/js/frappe/ui/theme_switcher.js:65 +#: frappe/public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" msgstr "" -#. Name of a DocType -#: core/page/dashboard_view/dashboard_view.js:10 -#: desk/doctype/dashboard/dashboard.json -#: public/js/frappe/ui/toolbar/search_utils.js:546 -msgid "Dashboard" -msgstr "Dasbor" - +#. Label of the dashboard (Check) field in DocType 'User' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Dashboard" -msgid "Dashboard" -msgstr "Dasbor" - +#. Name of a DocType #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Dashboard" -msgstr "Dasbor" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Dashboard" -msgstr "Dasbor" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Dasbor" -#. Name of a DocType -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 -msgid "Dashboard Chart" -msgstr "Bagan Dasbor" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Dashboard Chart" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" msgstr "Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgid "Dashboard Chart Field" msgstr "Bidang Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" msgstr "Tautan Bagan Dasbor" #. Name of a DocType -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" msgstr "Sumber Bagan Dasbor" #. Name of a role -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" msgstr "Manajer Dasbor" -#. Label of a Data field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "Nama Dashboard" +msgstr "" #. Name of a DocType -#: desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" msgstr "Pengaturan Dashboard" -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Dashboards" -msgstr "Dasbor" +msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json -msgid "Data" -msgstr "Data" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Data" -msgstr "Data" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" -msgid "Data" -msgstr "Data" - +#. Label of the data (Code) field in DocType 'Deleted Document' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Data" -msgstr "Data" - -#. Label of a Long Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "Data" -msgstr "Data" - +#. Label of the data (Long Text) field in DocType 'Transaction Log' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Data" -msgstr "Data" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Data" -msgstr "Data" +msgstr "" -#. Label of a Table field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Data" -msgstr "Data" - -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Data" -msgstr "Data" - -#: public/js/frappe/form/controls/data.js:58 +#: frappe/public/js/frappe/form/controls/data.js:59 msgid "Data Clipped" msgstr "" #. Name of a DocType -#: core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_export/data_export.json msgid "Data Export" msgstr "Ekspor Data" #. Name of a DocType -#: core/doctype/data_import/data_import.json -msgid "Data Import" -msgstr "Impor data" - -#. Label of a Link field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import" msgstr "Impor data" #. Name of a DocType -#: core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import Log" msgstr "" -#: core/doctype/data_export/exporter.py:174 +#: frappe/core/doctype/data_export/exporter.py:174 msgid "Data Import Template" msgstr "Impor Template Data" -#: custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:614 msgid "Data Too Long" msgstr "Data Terlalu Panjang" -#: model/base_document.py:703 -msgid "Data missing in table" -msgstr "Data hilang dalam tabel" +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Database Engine" -msgstr "database Engine" +msgstr "" -#. Label of a Section Break field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Database Processes" msgstr "" -#: public/js/frappe/doctype/index.js:38 +#: frappe/public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" msgstr "" #. Name of a report -#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" msgstr "" -#: custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:248 msgid "Database Table Row Size Limit" msgstr "" -#: public/js/frappe/doctype/index.js:40 +#: frappe/public/js/frappe/doctype/index.js:40 msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." msgstr "" -#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109 -#: public/js/frappe/views/interaction.js:80 -msgid "Date" -msgstr "Tanggal" - -#. Label of a Datetime field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Date" -msgstr "Tanggal" - -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Date" -msgstr "Tanggal" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Date" -msgstr "Tanggal" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Date" -msgstr "Tanggal" +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "" +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Date" -msgstr "Tanggal" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Date" -msgstr "Tanggal" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Date" -msgstr "Tanggal" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" msgstr "Tanggal" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json msgid "Date Format" -msgstr "Format Tanggal" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Date Format" -msgstr "Format Tanggal" - -#: desk/page/leaderboard/leaderboard.js:165 +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 msgid "Date Range" msgstr "" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Date Range" -msgstr "" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Date and Number Format" -msgstr "Tanggal dan Nomor Format" +msgstr "" -#: public/js/frappe/form/controls/date.js:163 +#: frappe/public/js/frappe/form/controls/date.js:247 msgid "Date {0} must be in format: {1}" msgstr "Tanggal {0} harus dalam format: {1}" -#: utils/password_strength.py:131 +#: frappe/utils/password_strength.py:129 msgid "Dates are often easy to guess." msgstr "Tanggal seringkali mudah ditebak." -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Datetime" -msgstr "Datetime" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Datetime" -msgstr "Datetime" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Datetime" -msgstr "Datetime" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Datetime" -msgstr "Datetime" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:270 +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 msgid "Day" msgstr "Hari" -#. Label of a Select field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Day" -msgstr "Hari" - -#. Label of a Select field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Day" -msgstr "Hari" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the day_of_week (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Day of Week" -msgstr "Hari dalam seminggu" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Days After" -msgstr "Setelah hari" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Days Before" -msgstr "Sebelum hari" +msgstr "" -#. Label of a Int field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Days Before or After" -msgstr "Sebelum hari atau setelah" +msgstr "" -#: public/js/frappe/request.js:249 +#: frappe/public/js/frappe/request.js:252 msgid "Deadlock Occurred" msgstr "" -#: templates/emails/password_reset.html:1 +#: frappe/templates/emails/password_reset.html:1 msgid "Dear" msgstr "Kepada Yth." -#: templates/emails/administrator_logged_in.html:1 +#: frappe/templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," msgstr "Kepada System Manager Yth.," -#: templates/emails/account_deletion_notification.html:1 -#: templates/emails/delete_data_confirmation.html:1 +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 msgid "Dear User," msgstr "Pengguna yang terhormat," -#: templates/emails/download_data.html:1 +#: frappe/templates/emails/download_data.html:1 msgid "Dear {0}" msgstr "Yth {0}" -#. Label of a Code field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Debug Log" msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Default" -msgstr "Standar" +#: frappe/public/js/frappe/views/reports/report_utils.js:308 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Default" -msgstr "Standar" +#: frappe/public/js/frappe/views/reports/report_utils.js:300 +msgid "Decimal Separator must be a single character" +msgstr "" +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" msgstr "Standar" -#. Label of a Small Text field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Default" -msgstr "Standar" - -#. Label of a Data field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Default" -msgstr "Standar" - -#. Label of a Small Text field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Default" -msgstr "Standar" - -#: contacts/doctype/address_template/address_template.py:40 +#: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" msgstr "Template Default Address tidak bisa dihapus" -#. Label of a Select field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Amendment Naming" msgstr "" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Email Template" msgstr "" -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default Email Template" -msgstr "" - -#: email/doctype/email_account/email_account_list.js:13 +#: frappe/email/doctype/email_account/email_account_list.js:13 msgid "Default Inbox" msgstr "Standar Inbox" -#: email/doctype/email_account/email_account.py:194 +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 msgid "Default Incoming" msgstr "Standar Masuk" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Default Incoming" -msgstr "Standar Masuk" - -#. Label of a Check field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Default Letter Head" -msgstr "Standar Surat Kepala" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "Default Naming" -msgstr "" - #. Option for the 'Default Amendment Naming' (Select) field in DocType #. 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Naming" msgstr "" -#: email/doctype/email_account/email_account.py:201 +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 msgid "Default Outgoing" msgstr "Standar Outgoing" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Default Outgoing" -msgstr "Standar Outgoing" - -#. Label of a Data field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the default_portal_home (Data) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Portal Home" -msgstr "Beranda Portal Default" +msgstr "" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_print_format (Data) field in DocType 'DocType' +#. Label of the default_print_format (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default Print Format" -msgstr "Standar Print Format" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default Print Format" -msgstr "Standar Print Format" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the default_print_language (Link) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Default Print Language" -msgstr "Bahasa Cetak Default" +msgstr "" -#. Label of a Data field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Default Redirect URI" -msgstr "Bawaan Redirect URI" +msgstr "" -#. Label of a Link field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Role at Time of Signup" -msgstr "Peran bawaan di Waktu Pendaftaran" +msgstr "" -#: email/doctype/email_account/email_account_list.js:16 +#: frappe/email/doctype/email_account/email_account_list.js:16 msgid "Default Sending" msgstr "Default Mengirim" -#: email/doctype/email_account/email_account_list.js:7 +#: frappe/email/doctype/email_account/email_account_list.js:7 msgid "Default Sending and Inbox" msgstr "Default Mengirim dan Inbox" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Field" -msgstr "Bidang Sortir Default" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Order" -msgstr "Urutan Sortir Default" +msgstr "" -#. Label of a Data field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" +#. Label of the field (Data) field in DocType 'Print Format Field Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Default Template For Field" msgstr "" -#: website/doctype/website_theme/website_theme.js:28 +#: frappe/website/doctype/website_theme/website_theme.js:28 msgid "Default Theme" msgstr "Tema Default" -#. Label of a Link field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Role" msgstr "" -#. Label of a Link field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the default_user_type (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Default User Type" msgstr "" -#. Label of a Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the default (Text) field in DocType 'Custom Field' +#. Label of the default_value (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Default Value" -msgstr "Nilai Awal" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Default Value" -msgstr "Nilai Awal" - -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the default_view (Select) field in DocType 'DocType' +#. Label of the default_view (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Default View" msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Default View" +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" msgstr "" -#: core/doctype/doctype/doctype.py:1327 +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1376 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Default untuk jenis bidang 'Cek' {0} harus berupa '0' atau '1'" -#: core/doctype/doctype/doctype.py:1340 +#: frappe/core/doctype/doctype/doctype.py:1389 msgid "Default value for {0} must be in the list of options." msgstr "Nilai bawaan untuk {0} harus ada di daftar opsi." -#: core/doctype/session_default_settings/session_default_settings.py:37 +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "Default {0}" +msgstr "" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Default: \"Contact Us\"" -msgstr "Default: \"Hubungi Kami\"" +msgstr "" #. Name of a DocType -#: core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json msgid "DefaultValue" -msgstr "DefaultValue" +msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "Standar" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Defaults" -msgstr "Standar" - -#: email/doctype/email_account/email_account.py:207 +#: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" msgstr "" -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Delayed" -msgstr "Terlambat" +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:189 -#: public/js/frappe/form/toolbar.js:423 -#: public/js/frappe/views/reports/report_view.js:1645 -#: public/js/frappe/views/treeview.js:313 -#: public/js/frappe/views/workspace/workspace.js:823 -#: templates/discussions/reply_card.html:35 +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Hapus" -#: public/js/frappe/list/list_view.js:1857 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Hapus" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Delete" -msgstr "Hapus" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Delete" -msgstr "Hapus" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Delete" -msgstr "Hapus" - -#: www/me.html:75 +#: frappe/www/me.html:65 msgid "Delete Account" msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 msgid "Delete Data" msgstr "Hapus Data" -#: public/js/frappe/views/kanban/kanban_view.js:103 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 msgid "Delete Kanban Board" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:824 -msgid "Delete Workspace" +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:696 +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:935 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:741 msgid "Delete comment?" msgstr "Hapus komentar?" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:30 +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 msgid "Delete this record to allow sending to this email address" msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini" -#: public/js/frappe/list/list_view.js:1862 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: public/js/frappe/list/list_view.js:1868 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Hapus {0} item secara permanen?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Deleted" -msgstr "Dihapus" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Deleted" -msgstr "Dihapus" - #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Deleted" -msgstr "Dihapus" - #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Deleted" -msgstr "Dihapus" +msgstr "" -#. Label of a Data field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "DocType dihapus" +msgstr "" #. Name of a DocType -#: core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" msgstr "Dokumen dihapus" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Deleted Document" +#: frappe/automation/workspace/tools/tools.json msgid "Deleted Documents" -msgstr "Dokumen yang dihapus" +msgstr "" -#. Label of a Data field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Name" -msgstr "Nama dihapus" +msgstr "" -#: desk/reportview.py:488 +#: frappe/desk/reportview.py:606 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/desk/reportview.py:583 msgid "Deleting {0}" msgstr "Menghapus {0}" -#: public/js/frappe/list/bulk_operations.js:158 +#: frappe/public/js/frappe/list/bulk_operations.js:202 msgid "Deleting {0} records..." msgstr "" -#: public/js/frappe/model/model.js:706 +#: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." msgstr "" -#. Label of a Table field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Deletion Steps " msgstr "" -#: core/doctype/page/page.py:108 +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 msgid "Deletion of this document is only permitted in developer mode." msgstr "" -#: public/js/frappe/views/reports/report_utils.js:276 +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:296 msgid "Delimiter must be a single character" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Delivery Status" msgstr "Status Pengiriman" -#: templates/includes/oauth_confirmation.html:14 -msgid "Deny" -msgstr "" - #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 msgid "Deny" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Department" msgstr "Departemen" -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 msgid "Dependencies" msgstr "" -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Depends On" -msgstr "Tergantung Pada" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Dependencies & Licenses" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Depends On" -msgstr "Tergantung Pada" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:32 +#: frappe/public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "Descendants Of" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:33 +#: frappe/public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" msgstr "" -#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44 -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text Editor field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a HTML Editor field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Section Break field in DocType 'Onboarding Step' -#. Label of a Markdown Editor field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Print Heading' -#: printing/doctype/print_heading/print_heading.json -msgctxt "Print Heading" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Tag' -#: desk/doctype/tag/tag.json -msgctxt "Tag" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text Editor field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Small Text field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Description" -msgstr "Deskripsi" - -#. Label of a Text field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'Blog Category' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 msgid "Description" msgstr "Deskripsi" #. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Deskripsi untuk halaman daftar, dalam teks biasa, hanya beberapa baris. (maks 200 karakter)" +msgstr "" #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Description to inform the user about any action that is going to be performed" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Designation" msgstr "Penunjukan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json msgid "Desk Access" -msgstr "meja Access" +msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Desk Settings" msgstr "" -#. Label of a Select field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Desk Theme" msgstr "" #. Name of a role -#: automation/doctype/reminder/reminder.json core/doctype/report/report.json -#: core/doctype/submission_queue/submission_queue.json -#: core/doctype/user_group/user_group.json -#: custom/doctype/doctype_layout/doctype_layout.json -#: desk/doctype/calendar_view/calendar_view.json -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_settings/dashboard_settings.json -#: desk/doctype/form_tour/form_tour.json -#: desk/doctype/kanban_board/kanban_board.json -#: desk/doctype/list_filter/list_filter.json -#: desk/doctype/module_onboarding/module_onboarding.json -#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json -#: desk/doctype/onboarding_step/onboarding_step.json -#: email/doctype/document_follow/document_follow.json -#: email/doctype/email_template/email_template.json -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/doctype/google_contacts/google_contacts.json -#: printing/doctype/letter_head/letter_head.json -#: printing/doctype/network_printer_settings/network_printer_settings.json -#: printing/doctype/print_format/print_format.json -#: social/doctype/energy_point_log/energy_point_log.json -#: website/doctype/marketing_campaign/marketing_campaign.json -#: workflow/doctype/workflow_action/workflow_action.json -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Desk User" msgstr "" #. Name of a DocType -#: desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Desktop Icon" -msgstr "Desktop Icon" +msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:230 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 msgid "Desktop Icon already exists" msgstr "Ikon Desktop sudah ada" -#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38 -#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276 +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Penjelasan" -#. Label of a Tab Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Details" -msgstr "Penjelasan" +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "" -#. Label of a Section Break field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Details" -msgstr "Penjelasan" - -#. Label of a Code field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Details" -msgstr "Penjelasan" - -#: core/page/permission_manager/permission_manager.js:477 +#: frappe/core/page/permission_manager/permission_manager.js:494 msgid "Did not add" msgstr "Tidak menambahkan" -#: core/page/permission_manager/permission_manager.js:378 +#: frappe/core/page/permission_manager/permission_manager.js:388 msgid "Did not remove" msgstr "Tidak menghapus" -#: public/js/frappe/utils/diffview.js:56 +#: frappe/public/js/frappe/utils/diffview.js:57 msgid "Diff" msgstr "" #. Description of the 'States' (Section Break) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." -msgstr "Berbeda \"Negara\" dokumen ini dapat eksis masuk Like \"Open\", \"Menunggu Persetujuan\" dll" +msgstr "" -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Digits" -msgstr "Digit" +msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Directory Server" msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_auto_refresh (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Auto Refresh" -msgstr "Nonaktifkan Refresh Otomatis" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Change Log Notification" msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_comment_count (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Comment Count" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the disable_comments (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Comments" -msgstr "Nonaktifkan Komentar" +msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "" + +#. Label of the disable_count (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Count" -msgstr "Nonaktifkan Count" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_document_sharing (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Document Sharing" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the disable_likes (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Likes" msgstr "" -#: core/doctype/report/report.js:36 +#: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Nonaktifkan Laporan" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Disable SMTP server authentication" -msgstr "Nonaktifkan otentikasi server SMTP" +msgstr "" -#. Label of a Check field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Sidebar Stats" -msgstr "Nonaktifkan Status Bilah Samping" +msgstr "" -#: website/doctype/website_settings/website_settings.js:146 +#: frappe/website/doctype/website_settings/website_settings.js:146 msgid "Disable Signup for your site" msgstr "Nonaktifkan Pendaftaran untuk situs Anda" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "Nonaktifkan standard catatan kaki pada surel" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_system_update_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable System Update Notification" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the disable_user_pass_login (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Username/Password Login" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Disable signups" msgstr "" -#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108 -#: public/js/frappe/model/indicator.js:115 -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#. Label of the disabled (Check) field in DocType 'Blogger' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Dinonaktifkan" -#. Label of a Check field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Disabled" -msgstr "Dinonaktifkan" - -#: email/doctype/email_account/email_account.js:237 +#: frappe/email/doctype/email_account/email_account.js:300 msgid "Disabled Auto Reply" msgstr "Balas Otomatis Dinonaktifkan" -#: public/js/frappe/views/communication.js:30 -#: public/js/frappe/views/dashboard/dashboard_view.js:70 -#: public/js/frappe/views/workspace/workspace.js:502 -#: public/js/frappe/web_form/web_form.js:187 -#: website/doctype/web_form/templates/web_form.html:41 +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:187 msgid "Discard" msgstr "Membuang" -#: public/js/frappe/web_form/web_form.js:184 +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "Membuang" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "Membuang" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:184 msgid "Discard?" msgstr "" +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "" + #. Name of a DocType -#: website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Discussion Reply" msgstr "" #. Name of a DocType -#: website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Discussion Topic" msgstr "" -#: templates/discussions/reply_card.html:16 +#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" msgstr "Memberhentikan" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Display" -msgstr "Tampilan" +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "Memberhentikan" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Display" -msgstr "Tampilan" +msgstr "" -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the depends_on (Code) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Display Depends On" -msgstr "Tampilan Tergantung Pada" +msgstr "" -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Display Depends On (JS)" msgstr "" -#. Label of a Check field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do Not Create New User " msgstr "" #. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: public/js/frappe/form/grid.js:1156 +#: frappe/public/js/frappe/form/grid.js:1193 msgid "Do not edit headers which are preset in the template" msgstr "Jangan edit header yang sudah ada di template" -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64 -msgid "Do not have permission to access bucket {0}." -msgstr "" - -#: core/doctype/system_settings/system_settings.js:66 +#: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" -#: public/js/frappe/form/form.js:977 +#: frappe/public/js/frappe/form/form.js:958 msgid "Do you want to cancel all linked documents?" msgstr "Apakah Anda ingin membatalkan semua dokumen yang ditautkan?" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Event" -msgstr "Acara dok" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Events" -msgstr "Acara Dok" +msgstr "" -#. Label of a Select field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Doc Status" -msgstr "Status Doc" +msgstr "" #. Name of a DocType -#: core/doctype/docfield/docfield.json -msgid "DocField" -msgstr "DocField" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocField" -msgstr "DocField" +msgstr "" #. Name of a DocType -#: core/doctype/docperm/docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "DocPerm" +msgstr "" #. Name of a DocType -#: core/doctype/docshare/docshare.json +#: frappe/core/doctype/docshare/docshare.json msgid "DocShare" -msgstr "DocShare" +msgstr "" -#: workflow/doctype/workflow/workflow.js:264 -msgid "" -"DocStatus of the following states have changed:
    {0}
    \n" +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
    {0}
    \n" "\t\t\t\tDo you want to update the docstatus of existing documents in those states?
    \n" "\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" "\t\t\t\t" msgstr "" +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' #. Name of a DocType -#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 -#: website/doctype/website_slideshow/website_slideshow.js:18 -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Amended Document Naming Settings' -#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json -msgctxt "Amended Document Naming Settings" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "DocType" -msgid "DocType" -msgstr "DocType" - #. Group in Module Def's connections -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "DocType" -msgstr "DOCTYPE" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "DocType" -msgstr "DocType" - +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#. Label of a Link field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "DocType" -msgstr "DocType" - +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "DocType" -msgstr "DocType" - -#. Label of a Link field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" -msgid "DocType" -msgstr "DocType" - +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "DocType" +msgstr "" -#: core/doctype/doctype/doctype.py:1528 +#: frappe/core/doctype/doctype/doctype.py:1577 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} yang disediakan untuk bidang {1} harus memiliki minimal satu bidang Tautan" #. Name of a DocType -#: core/doctype/doctype_action/doctype_action.json -msgid "DocType Action" -msgstr "Tindakan DocType" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Action" msgstr "Tindakan DocType" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "DocType Event" -msgstr "Acara DocType" +msgstr "" #. Name of a DocType -#: custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json msgid "DocType Layout" msgstr "" #. Name of a DocType -#: custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json msgid "DocType Layout Field" msgstr "" #. Name of a DocType -#: core/doctype/doctype_link/doctype_link.json -msgid "DocType Link" -msgstr "Tautan DocType" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Link" msgstr "Tautan DocType" -#: core/doctype/doctype/doctype_list.js:10 -msgid "DocType Name" -msgstr "" - #. Name of a DocType -#: core/doctype/doctype_state/doctype_state.json -msgid "DocType State" -msgstr "" - #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType State" msgstr "" -#. Label of a Select field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 msgid "DocType View" -msgstr "Tampilan DocType" +msgstr "" -#: core/doctype/doctype/doctype.py:646 +#: frappe/core/doctype/doctype/doctype.py:656 msgid "DocType can not be merged" msgstr "DocType tidak dapat digabungkan" -#: core/doctype/doctype/doctype.py:640 +#: frappe/core/doctype/doctype/doctype.py:650 msgid "DocType can only be renamed by Administrator" msgstr "DOCTYPE hanya dapat diganti oleh Administrator" -#: integrations/doctype/webhook/webhook.py:79 +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:79 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType harus Submittable untuk Doc Event yang dipilih" -#: client.py:421 +#: frappe/client.py:403 msgid "DocType must be a string" msgstr "" -#: public/js/form_builder/store.js:149 +#: frappe/public/js/form_builder/store.js:154 msgid "DocType must have atleast one field" msgstr "" -#: core/doctype/log_settings/log_settings.py:57 +#: frappe/core/doctype/log_settings/log_settings.py:57 msgid "DocType not supported by Log Settings." msgstr "" #. Description of the 'Document Type' (Link) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "DocType on which this Workflow is applicable." -msgstr "DocType yang menerapkan Alur Kerja ini." +msgstr "" -#: public/js/frappe/views/kanban/kanban_settings.js:4 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" msgstr "" -#: modules/utils.py:161 +#: frappe/modules/utils.py:175 msgid "DocType {0} does not exist." msgstr "" -#: modules/utils.py:224 +#: frappe/modules/utils.py:238 msgid "DocType {} not found" msgstr "" -#: core/doctype/doctype/doctype.py:1009 +#: frappe/core/doctype/doctype/doctype.py:1028 msgid "DocType's name should not start or end with whitespace" msgstr "Nama DocType tidak boleh dimulai atau diakhiri dengan spasi" -#: core/doctype/doctype/doctype.js:70 -msgid "DocTypes can not be modified, please use {0} instead" +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:645 +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 msgid "Doctype" msgstr "DOCTYPE" -#. Label of a Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "Doctype" -msgstr "DOCTYPE" - -#: core/doctype/doctype/doctype.py:1004 +#: frappe/core/doctype/doctype/doctype.py:1022 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" -#: public/js/frappe/list/bulk_operations.js:3 +#: frappe/public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" msgstr "Jenis dokumen diperlukan" -#: public/js/frappe/views/workspace/workspace.js:1303 -msgid "Doctype with same route already exist. Please choose different title." +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" msgstr "" -#. Label of a Dynamic Link field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Document" -msgstr "Dokumen" - -#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Link field in DocType 'Notification Subscribed Document' -#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json -msgctxt "Notification Subscribed Document" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Dynamic Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "Document" -msgstr "Dokumen" - -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Actions" -msgstr "Tindakan Dokumen" +msgstr "" +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' #. Name of a DocType -#: email/doctype/document_follow/document_follow.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json msgid "Document Follow" msgstr "Ikuti Dokumen" -#. Label of a Section Break field in DocType 'User' -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Document Follow" -msgstr "Ikuti Dokumen" - -#: desk/form/document_follow.py:84 +#: frappe/desk/form/document_follow.py:94 msgid "Document Follow Notification" msgstr "Dokumen Ikuti Pemberitahuan" -#. Label of a Data field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Document Link" -msgstr "Tautan Dokumen" +msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Document Linking" msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Links" -msgstr "Tautan Dokumen" +msgstr "" -#: core/doctype/doctype/doctype.py:1162 +#: frappe/core/doctype/doctype/doctype.py:1211 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1182 +#: frappe/core/doctype/doctype/doctype.py:1231 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: core/doctype/doctype/doctype.py:1145 +#: frappe/core/doctype/doctype/doctype.py:1194 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: core/doctype/doctype/doctype.py:1151 +#: frappe/core/doctype/doctype/doctype.py:1200 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:36 -#: public/js/frappe/form/form_tour.js:58 +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the document_name (Data) field in DocType 'Transaction Log' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 msgid "Document Name" msgstr "Dokumen Nama" -#. Label of a Dynamic Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Dynamic Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Document Name" -msgstr "Dokumen Nama" - -#. Label of a Data field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" -msgid "Document Name" -msgstr "Dokumen Nama" - -#: client.py:424 +#: frappe/client.py:406 msgid "Document Name must be a string" msgstr "" #. Name of a DocType -#: core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" msgstr "Aturan Penamaan Dokumen" #. Name of a DocType -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" msgstr "Kondisi Aturan Penamaan Dokumen" #. Name of a DocType -#: core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" msgstr "" -#: model/document.py:1519 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "dokumen Antri" -#: core/doctype/deleted_document/deleted_document_list.js:38 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 msgid "Document Restoration Summary" msgstr "Ringkasan Restorasi Dokumen" -#: core/doctype/deleted_document/deleted_document.py:67 +#: frappe/core/doctype/deleted_document/deleted_document.py:68 msgid "Document Restored" msgstr "Dokumen dipulihkan" -#: public/js/frappe/widgets/onboarding_widget.js:359 -#: public/js/frappe/widgets/onboarding_widget.js:401 -#: public/js/frappe/widgets/onboarding_widget.js:420 -#: public/js/frappe/widgets/onboarding_widget.js:439 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Document Saved" msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Document Share" -msgstr "Berbagi Dokumen" +msgstr "" #. Name of a DocType -#: core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/document_share_key/document_share_key.json msgid "Document Share Key" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Document Share Key Expiry (in Days)" msgstr "" #. Name of a report #. Label of a Link in the Users Workspace -#: core/report/document_share_report/document_share_report.json -#: core/workspace/users/users.json +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json msgid "Document Share Report" msgstr "Dokumen Saham Laporkan" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "Document States" -msgstr "Dokumen Negara" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Document States" -msgstr "Dokumen Negara" - -#. Label of a Table field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "Document States" -msgstr "Dokumen Negara" - -#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199 -#: public/js/frappe/model/model.js:127 +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 msgid "Document Status" msgstr "Dokumen Status" -#. Label of a Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Tag" -msgstr "Tag dokumen" +msgstr "" -#. Label of a Data field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Document Title" -msgstr "Judul dokumen" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:26 -#: core/page/permission_manager/permission_manager.js:49 -#: core/page/permission_manager/permission_manager.js:211 -#: core/page/permission_manager/permission_manager.js:432 -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Global Search DocType' -#: desk/doctype/global_search_doctype/global_search_doctype.json -msgctxt "Global Search DocType" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' #. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Jenis Dokumen" -#. Label of a Data field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Session Default' -#: core/doctype/session_default/session_default.json -msgctxt "Session Default" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Tag Link' -#: desk/doctype/tag_link/tag_link.json -msgctxt "Tag Link" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'User Select Document Type' -#: core/doctype/user_select_document_type/user_select_document_type.json -msgctxt "User Select Document Type" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#. Label of a Link field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "Document Type" -msgstr "Jenis Dokumen" - -#: desk/doctype/number_card/number_card.py:55 +#: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" msgstr "" -#: permissions.py:149 +#: frappe/permissions.py:149 msgid "Document Type is not importable" msgstr "Jenis Dokumen tidak dapat diimpor" -#: permissions.py:145 +#: frappe/permissions.py:145 msgid "Document Type is not submittable" msgstr "Jenis Dokumen tidak dapat dikirim" -#. Label of a Link field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Document Type to Track" -msgstr "Jenis Dokumen untuk Dilacak" +msgstr "" -#: desk/doctype/global_search_settings/global_search_settings.py:39 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." msgstr "Jenis Dokumen {0} telah diulang." -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types" -msgstr "Jenis Dokumen" +msgstr "" -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types (Select Permissions Only)" msgstr "" -#. Label of a Section Break field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "Document Types and Permissions" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:162 +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" -#: public/js/frappe/list/list_view.js:1054 +#: frappe/desk/form/document_follow.py:56 +msgid "Document follow is not enabled for this user." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1157 msgid "Document has been cancelled" msgstr "" -#: public/js/frappe/list/list_view.js:1053 +#: frappe/public/js/frappe/list/list_view.js:1156 msgid "Document has been submitted" msgstr "" -#: public/js/frappe/list/list_view.js:1052 +#: frappe/public/js/frappe/list/list_view.js:1155 msgid "Document is in draft state" msgstr "" -#: core/doctype/communication/communication.js:182 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:182 msgid "Document not Relinked" msgstr "" -#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145 +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 msgid "Document renamed from {0} to {1}" msgstr "Dokumen diubah namanya dari {0} ke {1}" -#: public/js/frappe/form/toolbar.js:154 +#: frappe/public/js/frappe/form/toolbar.js:164 msgid "Document renaming from {0} to {1} has been queued" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:397 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Document type is required to create a dashboard chart" msgstr "Jenis dokumen diperlukan untuk membuat bagan dasbor" -#: core/doctype/deleted_document/deleted_document.py:44 +#: frappe/core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" msgstr "Dokumen {0} Sudah Dipulihkan" -#: workflow/doctype/workflow_action/workflow_action.py:203 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 msgid "Document {0} has been set to state {1} by {2}" msgstr "Dokumen {0} telah diatur untuk menyatakan {1} oleh {2}" -#: client.py:443 +#: frappe/client.py:430 msgid "Document {0} {1} does not exist" msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" -msgstr "Tautan Dokumentasi" +msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Documentation URL" -msgstr "URL Dokumentasi" +msgstr "" -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Documentation URL" -msgstr "URL Dokumentasi" +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" -#: core/doctype/deleted_document/deleted_document_list.js:25 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" msgstr "Dokumen berhasil dipulihkan" -#: core/doctype/deleted_document/deleted_document_list.js:33 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 msgid "Documents that failed to restore" msgstr "Dokumen yang gagal dipulihkan" -#: core/doctype/deleted_document/deleted_document_list.js:29 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 msgid "Documents that were already restored" msgstr "Dokumen yang sudah dipulihkan" #. Name of a DocType -#: core/doctype/domain/domain.json +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json msgid "Domain" -msgstr "Domain" +msgstr "" -#. Label of a Data field in DocType 'Domain' -#: core/doctype/domain/domain.json -msgctxt "Domain" -msgid "Domain" -msgstr "Domain" - -#. Label of a Link field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Domain" -msgstr "Domain" - -#. Label of a Link field in DocType 'Has Domain' -#: core/doctype/has_domain/has_domain.json -msgctxt "Has Domain" -msgid "Domain" -msgstr "Domain" - -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Domain Name" msgstr "" #. Name of a DocType -#: core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" msgstr "Pengaturan Domain" -#. Label of a HTML field in DocType 'Domain Settings' -#: core/doctype/domain_settings/domain_settings.json -msgctxt "Domain Settings" +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domains HTML" -msgstr "Domain HTML" +msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "Jangan tag HTML Encode HTML seperti <script> atau hanya karakter seperti <atau>, karena mereka dapat sengaja digunakan dalam bidang ini" +msgstr "" -#: public/js/frappe/data_import/import_preview.js:268 +#: frappe/public/js/frappe/data_import/import_preview.js:272 msgid "Don't Import" msgstr "Jangan Impor" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Don't Override Status" -msgstr "Jangan Override Status" +msgstr "" -#. Label of a Check field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Don't Override Status" -msgstr "Jangan Override Status" - -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Don't Send Emails" -msgstr "Jangan Kirim Email" - -#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize -#. Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" msgstr "" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" msgstr "" -#: www/login.html:119 www/login.html:135 www/update-password.html:34 +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" -#: public/js/frappe/ui/messages.js:233 -#: public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "Matang" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Donut" -msgstr "Donat" +msgstr "" -#: core/doctype/file/file.js:5 -#: email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Unduh" -#: public/js/frappe/views/reports/report_utils.js:229 +#: frappe/public/js/frappe/views/reports/report_utils.js:237 msgctxt "Export report" msgid "Download" msgstr "Unduh" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 msgid "Download Backups" msgstr "Unduh Cadangan" -#: templates/emails/download_data.html:6 +#: frappe/templates/emails/download_data.html:6 msgid "Download Data" msgstr "Unduh Data" -#: desk/page/backups/backups.js:12 +#: frappe/desk/page/backups/backups.js:14 msgid "Download Files Backup" msgstr "Unduh File Cadangan" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid "Download Link" msgstr "Unduh Tautan" -#: public/js/frappe/views/reports/query_report.js:764 +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "Unduh PDF" + +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Unduh Laporan" -#. Label of a Button field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Download Template" msgstr "Unduh Template" -#: website/doctype/personal_data_download_request/personal_data_download_request.py:60 -#: website/doctype/personal_data_download_request/personal_data_download_request.py:68 -#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" msgstr "Unduh Data Anda" -#: public/js/frappe/model/indicator.js:73 -#: public/js/frappe/ui/filters/filter.js:493 +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 msgid "Draft" msgstr "Draf" -#: public/js/frappe/views/workspace/blocks/header.js:46 -#: public/js/frappe/views/workspace/blocks/paragraph.js:136 -#: public/js/frappe/views/workspace/blocks/spacer.js:44 -#: public/js/frappe/views/workspace/workspace.js:565 -#: public/js/frappe/widgets/base_widget.js:33 +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 msgid "Drag" msgstr "" -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Dropbox Access Token" -msgstr "Token Akses Dropbox" - -#. Label of a Password field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Dropbox Refresh Token" +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" msgstr "" -#. Name of a DocType -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgid "Dropbox Settings" -msgstr "Pengaturan dropbox" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" -#. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Dropbox Settings" -msgid "Dropbox Settings" -msgstr "Pengaturan dropbox" +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:348 -msgid "Dropbox Setup" -msgstr "dropbox Pengaturan" +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" -#. Label of a Section Break field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Dropdowns" -msgstr "Dropdown" +msgstr "" -#. Label of a Date field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json msgid "Due Date" msgstr "Tanggal Jatuh Tempo" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Due Date Based On" -msgstr "Tanggal Jatuh Tempo Berdasarkan" +msgstr "" -#: public/js/frappe/form/toolbar.js:377 -#: public/js/frappe/views/workspace/workspace.js:808 -#: public/js/frappe/views/workspace/workspace.js:975 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Duplikat" -#: printing/doctype/print_format_field_template/print_format_field_template.py:52 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" msgstr "" -#: public/js/frappe/list/list_filter.js:137 +#: frappe/public/js/frappe/list/list_filter.js:144 msgid "Duplicate Filter Name" msgstr "Nama filter duplikat" -#: model/base_document.py:563 model/rename_doc.py:113 +#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Nama Duplikat" -#: public/js/frappe/views/workspace/workspace.js:547 -#: public/js/frappe/views/workspace/workspace.js:809 -msgid "Duplicate Workspace" +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" msgstr "" -#: public/js/frappe/form/form.js:208 +#: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:990 -msgid "Duplicate of {0} named as {1} is created successfully" +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Duration" -msgstr "Lamanya" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Duration" -msgstr "Lamanya" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Duration" -msgstr "Lamanya" - -#. Label of a Float field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Duration" -msgstr "Lamanya" - -#. Label of a Float field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Duration" -msgstr "Lamanya" - +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Duration" -msgstr "Lamanya" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" msgstr "Lamanya" -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Dynamic Filters" -msgstr "Filter Dinamis" - -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Dynamic Filters JSON" -msgstr "Filter Dinamis JSON" - -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Dynamic Filters JSON" -msgstr "Filter Dinamis JSON" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Dynamic Filters Section" -msgstr "Bagian Filter Dinamis" - -#. Name of a DocType -#: core/doctype/dynamic_link/dynamic_link.json -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Dynamic Link" -msgstr "Dynamic Link" - -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Dynamic Report Filters" -msgstr "Filter Laporan Dinamis" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Dynamic Route" -msgstr "Rute Dinamis" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Dynamic Template" -msgstr "Template Dinamis" - -#. Description of the Onboarding Step 'Setup Naming Series' -#: custom/onboarding_step/naming_series/naming_series.json -msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n" +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" msgstr "" -#: core/page/dashboard_view/dashboard_view.js:169 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85 -#: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/form/footer/form_timeline.js:638 -#: public/js/frappe/form/toolbar.js:672 -#: public/js/frappe/views/reports/query_report.js:809 -#: public/js/frappe/views/reports/query_report.js:1617 -#: public/js/frappe/views/workspace/workspace.js:448 -#: public/js/frappe/views/workspace/workspace.js:802 -#: public/js/frappe/widgets/base_widget.js:64 -#: public/js/frappe/widgets/chart_widget.js:298 -#: public/js/frappe/widgets/number_card_widget.js:314 -#: templates/discussions/reply_card.html:29 -#: workflow/page/workflow_builder/workflow_builder.js:46 -#: workflow/page/workflow_builder/workflow_builder.js:84 -msgid "Edit" -msgstr "Edit" +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" -#: public/js/frappe/list/list_view.js:1943 -msgctxt "Button in list view actions menu" -msgid "Edit" -msgstr "Edit" +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:669 +#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/templates/address_list.html:13 +#: frappe/public/js/frappe/form/templates/contact_list.html:13 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "Edit" +msgstr "" -#: templates/emails/auto_email_report.html:63 +#: frappe/public/js/frappe/list/list_view.js:2111 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:345 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" msgstr "Edit Pengaturan Laporan Surel Otomatis" -#: printing/page/print_format_builder/print_format_builder.js:719 +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 msgid "Edit Custom HTML" msgstr "Mengedit Custom HTML" -#: public/js/frappe/form/toolbar.js:546 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "mengedit DocType" -#: public/js/frappe/list/list_view.js:1691 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "mengedit DocType" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42 -#: workflow/page/workflow_builder/workflow_builder.js:42 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" msgstr "" -#: printing/doctype/print_format/print_format.js:28 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:28 msgid "Edit Format" msgstr "Mengedit Format" -#: public/js/frappe/form/quick_entry.js:275 +#: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:602 +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 msgid "Edit Heading" msgstr "Mengedit Heading" -#: public/js/print_format_builder/print_format_builder.bundle.js:24 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" msgstr "" -#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27 +#: frappe/www/me.html:38 msgid "Edit Profile" -msgstr "Edit Profile" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:173 +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" -msgstr "Edit Properties" - -#: website/doctype/web_form/templates/web_form.html:20 -msgid "Edit Response" msgstr "" -#: public/js/frappe/utils/web_template.js:5 -msgid "Edit Values" -msgstr "Edit Nilai" - -#. Label of a Button field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" -msgid "Edit Values" -msgstr "Edit Nilai" - -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Edit Values" -msgstr "Edit Nilai" - -#: public/js/frappe/views/workspace/workspace.js:803 -msgid "Edit Workspace" +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" msgstr "" -#: desk/doctype/note/note.js:11 +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "Edit Nilai" + +#: frappe/desk/doctype/note/note.js:11 msgid "Edit mode" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:713 +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 msgid "Edit to add content" msgstr "Edit untuk menambahkan konten" -#: workflow/doctype/workflow/workflow.js:18 +#: frappe/public/js/frappe/web_form/web_form.js:446 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: public/js/frappe/views/reports/report_view.js:652 +#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "Edit {0}" +msgstr "" -#: core/doctype/doctype/doctype_list.js:41 +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "diedit Grid" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Editable Grid" -msgstr "diedit Grid" +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Editable Grid" -msgstr "diedit Grid" - -#: public/js/print_format_builder/print_format_builder.bundle.js:14 -#: public/js/workflow_builder/workflow_builder.bundle.js:20 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 msgid "Editing {0}" msgstr "" #. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "Misalnya. smsgateway.com / api / send_sms.cgi" +msgstr "" -#: rate_limiter.py:139 +#: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Element Selector" msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json -#: core/doctype/success_action/success_action.js:57 -#: email/doctype/newsletter/newsletter.js:156 -#: public/js/frappe/form/success_action.js:85 -#: public/js/frappe/form/toolbar.js:341 -#: templates/includes/comments/comments.html:25 templates/signup.html:9 -#: www/login.html:7 www/login.py:93 -msgid "Email" -msgstr "Surel" - #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email" -msgstr "Surel" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Email" -msgstr "Surel" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Email" -msgstr "Surel" - -#. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Email" -msgstr "Surel" - -#. Label of a Data field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Email" -msgstr "Surel" - +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Surel" -#. Label of a Data field in DocType 'User' -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Email" -msgstr "Surel" - -#. Name of a DocType -#: core/doctype/communication/communication.js:199 -#: email/doctype/email_account/email_account.json -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email Account" -msgstr "Akun Email" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Account" +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Email Account" msgstr "Akun Email" -#. Linked DocType in Email Domain's connections -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "Email Account" -msgstr "Akun Email" - -#. Label of a Link field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Email Account" -msgstr "Akun Email" - -#: email/doctype/email_account/email_account.py:298 +#: frappe/email/doctype/email_account/email_account.py:343 msgid "Email Account Disabled." msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the email_account_name (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Email Account Name" -msgstr "Nama akun surel" +msgstr "" -#: core/doctype/user/user.py:697 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "Akun surel ditambahkan beberapa kali" -#: email/smtp.py:42 +#: frappe/email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11 -#: www/login.html:164 www/login.html:196 -msgid "Email Address" -msgstr "Alamat email" +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Email Address" -msgstr "Alamat email" - -#. Label of a Data field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 msgid "Email Address" msgstr "Alamat email" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Email Address whose Google Contacts are to be synced." -msgstr "Alamat Email yang Kontak Google-nya harus disinkronkan." +msgstr "" -#: email/doctype/email_group/email_group.js:43 +#: frappe/email/doctype/email_group/email_group.js:43 msgid "Email Addresses" msgstr "Alamat Surel" -#. Description of the 'Send Notification to' (Small Text) field in DocType -#. 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Email Addresses" -msgstr "Alamat Surel" - -#. Name of a DocType -#: email/doctype/email_domain/email_domain.json -msgid "Email Domain" -msgstr "Domain Email" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Domain" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Email Domain" msgstr "Domain Email" #. Name of a DocType -#: email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" msgstr "Tanda Antrian Surel" -#. Label of a Small Text field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "Alamat Footer Surel" - -#. Name of a DocType -#: email/doctype/email_group/email_group.json -msgid "Email Group" -msgstr "Kelompok Surel" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Group" -msgid "Email Group" -msgstr "Kelompok Surel" - -#. Label of a Link field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Email Group" -msgstr "Kelompok Surel" - -#. Label of a Link field in DocType 'Newsletter Email Group' -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgctxt "Newsletter Email Group" +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group" msgstr "Kelompok Surel" #. Name of a DocType -#: email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group Member" msgstr "Anggota Kelompok Surel" -#. Linked DocType in Email Group's connections -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Email Group Member" -msgstr "Anggota Kelompok Surel" +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "" -#. Label of a Data field in DocType 'Contact Email' -#: contacts/doctype/contact_email/contact_email.json -msgctxt "Contact Email" +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json msgid "Email ID" -msgstr "ID Email" +msgstr "" -#. Label of a Data field in DocType 'Email Rule' -#: email/doctype/email_rule/email_rule.json -msgctxt "Email Rule" -msgid "Email ID" -msgstr "ID Email" - -#. Label of a Data field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Email ID" -msgstr "ID Email" - -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Email IDs" -msgstr "Email Id" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Id Email" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Email Inbox" -msgstr "Kotak Masuk Email" +msgstr "" #. Name of a DocType -#: email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue" msgstr "Antrian Surel" #. Name of a DocType -#: email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Email Queue Recipient" msgstr "Penerima Antrian Surel" -#: email/queue.py:163 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" -#. Label of a HTML field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Email Reply Help" -msgstr "Bantuan Balasan Email" +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the email_reply_help (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Email Reply Help" +msgstr "" + +#. Label of the email_retry_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Email Retry Limit" msgstr "" #. Name of a DocType -#: email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_rule/email_rule.json msgid "Email Rule" msgstr "Aturan Surel" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the email_sent (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" -msgstr "Email Terkirim" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Email Sent" -msgstr "Email Terkirim" - -#. Label of a Datetime field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Email Sent At" msgstr "" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email Settings" -msgstr "Pengaturan Email" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Section Break field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Email Settings" -msgstr "Pengaturan Email" - -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Email Signature" -msgstr "Email Signature" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Email Status" -msgstr "Status Surel" +msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the email_sync_option (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Email Sync Option" -msgstr "Opsi Sinkronisasi Surel" - -#. Name of a DocType -#: email/doctype/email_template/email_template.json -#: public/js/frappe/views/communication.js:91 -msgid "Email Template" -msgstr "Template Email" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Email Template" -msgstr "Template Email" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Email Template" +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "Template Email" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Email Threads on Assigned Document" msgstr "" -#. Label of a Small Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the email_to (Small Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email To" -msgstr "Surel Ke" +msgstr "" #. Name of a DocType -#: email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" msgstr "Email Berhenti berlangganan" -#: core/doctype/communication/communication.js:342 +#: frappe/core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" msgstr "Email telah ditandai sebagai spam" -#: core/doctype/communication/communication.js:355 +#: frappe/core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" msgstr "Email telah dipindahkan ke sampah" -#: public/js/frappe/views/communication.js:707 +#: frappe/core/doctype/user/user.js:272 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan)" -#: utils/oauth.py:163 +#: frappe/utils/oauth.py:163 msgid "Email not verified with {0}" msgstr "Email tidak diverifikasi dengan {0}" -#: email/queue.py:141 +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "" + +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "Surel diabaikan sementara" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Emails will be sent with next possible workflow actions" -msgstr "Email akan dikirim dengan tindakan alur kerja berikutnya" +msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Enable" -msgstr "Aktifkan" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Enable" -msgstr "Aktifkan" +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "" -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Enable" -msgstr "Aktifkan" - -#. Label of a Check field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "Enable" -msgstr "Aktifkan" - -#: automation/doctype/auto_repeat/auto_repeat.py:116 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Aktifkan Perbolehkan Ulangi Otomatis untuk doctype {0} di Customize Form" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the enable_auto_reply (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Enable Auto Reply" -msgstr "Aktifkan Auto Reply" +msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Enable Automatic Backup" -msgstr "Aktifkan Backup Otomatis" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the enable_automatic_linking (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Enable Automatic Linking in Documents" -msgstr "Aktifkan Penghubungan Otomatis di Dokumen" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Enable Comments" -msgstr "Aktifkan Komentar" +msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + +#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Enable Email Notifications" -msgstr "Aktifkan Pemberitahuan Email" +msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:89 -#: integrations/doctype/google_contacts/google_contacts.py:35 -#: website/doctype/website_settings/website_settings.py:129 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 msgid "Enable Google API in Google Settings." msgstr "Aktifkan Google API di Pengaturan Google." -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" msgstr "" -#: email/doctype/email_account/email_account.py:194 +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 msgid "Enable Incoming" msgstr "Aktifkan masuk" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Enable Incoming" -msgstr "Aktifkan masuk" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Onboarding" -msgstr "Aktifkan Onboarding" +msgstr "" -#: email/doctype/email_account/email_account.py:201 +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 msgid "Enable Outgoing" msgstr "Aktifkan Keluar" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Enable Outgoing" -msgstr "Aktifkan Keluar" - -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" -msgid "Enable Outgoing" -msgstr "Aktifkan Keluar" - -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Password Policy" -msgstr "Aktifkan Kebijakan Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Enable Prepared Report" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Print Server" -msgstr "Aktifkan Server Cetak" +msgstr "" -#. Label of a Check field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Enable Rate Limit" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Raw Printing" -msgstr "Aktifkan Pencetakan Mentah" +msgstr "" -#: core/doctype/report/report.js:36 +#: frappe/core/doctype/report/report.js:39 msgid "Enable Report" msgstr "Aktifkan Laporan" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Scheduled Jobs" -msgstr "Aktifkan Jobs Terjadwal" +msgstr "" -#: core/doctype/rq_job/rq_job_list.js:23 +#: frappe/core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" msgstr "" -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Enable Security" -msgstr "Aktifkan Keamanan" +msgstr "" -#. Label of a Check field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Enable Social Login" -msgstr "Aktifkan Login Sosial" +msgstr "" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Enable Social Sharing" -msgstr "Aktifkan Berbagi Sosial" +msgstr "" -#: website/doctype/website_settings/website_settings.js:139 +#: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Aktifkan Tampilan Halaman Pelacakan" -#: twofactor.py:456 +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:433 msgid "Enable Two Factor Auth" msgstr "Aktifkan Dua Faktor Auth" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Enable Two Factor Auth" -msgstr "Aktifkan Dua Faktor Auth" - -#. Title of an Onboarding Step -#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json -msgid "Enable Website Tracking" -msgstr "" - -#: printing/doctype/print_format_field_template/print_format_field_template.py:27 +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" msgstr "" -#: website/doctype/web_template/web_template.py:33 +#: frappe/website/doctype/web_template/web_template.py:33 msgid "Enable developer mode to create a standard Web Template" msgstr "Aktifkan mode pengembang untuk membuat Template Web standar" #. Description of the 'Enable Email Notification' (Check) field in DocType #. 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "Enable email notification for any comment or likes received on your Blog Post." msgstr "" #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "" -"Enable if on click\n" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" "opens modal." msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the enable_view_tracking (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Enable in-app website tracking" msgstr "" -#: public/js/frappe/model/indicator.js:106 -#: public/js/frappe/model/indicator.js:117 +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Diaktifkan" -#. Label of a Check field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Enabled" -msgstr "Diaktifkan" - -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Enabled" -msgstr "Diaktifkan" - -#: core/doctype/rq_job/rq_job_list.js:29 +#: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" msgstr "" -#: email/doctype/email_account/email_account.py:896 +#: frappe/email/doctype/email_account/email_account.py:1010 msgid "Enabled email inbox for user {0}" msgstr "Kotak masuk email yang diaktifkan untuk pengguna {0}" -#: core/doctype/server_script/server_script.py:262 -msgid "Enabled scheduled execution for script {0}" -msgstr "Mengaktifkan eksekusi terjadwal untuk skrip {0}" - -#. Description of the 'Is Calendar and Gantt' (Check) field in DocType -#. 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Enables Calendar and Gantt views." -msgstr "" - #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enables Calendar and Gantt views." msgstr "" -#: email/doctype/email_account/email_account.js:232 +#: frappe/email/doctype/email_account/email_account.js:295 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" msgstr "" -#. Description of the 'Queue in Background (BETA)' (Check) field in DocType -#. 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Enabling this will submit documents in background" +#. Description of a DocType +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enabling this will submit documents in background" msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Encrypt Backups" msgstr "" -#: utils/password.py:184 +#: frappe/utils/password.py:197 msgid "Encryption key is in invalid format!" msgstr "" -#: utils/password.py:198 +#: frappe/utils/password.py:212 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" -#: public/js/frappe/utils/common.js:416 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json msgid "End Date" msgstr "Tanggal Berakhir" -#. Label of a Date field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Datetime field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "End Date" -msgstr "Tanggal Berakhir" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the end_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "End Date Field" -msgstr "Bidang tanggal akhir" +msgstr "" -#: website/doctype/web_page/web_page.py:207 +#: frappe/website/doctype/web_page/web_page.py:208 msgid "End Date cannot be before Start Date!" msgstr "Tanggal Akhir tidak boleh sebelum Tanggal Mulai!" -#. Label of a Datetime field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Ended At" msgstr "" -#. Label of a Datetime field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Ended At" -msgstr "" - -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Endpoint URL" -msgstr "URL titik akhir" - -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" msgstr "" -#. Label of a Datetime field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Ends on" -msgstr "Berakhir pada" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Energy Point" -msgstr "Titik Energi" +msgstr "" -#. Name of a DocType -#: social/doctype/energy_point_log/energy_point_log.json -msgid "Energy Point Log" -msgstr "Energy Point Log" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Energy Point Log" -msgstr "Energy Point Log" - -#. Name of a DocType -#: social/doctype/energy_point_rule/energy_point_rule.json -msgid "Energy Point Rule" -msgstr "Aturan Titik Energi" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Energy Point Rule" -msgstr "Aturan Titik Energi" - -#. Name of a DocType -#: social/doctype/energy_point_settings/energy_point_settings.json -msgid "Energy Point Settings" -msgstr "Pengaturan Titik Energi" - -#: desk/doctype/notification_log/notification_log.py:159 -msgid "Energy Point Update on {0}" -msgstr "Pembaruan Titik Energi pada {0}" - -#: templates/emails/energy_points_summary.html:39 -msgid "Energy Points" -msgstr "Poin Energi" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Energy Points" -msgstr "Poin Energi" - -#. Label of a Data field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Enqueued By" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:105 +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 msgid "Ensure the user and group search paths are correct." msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:92 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 msgid "Enter Client Id and Client Secret in Google Settings." msgstr "Masukkan Id Klien dan Rahasia Klien di Pengaturan Google." -#: public/js/frappe/views/communication.js:663 +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Masukkan Penerima Surel" -#. Label of a Link field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Enter Form Type" -msgstr "Masukkan Form Type" +msgstr "" -#: public/js/frappe/ui/messages.js:94 +#: frappe/public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" msgid "Enter Value" msgstr "Masukkan Nilai" -#: public/js/frappe/form/form_tour.js:56 +#: frappe/public/js/frappe/form/form_tour.js:60 msgid "Enter a name for this {0}" msgstr "" #. Description of the 'User Defaults' (Table) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." -msgstr "Masukkan bidang nilai default (kunci) dan nilai-nilai. Jika Anda menambahkan beberapa nilai untuk field, yang pertama akan dijemput. Default ini juga digunakan untuk mengatur "pertandingan" aturan izin. Untuk melihat daftar bidang, pergi ke "Customize Form"." +msgstr "" -#: public/js/frappe/views/file/file_view.js:111 +#: frappe/public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" msgstr "Masukkan nama folder" #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "Entrikan parameter url statis di sini (Misalnya pengirim = ERPNext, username = ERPNext, password = 1234 dll)" +msgstr "" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "Entrikan parameter url untuk pesan" +msgstr "" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "Entrikan parameter url untuk penerima nos" +msgstr "" -#: public/js/frappe/ui/messages.js:334 +#: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" msgstr "Masukkan password Anda" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 msgid "Entity Name" msgstr "Nama kesatuan" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 msgid "Entity Type" msgstr "Jenis Entitas" -#: public/js/frappe/ui/filters/filter.js:16 +#: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "Equals" - -#: desk/page/backups/backups.js:35 model/base_document.py:703 -#: model/base_document.py:708 public/js/frappe/ui/messages.js:22 -msgid "Error" -msgstr "Kesalahan" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Error" -msgstr "Kesalahan" - #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Error" -msgstr "Kesalahan" - -#. Option for the 'Status' (Select) field in DocType 'Email Queue' -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Error" -msgstr "Kesalahan" - -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Error" -msgstr "Kesalahan" - +#. Label of the error (Code) field in DocType 'Error Log' #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" msgstr "Kesalahan" -#: public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:240 msgctxt "Title of error message in web form" msgid "Error" msgstr "Kesalahan" -#. Label of a Text field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Error" -msgstr "Kesalahan" - -#: www/error.html:34 -msgid "Error Code: {0}" -msgstr "Kode Kesalahan: {0}" - #. Name of a DocType -#: core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log.json msgid "Error Log" msgstr "Catatan eror" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Error Log" +#: frappe/core/workspace/build/build.json msgid "Error Logs" msgstr "" -#. Label of a Text field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" -msgstr "Pesan eror" +msgstr "" -#: public/js/frappe/form/print_utils.js:126 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

    You need to have QZ Tray application installed and running, to use the Raw Print feature.

    Click here to Download and install QZ Tray.
    Click here to learn more about Raw Printing." msgstr "Kesalahan menyambung ke Aplikasi Baki QZ ...

    Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

    Klik di sini untuk Mengunduh dan menginstal Baki QZ .
    Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." -#: email/doctype/email_domain/email_domain.py:32 +#: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Error connecting via IMAP/POP3: {e}" msgstr "" -#: email/doctype/email_domain/email_domain.py:33 +#: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Error connecting via SMTP: {e}" msgstr "" -#: email/doctype/email_domain/email_domain.py:98 +#: frappe/email/doctype/email_domain/email_domain.py:101 msgid "Error has occurred in {0}" msgstr "Galat telah terjadi di {0}" -#: public/js/frappe/form/script_manager.js:187 +#: frappe/public/js/frappe/form/script_manager.js:199 msgid "Error in Client Script" msgstr "" -#: public/js/frappe/form/script_manager.js:241 +#: frappe/public/js/frappe/form/script_manager.js:256 msgid "Error in Client Script." msgstr "" -#: email/doctype/notification/notification.py:391 -#: email/doctype/notification/notification.py:507 -#: email/doctype/notification/notification.py:513 +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:598 +#: frappe/email/doctype/notification/notification.py:735 +#: frappe/email/doctype/notification/notification.py:741 msgid "Error in Notification" msgstr "Kesalahan dalam Notifikasi" -#: utils/pdf.py:48 +#: frappe/utils/pdf.py:59 msgid "Error in print format on line {0}: {1}" msgstr "" -#: email/doctype/email_account/email_account.py:586 +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Kesalahan saat menyambung ke akun email {0}" -#: email/doctype/notification/notification.py:504 +#: frappe/email/doctype/notification/notification.py:732 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda." -#: model/document.py:808 -msgid "Error: Document has been modified after you have opened it" -msgstr "Kesalahan: Dokumen telah dimodifikasi setelah Anda membukanya" +#: frappe/model/base_document.py:803 +msgid "Error: Data missing in table {0}" +msgstr "" -#: model/base_document.py:716 +#: frappe/model/base_document.py:813 msgid "Error: Value missing for {0}: {1}" msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}" -#. Name of a DocType -#: desk/doctype/event/event.json -msgid "Event" -msgstr "Acara" +#: frappe/model/base_document.py:807 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Event" -msgstr "Acara" - +#. Name of a DocType #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json msgid "Event" msgstr "Acara" -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Event Category" -msgstr "Kategori Peristiwa" +msgstr "" -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Event Frequency" msgstr "" +#. Label of the event_participants (Table) field in DocType 'Event' #. Name of a DocType -#: desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json msgid "Event Participants" msgstr "Peserta Acara" -#. Label of a Table field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Event Participants" -msgstr "Peserta Acara" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Event Reminders" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:455 -#: integrations/doctype/google_calendar/google_calendar.py:539 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 msgid "Event Synced with Google Calendar." msgstr "Acara Disinkronkan dengan Kalender Google." -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json msgid "Event Type" -msgstr "Event Type" +msgstr "" -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Event Type" -msgstr "Event Type" +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" -#: desk/doctype/event/event.py:263 +#: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" msgstr "Acara Dalam Kalender Hari ini" -#. Description of the Onboarding Step 'Create Custom Fields' -#: custom/onboarding_step/custom_field/custom_field.json -msgid "" -"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n" -"\n" -"Once custom fields are added, you can use them for reports and analytics charts as well.\n" -msgstr "" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 msgid "Everyone" -msgstr "Semua orang" +msgstr "" #. Description of the 'Custom Options' (Code) field in DocType 'Dashboard #. Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" -msgstr "Contoh: "colors": ["# d1d8dd", "# ff5858"]" +msgstr "" -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Exact Copies" msgstr "" -#. Label of a HTML field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Example" -msgstr "Contoh" +msgstr "" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Example: \"/desk\"" -msgstr "Contoh: "/ desk"" +msgstr "" #. Description of the 'Path' (Data) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Example: #Tree/Account" -msgstr "Contoh: # Pohon / Akun" +msgstr "" #. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Example: 00001" -msgstr "Contoh: 00001" +msgstr "" #. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." msgstr "" #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Example: {{ subject }}" -msgstr "Contoh: {{subjek}}" +msgstr "" #. Option for the 'File Type' (Select) field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#: frappe/core/doctype/data_export/data_export.json msgid "Excel" -msgstr "Unggul" +msgstr "" -#: public/js/frappe/form/controls/password.js:91 +#: frappe/public/js/frappe/form/controls/password.js:90 msgid "Excellent" msgstr "" -#. Label of a Text field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Exception" -msgstr "Pengecualian" +msgstr "" -#. Label of a Code field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Exception" -msgstr "Pengecualian" - -#. Label of a Long Text field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Exception" -msgstr "Pengecualian" - -#: desk/doctype/system_console/system_console.js:17 -#: desk/doctype/system_console/system_console.js:22 +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json msgid "Execute" msgstr "Menjalankan" -#. Label of a Section Break field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Execute" -msgstr "Menjalankan" - -#: desk/doctype/system_console/system_console.js:10 +#: frappe/desk/doctype/system_console/system_console.js:10 msgid "Execute Console script" msgstr "Jalankan skrip Konsol" -#: desk/doctype/system_console/system_console.js:18 +#: frappe/public/js/frappe/ui/dropdown_console.js:125 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." msgstr "" -#: public/js/frappe/views/reports/query_report.js:1961 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Waktu Eksekusi: {0} dtk" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Executive" msgstr "" -#: public/js/frappe/widgets/base_widget.js:157 +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" msgstr "Memperluas" -#: public/js/frappe/form/controls/code.js:147 +#: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" msgstr "Memperluas" -#: public/js/frappe/views/treeview.js:125 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Melebarkan semua" -#. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Expert" -msgstr "Ahli" - -#. Label of a Datetime field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Expiration time" -msgstr "waktu berakhirnya" - -#. Label of a Datetime field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Expiration time" -msgstr "waktu berakhirnya" - -#. Label of a Date field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Expire Notification On" -msgstr "Berakhir Pemberitahuan On" - -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Expired" -msgstr "Expired" - -#. Label of a Int field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Expires In" -msgstr "Kadaluarsa dalam" - -#. Label of a Int field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Expires In" -msgstr "Kadaluarsa dalam" - -#. Label of a Date field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Expires On" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Expiry time of QR Code Image Page" -msgstr "Waktu kadaluwarsa QR Code Image Page" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" -#: core/doctype/recorder/recorder_list.js:42 -#: public/js/frappe/data_import/data_exporter.js:88 -#: public/js/frappe/data_import/data_exporter.js:239 -#: public/js/frappe/views/reports/query_report.js:1652 -#: public/js/frappe/views/reports/report_view.js:1552 +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Expired" +msgstr "" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "" + +#. Label of the expires_on (Date) field in DocType 'Document Share Key' +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Expires On" +msgstr "Kadaluarsa pada" + +#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 +#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Ekspor" -#: public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Ekspor" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Export" -msgstr "Ekspor" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Export" -msgstr "Ekspor" - -#: public/js/frappe/data_import/data_exporter.js:241 +#: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" msgstr "Ekspor 1 catatan" -#: public/js/frappe/views/reports/report_view.js:1563 -msgid "Export All {0} rows?" -msgstr "Ekspor Semua {0} baris?" - -#: custom/doctype/customize_form/customize_form.js:220 +#: frappe/custom/doctype/customize_form/customize_form.js:262 msgid "Export Custom Permissions" msgstr "Izin khusus ekspor" -#: custom/doctype/customize_form/customize_form.js:200 +#: frappe/custom/doctype/customize_form/customize_form.js:242 msgid "Export Customizations" msgstr "Kustomisasi ekspor" -#: public/js/frappe/data_import/data_exporter.js:14 -msgid "Export Data" -msgstr "Ekspor Data" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Data Export" +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" msgstr "Ekspor Data" -#: core/doctype/data_import/data_import.js:86 -#: public/js/frappe/data_import/import_preview.js:195 +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 msgid "Export Errored Rows" msgstr "Ekspor Baris yang Salah" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Export From" -msgstr "Ekspor Dari" +msgstr "" -#: core/doctype/data_import/data_import.js:535 +#: frappe/core/doctype/data_import/data_import.js:518 msgid "Export Import Log" msgstr "" -#: public/js/frappe/views/reports/report_utils.js:227 +#: frappe/public/js/frappe/views/reports/report_utils.js:235 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Laporan Ekspor: {0}" -#: public/js/frappe/data_import/data_exporter.js:26 +#: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" msgstr "Jenis ekspor" -#: public/js/frappe/views/file/file_view.js:154 +#: frappe/public/js/frappe/views/reports/report_view.js:1638 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1648 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 msgid "Export as zip" msgstr "" -#: public/js/frappe/utils/tools.js:11 +#: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor." #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" msgstr "" -#. Label of a Check field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Export without main header" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/data_import/data_exporter.js:247 msgid "Export {0} records" msgstr "Ekspor {0} catatan" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "Paparan Penerima" +msgstr "" +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression" msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Expression" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Expression (old style)" -msgstr "" - -#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression (old style)" msgstr "" #. Description of the 'Condition' (Data) field in DocType 'Notification #. Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "Expression, Opsional" +msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Extra Parameters" msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Facebook" -msgstr "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Failed" -msgstr "Gagal" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Failed" -msgstr "Gagal" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Failed" -msgstr "Gagal" - #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" msgstr "Gagal" -#. Label of a Int field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Failed Job Count" msgstr "" -#: model/workflow.py:305 +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py:306 msgid "Failed Transactions" msgstr "Transaksi Gagal" -#: utils/synchronization.py:46 +#: frappe/utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:360 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 msgid "Failed to change password." msgstr "Gagal mengubah kata sandi." -#: desk/page/setup_wizard/setup_wizard.js:220 +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 msgid "Failed to complete setup" msgstr "Gagal menyelesaikan penyiapan" -#: integrations/doctype/webhook/webhook.py:148 +#: frappe/integrations/doctype/webhook/webhook.py:137 msgid "Failed to compute request body: {}" msgstr "" -#: printing/doctype/network_printer_settings/network_printer_settings.py:45 -#: printing/doctype/network_printer_settings/network_printer_settings.py:47 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 msgid "Failed to connect to server" msgstr "Gagal terhubung ke server" -#: auth.py:649 +#: frappe/auth.py:698 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid." -#: core/doctype/rq_job/rq_job_list.js:33 +#: frappe/utils/password.py:211 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:600 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 msgid "Failed to enable scheduler: {0}" msgstr "" -#: integrations/doctype/webhook/webhook.py:136 +#: frappe/email/doctype/notification/notification.py:99 +#: frappe/integrations/doctype/webhook/webhook.py:127 msgid "Failed to evaluate conditions: {}" msgstr "" -#: types/exporter.py:197 +#: frappe/types/exporter.py:205 msgid "Failed to export python type hints" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:252 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.js:75 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" msgstr "" -#: handler.py:76 +#: frappe/handler.py:75 msgid "Failed to get method for command {0} with {1}" msgstr "" -#: api/v2.py:48 +#: frappe/api/v2.py:46 msgid "Failed to get method {0} with {1}" msgstr "" -#: model/virtual_doctype.py:64 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 msgid "Failed to import virtual doctype {}, is controller file present?" msgstr "" -#: utils/image.py:75 +#: frappe/utils/image.py:75 msgid "Failed to optimize image: {0}" msgstr "" -#: email/doctype/email_queue/email_queue.py:278 +#: frappe/email/doctype/notification/notification.py:116 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:134 +msgid "Failed to render subject: {}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +msgid "Failed to request login to Frappe Cloud" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" msgstr "" -#: desk/doctype/notification_log/notification_log.py:41 +#: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:24 +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" msgstr "" -#: core/doctype/data_import/data_import.js:470 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" msgstr "Kegagalan" -#. Label of a Attach field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "FavIcon" -msgstr "FavIcon" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "Fax" +msgstr "" -#: website/doctype/blog_post/templates/blog_post_row.html:19 +#. Label of the featured (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 msgid "Featured" msgstr "Unggulan" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Featured" -msgstr "Unggulan" - -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Umpan balik" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Feedback Request" -msgstr "Masukan Permintaan" +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" -#. Label of a Small Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 msgid "Fetch From" -msgstr "Ambil Dari" +msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fetch From" -msgstr "Ambil Dari" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fetch From" -msgstr "Ambil Dari" - -#: website/doctype/website_slideshow/website_slideshow.js:15 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" msgstr "Ambil Gambar" -#: website/doctype/website_slideshow/website_slideshow.js:13 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" msgstr "Ambil gambar terlampir dari dokumen" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fetch on Save if Empty" -msgstr "" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fetch on Save if Empty" -msgstr "" - -#: desk/doctype/global_search_settings/global_search_settings.py:60 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." msgstr "Mengambil dokumen Penelusuran Global default." -#: desk/page/leaderboard/leaderboard.js:131 -#: public/js/frappe/list/bulk_operations.js:262 -#: public/js/frappe/views/reports/query_report.js:235 -#: public/js/frappe/views/reports/query_report.js:1706 +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Bidang" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Field" -msgstr "Bidang" - -#. Label of a Select field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Field" -msgstr "Bidang" - -#: core/doctype/doctype/doctype.py:419 +#: frappe/core/doctype/doctype/doctype.py:417 msgid "Field \"route\" is mandatory for Web Views" msgstr "Bidang "rute" adalah wajib untuk Tampilan Web" -#: core/doctype/doctype/doctype.py:1477 +#: frappe/core/doctype/doctype/doctype.py:1526 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" -#: desk/doctype/bulk_update/bulk_update.js:17 +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" msgstr "Kolom \"nilai\" adalah wajib. Silakan tentukan nilai untuk diperbarui" -#. Label of a Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Field Description" -msgstr "Bidang Deskripsi" +msgstr "" -#: core/doctype/doctype/doctype.py:1040 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Field Missing" msgstr "" -#. Label of a Select field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json msgid "Field Name" -msgstr "Nama Field" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Field Name" -msgstr "Nama Field" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Field To Check" -msgstr "Field Untuk Memeriksa" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 msgid "Field Type" -msgstr "Field Type" +msgstr "" -#: desk/reportview.py:165 +#: frappe/desk/reportview.py:201 msgid "Field not permitted in query" msgstr "" #. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" -msgstr "Kolom yang mewakili Status Alur Kerja transaksi (jika kolom tidak tersedia, Kolom Kustom yang tersembunyi akan dibuat)" +msgstr "" -#. Label of a Select field in DocType 'Milestone Tracker' -#: automation/doctype/milestone_tracker/milestone_tracker.json -msgctxt "Milestone Tracker" +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Field to Track" -msgstr "Field to Track" +msgstr "" -#: custom/doctype/property_setter/property_setter.py:50 +#: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" msgstr "Jenis lapangan tidak dapat diubah untuk {0}" -#: database/database.py:783 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" -#: desk/form/meta.py:203 +#: frappe/desk/form/meta.py:184 msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: public/js/frappe/form/form.js:1727 +#: frappe/public/js/frappe/form/form.js:1754 msgid "Field {0} not found." msgstr "Bidang {0} tidak ditemukan" -#: custom/doctype/custom_field/custom_field.js:119 -msgid "Fieldname" -msgstr "Fieldname" +#: frappe/email/doctype/notification/notification.py:503 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" -msgstr "Fieldname" +msgstr "" -#. Label of a Select field in DocType 'DocType Layout Field' -#: custom/doctype/doctype_layout_field/doctype_layout_field.json -msgctxt "DocType Layout Field" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Data field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Fieldname" -msgstr "Fieldname" - -#. Label of a Select field in DocType 'Webhook Data' -#: integrations/doctype/webhook_data/webhook_data.json -msgctxt "Webhook Data" -msgid "Fieldname" -msgstr "Fieldname" - -#: core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:270 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: core/doctype/doctype/doctype.py:1039 +#: frappe/core/doctype/doctype/doctype.py:1076 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: database/schema.py:125 database/schema.py:359 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Fieldname dibatasi 64 karakter ({0})" -#: custom/doctype/custom_field/custom_field.py:193 +#: frappe/custom/doctype/custom_field/custom_field.py:197 msgid "Fieldname not set for Custom Field" msgstr "Fieldname tidak ditetapkan untuk Bidang Kustom" -#: custom/doctype/custom_field/custom_field.js:107 +#: frappe/custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." msgstr "Fieldname yang akan menjadi DocType untuk bidang link ini." -#: public/js/form_builder/store.js:170 +#: frappe/public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" msgstr "" -#: database/schema.py:349 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}" -#: core/doctype/doctype/doctype.py:1850 +#: frappe/core/doctype/doctype/doctype.py:1907 msgid "Fieldname {0} conflicting with meta object" msgstr "Fieldname {0} bertentangan dengan objek meta" -#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302 +#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Fieldname {0} dibatasi" -#. Label of a Section Break field in DocType 'Customize Form' -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json msgid "Fields" -msgstr "Bidang" +msgstr "" -#. Label of a Table field in DocType 'DocType' -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Table field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Code field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Fields" -msgstr "Bidang" - -#. Label of a HTML field in DocType 'List View Settings' -#. Label of a Code field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Small Text field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Fields" -msgstr "Bidang" - -#. Label of a Table field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Fields" -msgstr "Bidang" - -#. Label of a HTML field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Fields Multicheck" -msgstr "Bidang Multicheck" +msgstr "" -#: core/doctype/file/file.py:406 +#: frappe/core/doctype/file/file.py:410 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" -msgstr "Fields dipisahkan dengan koma (,) akan dimasukkan dalam "Cari Dengan" daftar pencarian kotak dialog" +msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldtype" -msgstr "Fieldtype" +msgstr "" -#. Label of a Select field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Data field in DocType 'Web Form List Column' -#: website/doctype/web_form_list_column/web_form_list_column.json -msgctxt "Web Form List Column" -msgid "Fieldtype" -msgstr "Fieldtype" - -#. Label of a Select field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Fieldtype" -msgstr "Fieldtype" - -#: custom/doctype/custom_field/custom_field.py:189 +#: frappe/custom/doctype/custom_field/custom_field.py:193 msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: custom/doctype/customize_form/customize_form.py:586 +#: frappe/custom/doctype/customize_form/customize_form.py:588 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" -#. Name of a DocType -#: core/doctype/file/file.json -msgid "File" -msgstr "Mengajukan" - #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "File" -msgid "File" -msgstr "Mengajukan" - +#. Name of a DocType #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json msgid "File" msgstr "Mengajukan" -#: core/doctype/file/utils.py:126 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 msgid "File '{0}' not found" msgstr "File '{0}' tidak ditemukan" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "File Backup" -msgstr "Cadangan File" - -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "File Backup" -msgstr "Cadangan File" - -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json msgid "File Information" -msgstr "Informasi File" +msgstr "" -#: public/js/frappe/views/file/file_view.js:74 +#: frappe/public/js/frappe/views/file/file_view.js:74 msgid "File Manager" -msgstr "File Manager" +msgstr "" -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File Name" -msgstr "berkas nama" +msgstr "" -#. Label of a Int field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File Size" -msgstr "Ukuran File" +msgstr "" -#: public/js/frappe/data_import/data_exporter.js:19 +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 msgid "File Type" msgstr "Tipe file" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Select field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "File Type" -msgstr "Tipe file" - -#. Label of a Code field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "File URL" -msgstr "URL File" +msgstr "" -#: desk/page/backups/backups.py:109 +#: frappe/desk/page/backups/backups.py:107 msgid "File backup is ready" msgstr "File cadangan sudah siap" -#: core/doctype/file/file.py:577 +#: frappe/core/doctype/file/file.py:624 msgid "File name cannot have {0}" msgstr "Nama file tidak boleh memuat {0}" -#: utils/csvutils.py:26 +#: frappe/utils/csvutils.py:28 msgid "File not attached" msgstr "Berkas tidak terpasang" -#: core/doctype/file/file.py:682 public/js/frappe/request.js:197 -#: utils/file_manager.py:221 +#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB" -#: public/js/frappe/request.js:195 +#: frappe/public/js/frappe/request.js:198 msgid "File too big" msgstr "File terlalu besar" -#: core/doctype/file/file.py:373 +#: frappe/core/doctype/file/file.py:375 msgid "File type of {0} is not allowed" msgstr "" -#: core/doctype/file/file.py:360 core/doctype/file/file.py:422 +#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 msgid "File {0} does not exist" msgstr "Berkas {0} tidak ada" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "File" +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Files" -msgstr "arsip" +msgstr "" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Files" -msgstr "arsip" - -#: email/doctype/auto_email_report/auto_email_report.js:90 -#: public/js/frappe/ui/filters/filter_list.js:132 +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:93 +#: frappe/public/js/frappe/list/base_list.js:953 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "Filter" +msgstr "" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "" + +#. Label of the filter_data (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Data" -msgstr "Filter Data" +msgstr "" -#. Label of a HTML field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json msgid "Filter List" -msgstr "Daftar Filter" +msgstr "" -#. Label of a Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the filter_meta (Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Meta" -msgstr "Filter Meta" +msgstr "" -#: public/js/frappe/list/list_filter.js:33 +#. Label of the filter_name (Data) field in DocType 'List Filter' +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/public/js/frappe/list/list_filter.js:33 msgid "Filter Name" msgstr "Nama filter" -#. Label of a Data field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Filter Name" -msgstr "Nama filter" - -#. Label of a HTML field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Filter Values" -msgstr "Filter Nilai" +msgstr "" -#: utils/data.py:2021 -msgid "Filter must be a tuple or list (in a list)" -msgstr "Filter harus berupa tupel atau daftar (dalam daftar)" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" -#: utils/data.py:2029 -msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}" -msgstr "Filter harus memiliki 4 nilai (doctype, fieldname, operator, value): {0}" +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" -#. Label of a Data field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Filtered By" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:33 +#: frappe/public/js/frappe/data_import/data_exporter.js:33 msgid "Filtered Records" msgstr "Catatan yang Difilter" -#: website/doctype/blog_post/blog_post.py:262 -#: website/doctype/help_article/help_article.py:91 www/list.py:45 +#: frappe/website/doctype/blog_post/blog_post.py:268 +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Disaring oleh "{0}"" -#. Label of a Code field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json msgid "Filters" msgstr "Penyaring" -#. Label of a Text field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Code field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Long Text field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Prepared Report' -#. Label of a Small Text field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Filters" -msgstr "Penyaring" - -#. Label of a Section Break field in DocType 'Report' -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Filters" -msgstr "Penyaring" - -#: public/js/frappe/ui/filters/filter_list.js:131 -msgid "Filters {0}" +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" msgstr "" -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Filters Configuration" -msgstr "Konfigurasi Filter" - -#. Label of a HTML field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filters Display" -msgstr "filter Tampilan" +msgstr "" -#. Label of a Code field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Filters JSON" -msgstr "Filter JSON" +msgstr "" -#. Label of a Code field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Filters JSON" -msgstr "Filter JSON" - -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Filters Section" -msgstr "Bagian Filter" +msgstr "" -#: public/js/frappe/form/controls/link.js:486 +#: frappe/public/js/frappe/form/controls/link.js:510 msgid "Filters applied for {0}" msgstr "Filter diterapkan untuk {0}" -#: public/js/frappe/views/kanban/kanban_view.js:186 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 msgid "Filters saved" msgstr "filter tersimpan" #. Description of the 'Script' (Code) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Filters will be accessible via filters.

    Send output as result = [result], or for old style data = [columns], [result]" -msgstr "Filter akan dapat diakses melalui filters .

    Kirim keluaran sebagai result = [result] , atau untuk data = [columns], [result] gaya lama data = [columns], [result]" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:556 +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1427 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 msgid "Find '{0}' in ..." msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:325 -#: public/js/frappe/ui/toolbar/awesome_bar.js:326 -#: public/js/frappe/ui/toolbar/search_utils.js:125 -#: public/js/frappe/ui/toolbar/search_utils.js:128 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 msgid "Find {0} in {1}" msgstr "Cari {0} pada {1}" #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Finished" -msgstr "Jadi" +msgstr "" -#. Label of a Datetime field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Finished At" msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "First Day of the Week" msgstr "" -#: www/complete_signup.html:15 +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Nama Depan" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "First Name" -msgstr "Nama Depan" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "First Name" -msgstr "Nama Depan" - -#. Label of a Data field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" +#. Label of the first_success_message (Data) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json msgid "First Success Message" -msgstr "Pesan Sukses Pertama" +msgstr "" -#: core/report/transaction_log_report/transaction_log_report.py:49 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 msgid "First Transaction" msgstr "Transaksi Pertama" -#: core/doctype/data_export/exporter.py:185 +#: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Data kolom pertama harus kosong." -#: website/doctype/website_slideshow/website_slideshow.js:7 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 msgid "First set the name and save the record." msgstr "Pertama-tama atur nama dan simpan catatannya." -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Flag" -msgstr "Bendera" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Float" -msgstr "Mengapung" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Float" -msgstr "Mengapung" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Float" -msgstr "Mengapung" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Float" -msgstr "Mengapung" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Float" -msgstr "Mengapung" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Float" -msgstr "Mengapung" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Float Precision" -msgstr "Mengapung Presisi" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Fold" -msgstr "Melipat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Fold" -msgstr "Melipat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Fold" -msgstr "Melipat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Fold" -msgstr "Melipat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fold" -msgstr "Melipat" +msgstr "" -#: core/doctype/doctype/doctype.py:1401 +#: frappe/core/doctype/doctype/doctype.py:1450 msgid "Fold can not be at the end of the form" msgstr "Lipat tidak bisa di akhir formulir" -#: core/doctype/doctype/doctype.py:1399 +#: frappe/core/doctype/doctype/doctype.py:1448 msgid "Fold must come before a Section Break" msgstr "Lipat harus datang sebelum Bagian istirahat" -#. Label of a Link field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Folder" -msgstr "Map" +msgstr "" -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "Folder Name" msgstr "" -#: public/js/frappe/views/file/file_view.js:100 +#: frappe/public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)" -#: core/doctype/file/file.py:466 +#: frappe/core/doctype/file/file.py:472 msgid "Folder {0} is not empty" msgstr "Folder {0} tidak kosong" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Folio" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Mengikuti" -#: email/doctype/auto_email_report/auto_email_report.py:124 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" -#: website/doctype/web_form/web_form.py:107 +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:108 msgid "Following fields are missing:" msgstr "bidang berikut yang hilang:" -#: public/js/frappe/ui/field_group.js:133 +#: frappe/public/js/frappe/ui/field_group.js:139 msgid "Following fields have invalid values:" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:314 +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 msgid "Following fields have missing values" msgstr "" -#: public/js/frappe/ui/field_group.js:120 +#: frappe/public/js/frappe/ui/field_group.js:126 msgid "Following fields have missing values:" msgstr "bidang berikut memiliki nilai yang hilang:" -#: email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" msgstr "" -#. Label of a Select field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Font" -msgstr "Font" - -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Font Properties" -msgstr "Properti Font" +msgstr "" -#. Label of a Int field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json msgid "Font Size" -msgstr "Font Size" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Font Size" -msgstr "Font Size" - -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Font Size" -msgstr "Font Size" - -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Fonts" -msgstr "Font" - -#. Label of a Text Editor field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" -msgid "Footer" -msgstr "Footer" - -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Footer" -msgstr "Footer" - -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Footer" -msgstr "Footer" +msgstr "" +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer" -msgstr "Footer" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Footer" -msgstr "Footer" - -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_powered (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer \"Powered By\"" msgstr "" -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Based On" msgstr "" -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Footer Content" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_details_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Details" msgstr "" -#. Label of a HTML Editor field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" -msgstr "Footer HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:72 +#: frappe/printing/doctype/letter_head/letter_head.py:75 msgid "Footer HTML set from attachment {0}" msgstr "" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Image" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer (Section Break) field in DocType 'Website Settings' +#. Label of the footer_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Items" -msgstr "Footer Items" +msgstr "" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Logo" -msgstr "Logo Footer" +msgstr "" -#. Label of a Link field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template" -msgstr "Template Footer" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the footer_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template Values" -msgstr "Nilai Template Footer" +msgstr "" -#: printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:116 msgid "Footer might not be visible as {0} option is disabled
" msgstr "" #. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter #. Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer will display correctly only in PDF" -msgstr "Footer akan ditampilkan dengan benar hanya dalam PDF" +msgstr "" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "" #. Description of the 'Row Name' (Data) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "For DocType Link / DocType Action" -msgstr "Untuk Tautan DocType / Tindakan DocType" +msgstr "" -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "For Document Event" -msgstr "Untuk Acara Dokumen" +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:155 +#: frappe/core/doctype/user_permission/user_permission_list.js:155 msgid "For Document Type" msgstr "Untuk Jenis Dokumen" -#: public/js/frappe/widgets/widget_dialog.js:529 +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 msgid "For Example: {} Open" msgstr "Misalnya: {} Buka" +#. Description of the 'Options' (Small Text) field in DocType 'DocField' #. Description of the 'Options' (Small Text) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "" -"For Links, enter the DocType as range.\n" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." msgstr "" -#. Description of the 'Options' (Small Text) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "" -"For Links, enter the DocType as range.\n" -"For Select, enter list of Options, each on a new line." -msgstr "" - -#: core/doctype/user_permission/user_permission_list.js:10 -#: core/doctype/user_permission/user_permission_list.js:148 +#. Label of the for_user (Link) field in DocType 'List Filter' +#. Label of the for_user (Link) field in DocType 'Notification Log' +#. Label of the for_user (Data) field in DocType 'Workspace' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json msgid "For User" msgstr "untuk Pengguna" -#. Label of a Link field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "For User" -msgstr "untuk Pengguna" - -#. Label of a Dynamic Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json msgid "For Value" -msgstr "Untuk nilai" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1958 -#: public/js/frappe/views/reports/report_view.js:96 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 +#: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." -#: printing/page/print_format_builder/print_format_builder.js:744 +#: frappe/core/page/permission_manager/permission_manager_help.html:19 +msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "For example:" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:752 msgid "For example: If you want to include the document ID, use {0}" msgstr "Sebagai contoh: Jika Anda ingin memasukkan ID dokumen, gunakan {0}" #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "For example: {} Open" -msgstr "Misalnya: {} Buka" +msgstr "" -#. Description of the 'Client Script' (Code) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Description of the 'Client script' (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "For help see Client Script API and Examples" -msgstr "Untuk bantuan, lihat API dan Contoh Skrip Klien" +msgstr "" #. Description of the 'Enable Automatic Linking in Documents' (Check) field in #. DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "For more information, click here." -msgstr "Untuk informasi lebih lanjut, klik di sini ." +msgstr "" -#: integrations/doctype/google_settings/google_settings.js:7 +#: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Untuk informasi lebih lanjut, {0}." #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" msgstr "" -#: core/doctype/data_export/exporter.py:199 +#: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." msgstr "Untuk memperbarui, Anda hanya dapat memperbarui kolom tertentu." -#: core/doctype/doctype/doctype.py:1692 +#: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}" +#. Label of the force (Check) field in DocType 'Package Import' #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth #. Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Force" -msgstr "Memaksa" +msgstr "" -#. Label of a Check field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" -msgid "Force" -msgstr "Memaksa" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Force Re-route to Default View" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Force Re-route to Default View" -msgstr "" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Force Show" -msgstr "Angkatan Tampilkan" +msgstr "" -#: core/doctype/rq_job/rq_job.js:13 +#: frappe/core/doctype/rq_job/rq_job.js:13 msgid "Force Stop job" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Force User to Reset Password" -msgstr "Paksa Pengguna untuk Mengatur Ulang Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Force Web Capture Mode for Uploads" msgstr "" -#: www/login.html:35 +#: frappe/www/login.html:37 msgid "Forgot Password?" msgstr "Lupa kata sandi?" -#: printing/page/print/print.js:83 -msgid "Form" -msgstr "" - +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Form" -msgstr "" - -#. Label of a Tab Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Form" -msgstr "" - -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form" -msgstr "" - +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:83 +#: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Form" -msgstr "" - -#. Label of a HTML field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Form Builder" msgstr "" -#. Label of a HTML field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form Builder" -msgstr "" - -#. Label of a Code field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Form Dict" msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Form Settings" -msgstr "Pengaturan Formulir" - -#. Name of a DocType -#: desk/doctype/form_tour/form_tour.json -msgid "Form Tour" msgstr "" -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Form Tour" msgstr "" #. Name of a DocType -#: desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Form Tour Step" msgstr "" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "Form URL-Encoded" -msgstr "Form URL-Encoded" +msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:528 +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 msgid "Format" -msgstr "Format" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Format" -msgstr "Format" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Format" -msgstr "Format" - -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Format Data" -msgstr "Format data" +msgstr "" -#: core/doctype/communication/communication.js:70 +#: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Meneruskan" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Forward To Email Address" -msgstr "Teruskan Ke Alamat Surel" +msgstr "" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Fraction" -msgstr "Pecahan" +msgstr "" -#. Label of a Int field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Fraction Units" -msgstr "Unit Fraksi" - -#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134 -msgid "Frappe" -msgstr "Frape" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 msgid "Frappe" msgstr "Frape" -#: public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" msgstr "Frappe Kerangka" -#: public/js/frappe/ui/theme_switcher.js:59 +#: frappe/public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" msgstr "" +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "" + #. Label of a standard help item -#. Type: Action -#: hooks.py +#. Type: Route +#: frappe/hooks.py msgid "Frappe Support" msgstr "" -#: public/js/frappe/utils/common.js:395 -msgid "Frequency" -msgstr "Frekuensi" +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Frequency" -msgstr "Frekuensi" +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" -#. Label of a Select field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Frequency" -msgstr "Frekuensi" - -#. Label of a Select field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 msgid "Frequency" msgstr "Frekuensi" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Friday" -msgstr "Jum'at" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Friday" -msgstr "Jum'at" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Friday" -msgstr "Jum'at" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Friday" -msgstr "Jum'at" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Friday" -msgstr "Jum'at" +msgstr "" -#: public/js/frappe/views/communication.js:170 -#: public/js/frappe/views/inbox/inbox_view.js:70 +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Dari" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" msgid "From" msgstr "Dari" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "From" -msgstr "Dari" - -#: website/report/website_analytics/website_analytics.js:8 +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 msgid "From Date" msgstr "Dari Tanggal" -#. Label of a Date field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "From Date" -msgstr "Dari Tanggal" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the from_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "From Date Field" -msgstr "Dari Kolom Tanggal" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1672 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Dari Jenis Dokumen" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "Dari Nama Lengkap" +msgstr "" -#. Label of a Link field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "From User" -msgstr "Dari Pengguna" +msgstr "" -#: public/js/frappe/utils/diffview.js:30 +#: frappe/public/js/frappe/utils/diffview.js:31 msgid "From version" msgstr "" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Full" -msgstr "Penuh" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4 +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#. Label of the full_name (Data) field in DocType 'Blogger' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Nama Lengkap" -#. Label of a Data field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Full Name" -msgstr "Nama Lengkap" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Full Name" -msgstr "Nama Lengkap" - -#: printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:67 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "Full Page" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Full Width" -msgstr "Lebar Penuh" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:245 -#: public/js/frappe/widgets/widget_dialog.js:666 +#. Label of the function (Select) field in DocType 'Number Card' +#. Label of the report_function (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Fungsi" -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Function" -msgstr "Fungsi" - -#: public/js/frappe/widgets/widget_dialog.js:673 +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 msgid "Function Based On" msgstr "Fungsi Berdasarkan" -#: __init__.py:835 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" -#: public/js/frappe/views/treeview.js:402 +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'" -#: core/doctype/communication/communication.js:291 +#: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" -msgstr "Fw: {0}" +msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "GET" msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "GMail" -msgstr "GMail" +msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "GNU Affero General Public License" msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "GNU General Public License" msgstr "" -#: public/js/frappe/views/gantt/gantt_view.js:10 -msgid "Gantt" -msgstr "Gantt" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 msgid "Gantt" -msgstr "Gantt" - -#. Name of a DocType -#: contacts/doctype/gender/gender.json -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Data field in DocType 'Gender' -#: contacts/doctype/gender/gender.json -msgctxt "Gender" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Gender" -msgstr "Jenis Kelamin" - -#. Title of an Onboarding Step -#: custom/onboarding_step/report_builder/report_builder.json -msgid "Generate Custom Reports" msgstr "" -#. Label of a Button field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Generate Keys" -msgstr "Hasilkan Kunci" +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:803 +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "Jenis Kelamin" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Hasilkan Laporan Baru" -#: public/js/frappe/ui/toolbar/awesome_bar.js:366 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 msgid "Generate Random Password" msgstr "" -#: public/js/frappe/ui/toolbar/toolbar.js:137 -#: public/js/frappe/utils/utils.js:1750 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Geolocation" -msgstr "Geolokasi" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Geolocation" -msgstr "Geolokasi" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Geolocation" -msgstr "Geolokasi" +msgstr "" -#: email/doctype/notification/notification.js:170 +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:219 msgid "Get Alerts for Today" msgstr "Dapatkan Pemberitahuan untuk Hari ini" -#: desk/page/backups/backups.js:19 +#: frappe/desk/page/backups/backups.js:21 msgid "Get Backup Encryption Key" msgstr "" -#. Label of a Button field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Get Contacts" -msgstr "Dapatkan Kontak" +msgstr "" -#: website/doctype/web_form/web_form.js:84 +#: frappe/website/doctype/web_form/web_form.js:93 msgid "Get Fields" msgstr "Dapatkan Fields" -#: public/js/frappe/form/multi_select_dialog.js:85 +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 msgid "Get Items" msgstr "Dapatkan Produk" -#: integrations/doctype/connected_app/connected_app.js:6 +#: frappe/integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" msgstr "" -#: www/printview.html:22 +#: frappe/www/printview.html:22 msgid "Get PDF" msgstr "" #. Description of the 'Try a Naming Series' (Data) field in DocType 'Document #. Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Get a preview of generated names with a series." msgstr "" +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "" + #. Description of the 'Email Threads on Assigned Document' (Check) field in #. DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Get notified when an email is received on any of the documents assigned to you." msgstr "" #. Description of the 'User Image' (Attach Image) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Get your globally recognized avatar from Gravatar.com" -msgstr "Dapatkan avatar Anda diakui secara global dari Gravatar.com" +msgstr "" -#. Label of a Data field in DocType 'Installed Application' -#: core/doctype/installed_application/installed_application.json -msgctxt "Installed Application" +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json msgid "Git Branch" -msgstr "Cabang Git" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "GitHub" -msgstr "GitHub" +msgstr "" -#: social/doctype/energy_point_settings/energy_point_settings.js:7 -#: social/doctype/energy_point_settings/energy_point_settings.js:14 -msgid "Give Review Points" -msgstr "Berikan Poin Ulasan" +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" #. Name of a DocType -#: desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json msgid "Global Search DocType" msgstr "DocType Pencarian Global" -#: desk/doctype/global_search_settings/global_search_settings.js:24 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 msgid "Global Search Document Types Reset." msgstr "Reset Jenis Dokumen Pencarian Global." #. Name of a DocType -#: desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Global Search Settings" msgstr "Pengaturan Pencarian Global" -#: public/js/frappe/ui/keyboard.js:118 +#: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" msgstr "Pintasan Global" -#. Label of a Check field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Global Unsubscribe" -msgstr "Global yang Unsubscribe" +msgstr "" -#: desk/page/user_profile/user_profile_controller.js:68 -#: public/js/frappe/form/toolbar.js:767 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Pergi" -#: public/js/frappe/widgets/onboarding_widget.js:246 -#: public/js/frappe/widgets/onboarding_widget.js:326 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 msgid "Go Back" msgstr "Kembali" -#: desk/doctype/notification_settings/notification_settings.js:17 +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 msgid "Go to Notification Settings List" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Go to Page" -msgstr "Buka halaman" +msgstr "" -#: public/js/workflow_builder/workflow_builder.bundle.js:41 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 msgid "Go to Workflow" msgstr "" -#: desk/doctype/workspace/workspace.js:18 +#: frappe/desk/doctype/workspace/workspace.js:18 msgid "Go to Workspace" msgstr "" -#: public/js/frappe/form/form.js:144 +#: frappe/public/js/frappe/form/form.js:144 msgid "Go to next record" msgstr "Pergi ke catatan berikutnya" -#: public/js/frappe/form/form.js:154 +#: frappe/public/js/frappe/form/form.js:154 msgid "Go to previous record" msgstr "Pergi ke catatan sebelumnya" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 msgid "Go to the document" msgstr "Pergi ke dokumen" #. Description of the 'Success URL' (Data) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json msgid "Go to this URL after completing the form" msgstr "" -#: core/doctype/doctype/doctype.js:54 -#: custom/doctype/client_script/client_script.js:10 +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:10 msgid "Go to {0}" msgstr "Pergi ke {0}" -#: core/doctype/data_import/data_import.js:92 -#: core/doctype/doctype/doctype.js:58 -#: custom/doctype/customize_form/customize_form.js:104 -#: custom/doctype/doctype_layout/doctype_layout.js:42 -#: workflow/doctype/workflow/workflow.js:44 +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 msgid "Go to {0} List" msgstr "Buka Daftar {0}" -#: core/doctype/page/page.js:11 +#: frappe/core/doctype/page/page.js:11 msgid "Go to {0} Page" msgstr "Buka Halaman {0}" -#: utils/goal.py:115 utils/goal.py:122 +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 msgid "Goal" msgstr "Sasaran" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Google" -msgstr "Google" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics ID" -msgstr "Google Analytics ID" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics anonymise IP" msgstr "" +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' #. Name of a DocType -#: integrations/doctype/google_calendar/google_calendar.json -msgid "Google Calendar" -msgstr "Kalender Google" - -#. Label of a Section Break field in DocType 'Event' -#. Label of a Link field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Google Calendar" -msgstr "Kalender Google" - -#. Label of a Section Break field in DocType 'Google Calendar' +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' #. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Calendar" +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Calendar" msgstr "Kalender Google" -#: integrations/doctype/google_calendar/google_calendar.py:781 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.py:251 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:575 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." msgstr "Kalender Google - Tidak dapat menghapus Acara {0} dari Kalender Google, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:288 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." msgstr "Kalender Google - Tidak dapat mengambil acara dari Kalender Google, kode kesalahan {0}." -#: integrations/doctype/google_contacts/google_contacts.py:229 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." msgstr "Kalender Google - Tidak dapat memasukkan kontak ke dalam Kontak Google {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:458 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." msgstr "Kalender Google - Tidak dapat menyisipkan acara di Kalender Google {0}, kode kesalahan {1}." -#: integrations/doctype/google_calendar/google_calendar.py:542 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." msgstr "Kalender Google - Tidak dapat memperbarui Acara {0} di Kalender Google, kode kesalahan {1}." -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Google Calendar Event ID" -msgstr "ID Peristiwa Kalender Google" +msgstr "" -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Google Calendar ID" -msgstr "ID Kalender Google" +msgstr "" -#. Label of a Data field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "Google Calendar ID" -msgstr "ID Kalender Google" - -#: integrations/doctype/google_calendar/google_calendar.py:166 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 msgid "Google Calendar has been configured." msgstr "Kalender Google telah dikonfigurasi." +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' #. Name of a DocType -#: integrations/doctype/google_contacts/google_contacts.json -msgid "Google Contacts" -msgstr "Kontak Google" - -#. Label of a Section Break field in DocType 'Contact' -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Google Contacts" -msgstr "Kontak Google" - -#. Label of a Section Break field in DocType 'Google Contacts' +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' #. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_contacts/google_contacts.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Contacts" +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" msgstr "Kontak Google" -#: integrations/doctype/google_contacts/google_contacts.py:136 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." msgstr "Google Kontak - Tidak dapat menyinkronkan kontak dari Google Kontak {0}, kode kesalahan {1}." -#: integrations/doctype/google_contacts/google_contacts.py:291 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." msgstr "Google Kontak - Tidak dapat memperbarui kontak di Google Kontak {0}, kode kesalahan {1}." -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Google Contacts Id" -msgstr "Google Kontak Id" +msgstr "" -#. Name of a DocType -#: integrations/doctype/google_drive/google_drive.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" -msgstr "Google Drive" +msgstr "" -#. Label of a Section Break field in DocType 'Google Drive' -#. Label of a Link in the Integrations Workspace -#: integrations/doctype/google_drive/google_drive.json -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Drive" -msgid "Google Drive" -msgstr "Google Drive" - -#: integrations/doctype/google_drive/google_drive.py:118 -msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Tidak dapat membuat folder di Google Drive - Kode Kesalahan {0}" - -#: integrations/doctype/google_drive/google_drive.py:134 -msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}" -msgstr "Google Drive - Tidak dapat menemukan folder di Google Drive - Kode Kesalahan {0}" - -#: integrations/doctype/google_drive/google_drive.py:196 -msgid "Google Drive - Could not locate - {0}" -msgstr "Google Drive - Tidak dapat menemukan - {0}" - -#: integrations/doctype/google_drive/google_drive.py:207 -msgid "Google Drive Backup Successful." -msgstr "Cadangan Google Drive Berhasil." - -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker" msgstr "" -#. Label of a Check field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker Enabled" msgstr "" -#. Label of a Data field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json msgid "Google Font" -msgstr "Google Font" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Google Font" -msgstr "Google Font" - -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Google Meet Link" msgstr "" #. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Services" msgstr "Layanan Google" #. Name of a DocType -#: integrations/doctype/google_settings/google_settings.json -msgid "Google Settings" -msgstr "Pengaturan Google" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Google Settings" +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" msgstr "Pengaturan Google" -#: utils/csvutils.py:199 +#: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." msgstr "URL Google Spreadsheet tidak valid atau tidak dapat diakses publik." -#: utils/csvutils.py:204 +#: frappe/utils/csvutils.py:231 msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Spreadsheet harus diakhiri dengan "gid = {number}". Salin dan tempel URL dari bilah alamat browser dan coba lagi." -#. Label of a HTML field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the google_preview (HTML) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Google Snippet Preview" -msgstr "Pratinjau Google Snippet" +msgstr "" -#. Label of a Select field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" -msgstr "Jenis Donasi" +msgstr "" -#: public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 msgid "Graph" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" msgstr "" -#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Gray" +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Green" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Green" +msgstr "Hijau" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" msgstr "" -#: public/js/frappe/ui/keyboard.js:123 +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" msgstr "" -#. Label of a Data field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Group" msgstr "Grup" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Group" -msgstr "Grup" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Group" -msgstr "Grup" - -#: website/report/website_analytics/website_analytics.js:32 -msgid "Group By" -msgstr "Dikelompokkan oleh" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" msgstr "Dikelompokkan oleh" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Based On" -msgstr "Kelompok Berdasarkan Berdasarkan" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Type" -msgstr "Kelompokkan menurut Jenis" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:408 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 msgid "Group By field is required to create a dashboard chart" msgstr "Kolom Group By diperlukan untuk membuat bagan dasbor" -#: public/js/frappe/views/treeview.js:401 +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Node Grup" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" msgstr "" -#: public/js/frappe/ui/group_by/group_by.js:415 +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "HEAD" msgstr "" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm" -msgstr "HH: mm" +msgstr "" +#. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm:ss" -msgstr "HH: mm: dd" - -#: printing/doctype/print_format/print_format.py:93 -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "HTML" -msgstr "HTML" - -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "HTML" -msgstr "HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "HTML" -msgstr "HTML" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "HTML" -msgstr "HTML" - -#. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "HTML" -msgstr "HTML" - -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "HTML" -msgstr "HTML" - +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "HTML" -msgstr "HTML" - #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "HTML" -msgstr "HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "HTML Editor" -msgstr "Editor HTML" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "HTML Editor" -msgstr "Editor HTML" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "HTML Editor" -msgstr "Editor HTML" +msgstr "" -#. Label of a HTML Editor field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "HTML Page" -msgstr "Halaman HTML" +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "HTML for header section. Optional" -msgstr "HTML untuk bagian header. Pilihan" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Half" -msgstr "Setengah" +msgstr "" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Half Yearly" -msgstr "Setengah Tahunan" - -#: public/js/frappe/utils/common.js:402 -msgid "Half-yearly" -msgstr "Setengah tahun" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 msgid "Half-yearly" msgstr "Setengah tahun" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Has Attachment" -msgstr "memiliki Lampiran" +msgstr "" #. Name of a DocType -#: core/doctype/has_domain/has_domain.json +#: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" msgstr "Memiliki Domain" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Has Next Condition" msgstr "" #. Name of a DocType -#: core/doctype/has_role/has_role.json +#: frappe/core/doctype/has_role/has_role.json msgid "Has Role" msgstr "memiliki Peran" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Has Web View" -msgstr "Memiliki Web View" +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" -#: templates/signup.html:19 +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 msgid "Have an account? Login" msgstr "Punya akun? Masuk" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "Header" +msgstr "" -#. Label of a Check field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" -msgid "Header" -msgstr "Header" - -#. Label of a HTML Editor field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" -msgstr "Header HTML" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:60 +#: frappe/printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" msgstr "Set HTML header dari lampiran {0}" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Header and Breadcrumbs" -msgstr "Header dan Breadcrumbs" +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Header, Robots" msgstr "" -#. Label of a Table field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Headers" -msgstr "Judul" +msgstr "" -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Headers" -msgstr "Judul" - -#: printing/page/print_format_builder/print_format_builder.js:602 -msgid "Heading" -msgstr "Kepala" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Heading" -msgstr "Kepala" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Heading" -msgstr "Kepala" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Heading" -msgstr "Kepala" +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Heading" -msgstr "Kepala" - -#. Label of a Data field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Heading" msgstr "Kepala" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Heatmap" -msgstr "Peta panas" +msgstr "" -#: templates/emails/new_user.html:2 +#: frappe/templates/emails/new_user.html:2 msgid "Hello" msgstr "" -#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27 -msgid "Help" -msgstr "Bantuan" - -#. Label of a HTML field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Help" -msgstr "Bantuan" - -#. Label of a Section Break field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 msgid "Help" msgstr "Bantuan" #. Name of a DocType -#: website/doctype/help_article/help_article.json -msgid "Help Article" -msgstr "Bantuan Pasal" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json msgid "Help Article" msgstr "Bantuan Pasal" -#. Label of a Int field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json msgid "Help Articles" msgstr "Bantuan Artikel" #. Name of a DocType -#: website/doctype/help_category/help_category.json -msgid "Help Category" -msgstr "Bantuan Kategori" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Help Category" +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json msgid "Help Category" msgstr "Bantuan Kategori" -#. Label of a Table field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" -msgstr "Bantuan Dropdown" +msgstr "" -#. Label of a HTML field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "Bantuan HTML" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:149 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" msgstr "Bantuan Pencarian" #. Description of the 'Content' (Text Editor) field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#: frappe/desk/doctype/note/note.json msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" msgstr "" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Helpful" msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "Helvetica" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" msgstr "" -#: public/js/frappe/utils/utils.js:1747 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" -#: www/qrcode.html:9 +#: frappe/www/qrcode.html:9 msgid "Hi {0}" msgstr "Hai {0}" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Hidden" -msgstr "Tersembunyi" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Hidden" -msgstr "Tersembunyi" - -#. Label of a Section Break field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hidden Fields" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:814 -#: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 -msgid "Hide" -msgstr "Menyembunyikan" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Menyembunyikan" -#. Label of a Check field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Hide Block" -msgstr "Sembunyikan Blokir" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Border" -msgstr "Sembunyikan Perbatasan" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Buttons" msgstr "" -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the hide_cta (Check) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Hide CTA" -msgstr "Sembunyikan CTA" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Hide Copy" -msgstr "Sembunyikan Duplikat" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Hide Copy" -msgstr "Sembunyikan Duplikat" - -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "Sembunyikan DocTypes dan Laporan Kustom" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Days" -msgstr "Sembunyikan Hari" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Days" -msgstr "Sembunyikan Hari" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Days" -msgstr "Sembunyikan Hari" - -#: core/doctype/user_permission/user_permission_list.js:96 +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" msgstr "" -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Hide Descendants" +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" msgstr "" -#: www/error.html:41 www/error.html:56 +#: frappe/www/error.html:62 msgid "Hide Error" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Hide Login" -msgstr "Sembunyikan Login" +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" -#: public/js/form_builder/form_builder.bundle.js:43 -#: public/js/print_format_builder/print_format_builder.bundle.js:54 +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" msgstr "" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Previous, Next and Close button on highlight dialog." msgstr "" -#: public/js/frappe/list/list_filter.js:87 +#: frappe/public/js/frappe/list/list_filter.js:94 msgid "Hide Saved" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Seconds" -msgstr "Sembunyikan Detik" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Hide Seconds" -msgstr "Sembunyikan Detik" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Hide Seconds" -msgstr "Sembunyikan Detik" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" msgstr "" -#. Label of a Check field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" -msgstr "Sembunyikan Menu Standar" +msgstr "" -#: public/js/frappe/list/list_view.js:1566 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:184 +#: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Hide Weekends" msgstr "Sembunyikan Akhir Pekan" -#: public/js/frappe/views/workspace/workspace.js:815 -msgid "Hide Workspace" -msgstr "" - #. Description of the 'Hide Descendants' (Check) field in DocType 'User #. Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" +#: frappe/core/doctype/user_permission/user_permission.json msgid "Hide descendant records of For Value." msgstr "" -#: public/js/frappe/form/layout.js:260 +#: frappe/public/js/frappe/form/layout.js:286 msgid "Hide details" msgstr "Sembunyikan detail" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Hide footer in auto email reports" -msgstr "Sembunyikan footer di laporan email otomatis" +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Hide footer signup" msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:198 -msgid "High" -msgstr "Tinggi" +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 msgid "High" msgstr "Tinggi" #. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Higher priority rule will be applied first" -msgstr "Aturan prioritas yang lebih tinggi akan diterapkan terlebih dahulu" +msgstr "" -#. Label of a Text field in DocType 'Company History' -#: website/doctype/company_history/company_history.json -msgctxt "Company History" +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json msgid "Highlight" -msgstr "Menyoroti" +msgstr "" -#: www/update-password.html:271 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Petunjuk: Sertakan simbol, angka dan huruf kapital di dalam kata sandi" -#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67 -#: public/js/frappe/views/file/file_view.js:88 -#: public/js/frappe/views/pageview.js:149 templates/doc.html:19 -#: templates/includes/navbar/navbar.html:9 -#: website/doctype/blog_post/blog_post.py:153 -#: website/doctype/blog_post/blog_post.py:265 -#: website/doctype/blog_post/blog_post.py:267 -#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22 -#: www/error.html:30 www/login.html:150 www/message.html:34 +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/templates/includes/navbar/navbar.html:9 +#: frappe/website/doctype/blog_post/blog_post.py:159 +#: frappe/website/doctype/blog_post/blog_post.py:271 +#: frappe/website/doctype/blog_post/blog_post.py:273 +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/web_template/primary_navbar/primary_navbar.html:9 +#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 msgid "Home" msgstr "Rumah" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Home" -msgstr "Rumah" - -#. Label of a Data field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Home Page" -msgstr "Home Page" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Home Page" -msgstr "Home Page" - -#. Label of a Code field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Home Settings" -msgstr "Pengaturan Beranda" +msgstr "" -#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301 -#: core/doctype/file/test_file.py:365 +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 msgid "Home/Test Folder 1" msgstr "Rumah / Test Folder 1" -#: core/doctype/file/test_file.py:354 +#: frappe/core/doctype/file/test_file.py:376 msgid "Home/Test Folder 1/Test Folder 3" msgstr "Rumah / Test Folder 1 / Test Folder 3" -#: core/doctype/file/test_file.py:310 +#: frappe/core/doctype/file/test_file.py:332 msgid "Home/Test Folder 2" msgstr "Rumah / Test Folder 2" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Hourly" -msgstr "Per jam" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Hourly" -msgstr "Per jam" - #. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json msgid "Hourly" -msgstr "Per jam" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Hourly Long" -msgstr "Per Jam Panjang" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Hourly Long" -msgstr "Per Jam Panjang" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Hourly rate limit for generating password reset links" -msgstr "Batas tarif per jam untuk membuat tautan pengaturan ulang kata sandi" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Jam" #. Description of the 'Number Format' (Select) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "Bagaimana seharusnya mata uang ini akan diformat? Jika tidak diatur, akan menggunakan default sistem" +msgstr "" -#: core/doctype/data_import/importer.py:1120 -#: core/doctype/data_import/importer.py:1126 -#: core/doctype/data_import/importer.py:1192 -#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36 -#: model/__init__.py:137 model/meta.py:45 -#: public/js/frappe/data_import/data_exporter.js:326 -#: public/js/frappe/data_import/data_exporter.js:341 -#: public/js/frappe/list/list_view.js:355 -#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197 -#: public/js/frappe/model/model.js:112 +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:337 +#: frappe/public/js/frappe/list/list_view.js:383 +#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "ID" +msgstr "" -#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920 +#: frappe/desk/reportview.py:491 +#: frappe/public/js/frappe/views/reports/report_view.js:984 msgctxt "Label of name column in report" msgid "ID" -msgstr "ID" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "ID (nama) dari entitas yang properti harus ditetapkan" +msgstr "" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "IMAP Details" msgstr "" +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' #. Name of a DocType -#: email/doctype/imap_folder/imap_folder.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" msgstr "" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "IMAP Folder" -msgstr "" - -#. Label of a Table field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "IMAP Folder" -msgstr "" - -#. Label of a Data field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json msgid "IP Address" -msgstr "Alamat IP" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "IP Address" -msgstr "Alamat IP" - -#: public/js/frappe/views/workspace/workspace.js:632 -#: public/js/frappe/views/workspace/workspace.js:960 -#: public/js/frappe/views/workspace/workspace.js:1205 -msgid "Icon" -msgstr "Ikon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Icon" -msgstr "Ikon" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Icon" -msgstr "Ikon" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Select field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Icon field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Icon" -msgstr "Ikon" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon" msgstr "Ikon" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon will appear on the button" -msgstr "Icon akan muncul pada tombol" +msgstr "" -#. Label of a Section Break field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Identity Details" -msgstr "Rincian identitas" +msgstr "" -#. Label of a Int field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "idx" +msgstr "" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "Jika Menerapkan Izin Pengguna yang Ketik dicentang dan Izin Pengguna ditetapkan untuk DocType untuk Pengguna, maka semua dokumen yang nilai linknya kosong, tidak akan ditampilkan ke User tersebut." +msgstr "" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "If Checked workflow status will not override status in list view" -msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar" - #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "If Checked workflow status will not override status in list view" -msgstr "Jika dicentang, status alur kerja tidak akan menimpa status di tampilan daftar" +msgstr "" -#: core/doctype/doctype/doctype.py:1706 +#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 +#: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" msgstr "Jika Owner" +#: frappe/core/page/permission_manager/permission_manager_help.html:25 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + #. Description of the 'Is Active' (Check) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "If checked, all other workflows become inactive." -msgstr "Jika dicentang, semua alur kerja lain menjadi tidak aktif." +msgstr "" #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" msgstr "" #. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth #. Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "If checked, users will not see the Confirm Access dialog." -msgstr "Jika dicentang, pengguna tidak akan melihat dialog Confirm Access." +msgstr "" #. Description of the 'Disabled' (Check) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna." +msgstr "" #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "Jika diaktifkan, pengguna dapat masuk dari Alamat IP apa pun menggunakan Two Factor Auth, ini juga dapat diatur untuk semua pengguna di Pengaturan Sistem" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "Jika diaktifkan, semua pengguna dapat masuk dari Alamat IP apa pun menggunakan Autentikasi Dua Faktor. Ini juga dapat diatur hanya untuk pengguna tertentu di Halaman Pengguna" +msgstr "" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "Jika diaktifkan, perubahan pada dokumen dilacak dan ditampilkan dalam timeline" +msgstr "" #. Description of the 'Track Views' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "Jika diaktifkan, tampilan dokumen dilacak, ini dapat terjadi beberapa kali" +msgstr "" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "Jika diaktifkan, dokumen ditandai sebagai terlihat, pertama kali pengguna membukanya" +msgstr "" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "Jika diaktifkan, notifikasi akan muncul di drop-down notifikasi di sudut kanan atas bilah navigasi." +msgstr "" #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong." -msgstr "Jika diaktifkan, kekuatan kata sandi akan diberlakukan berdasarkan nilai Skor Minimum Kata Sandi. Nilai 2 menjadi medium kuat dan 4 sangat kuat." +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" #. Description of the 'Bypass Two Factor Auth for users who login from #. restricted IP Address' (Check) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "Jika diaktifkan, pengguna yang masuk dari Alamat IP Terbatas, tidak akan diminta untuk Autentikasi Dua Faktor" +msgstr "" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#: frappe/desk/doctype/note/note.json msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "Jika diaktifkan, pengguna akan diberitahu setiap kali mereka login. Jika tidak diaktifkan, pengguna hanya akan diberitahu satu kali." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_domain/email_domain.json msgid "If non standard port (e.g. 587)" -msgstr "Jika port non standar (misalnya 587)" +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "Jika port non standar (misalnya 587). Jika di Google Cloud, coba port 2525." +msgstr "" #. Description of the 'Port' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)" - #. Description of the 'Port' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "Jika port non-standar (mis. POP3: 995/110, IMAP: 993/143)" +msgstr "" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "If not set, the currency precision will depend on number format" -msgstr "Jika tidak diset, presisi mata uang akan tergantung pada format angka" +msgstr "" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." msgstr "" -#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n" -msgstr "" - #. Description of the 'User Type' (Link) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" -msgstr "Jika pengguna memiliki peran apapun diperiksa, maka pengguna menjadi "Sistem Pengguna". "Sistem Pengguna" memiliki akses ke desktop" - -#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom -#. Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "If unchecked, the value will always be re-fetched on save." msgstr "" -#. Description of the 'Fetch on Save if Empty' (Check) field in DocType -#. 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "If unchecked, the value will always be re-fetched on save." +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "If unchecked, the value will always be re-fetched on save." msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "If user is the owner" -msgstr "Jika pengguna adalah pemilik" +msgstr "" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "If user is the owner" -msgstr "Jika pengguna adalah pemilik" - -#: core/doctype/data_export/exporter.py:206 +#: frappe/core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." msgstr "Jika Anda memperbarui, silahkan pilih \"Overwrite\" baris lain yang ada tidak akan dihapus." -#: core/doctype/data_export/exporter.py:190 +#: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." msgstr "Jika Anda mengunggah data baru, \"Seri Penamaan\" menjadi wajib, jika ada." -#: core/doctype/data_export/exporter.py:187 +#: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Jika Anda mengunggah catatan baru, biarkan kolom \"nama\" (ID) kosong." -#: utils/password.py:200 -msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key." -msgstr "" - -#: core/doctype/doctype/doctype.js:80 -msgid "If you just want to customize for your site, use {0} instead." +#: frappe/utils/password.py:214 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "Jika Anda mengatur ini, item ini akan datang dalam drop-down di bawah induk yang dipilih." +msgstr "" -#: templates/emails/administrator_logged_in.html:3 +#: frappe/templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." msgstr "Jika Anda pikir ini adalah tidak sah, silakan mengubah password Administrator." +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + #. Description of the 'Source Text' (Code) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/translation/translation.json msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "Jika data Anda di HTML, silahkan copy paste kode HTML yang tepat dengan tag." +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore User Permissions" -msgstr "Abaikan Izin Pengguna" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Ignore XSS Filter" -msgstr "Abaikan XSS Filter" +msgstr "" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Ignore attachments over this size" -msgstr "Abaikan lampiran atas ukuran ini" - #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Ignore attachments over this size" -msgstr "Abaikan lampiran atas ukuran ini" +msgstr "" -#. Label of a Table field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Ignored Apps" -msgstr "Aplikasi yang Diabaikan" +msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:349 -msgid "Illegal Access Token. Please try again" -msgstr "Ilegal Access Token. Silakan coba lagi" - -#: model/workflow.py:143 +#: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" msgstr "Status Dokumen Ilegal untuk {0}" -#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128 +#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 +#: frappe/model/db_query.py:1129 msgid "Illegal SQL Query" msgstr "Query SQL Ilegal" -#: utils/jinja.py:95 +#: frappe/utils/jinja.py:127 msgid "Illegal template" msgstr "" -#. Label of a Attach Image field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Image" -msgstr "Gambar" - +#. Label of the image (Attach Image) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Image" -msgstr "Gambar" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Image" -msgstr "Gambar" - +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' -#. Label of a Attach Image field in DocType 'Letter Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Image" -msgstr "Gambar" +msgstr "" -#. Label of a Attach Image field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Image" -msgstr "Gambar" - -#. Label of a Attach field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "Image" -msgstr "Gambar" - -#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Image" -msgstr "Gambar" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Image Field" -msgstr "Bidang gambar" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Image Field" -msgstr "Bidang gambar" - -#. Label of a Float field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Height" msgstr "" -#. Label of a Attach field in DocType 'About Us Team Member' -#: website/doctype/about_us_team_member/about_us_team_member.json -msgctxt "About Us Team Member" +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "Image Link" -msgstr "Image Link" +msgstr "" -#. Label of a Float field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Width" msgstr "" -#: core/doctype/doctype/doctype.py:1457 +#: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" msgstr "bidang gambar harus fieldname valid" -#: core/doctype/doctype/doctype.py:1459 +#: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" msgstr "bidang gambar harus dari jenis Lampirkan gambar" -#: core/doctype/file/utils.py:134 +#: frappe/core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" msgstr "" -#: core/doctype/file/file.js:91 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" -#: public/js/frappe/views/image/image_view.js:13 +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 msgid "Images" msgstr "Gambar" -#: core/doctype/log_settings/log_settings.py:56 +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:378 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:405 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 msgid "Implement `clear_old_logs` method to enable auto error clearing." msgstr "" #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Implicit" -msgstr "Implisit" +msgstr "" -#: core/doctype/recorder/recorder_list.js:21 -#: email/doctype/email_group/email_group.js:31 +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 msgid "Import" msgstr "Impor" -#: public/js/frappe/list/list_view.js:1628 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Impor" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Import" -msgstr "Impor" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Import" -msgstr "Impor" - #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Data Import" +#: frappe/automation/workspace/tools/tools.json msgid "Import Data" -msgstr "Impor Data" +msgstr "" -#: email/doctype/email_group/email_group.js:14 +#: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" msgstr "Impor Email Dari" -#. Label of a Attach field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import File" -msgstr "Impor File" +msgstr "" -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import File Errors and Warnings" -msgstr "Kesalahan dan Peringatan Impor File" +msgstr "" -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Log" -msgstr "Impor Log" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Log Preview" -msgstr "Impor Pratinjau Log" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Preview" -msgstr "Pratinjau Impor" +msgstr "" -#: core/doctype/data_import/data_import.js:41 +#: frappe/core/doctype/data_import/data_import.js:41 msgid "Import Progress" msgstr "Kemajuan Impor" -#: email/doctype/email_group/email_group.js:8 -#: email/doctype/email_group/email_group.js:30 +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 msgid "Import Subscribers" msgstr "Impor Pengikut" -#. Label of a Select field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Type" -msgstr "Jenis Impor" +msgstr "" -#. Label of a HTML field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import Warnings" -msgstr "Peringatan Impor" +msgstr "" -#: public/js/frappe/views/file/file_view.js:117 +#: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" msgstr "Impor Zip" -#. Label of a Data field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Import from Google Sheets" -msgstr "Impor dari Google Sheets" +msgstr "" -#: core/doctype/data_import/importer.py:598 +#: frappe/core/doctype/data_import/importer.py:612 msgid "Import template should be of type .csv, .xlsx or .xls" msgstr "Templat impor harus bertipe .csv, .xlsx atau .xls" -#: core/doctype/data_import/importer.py:467 +#: frappe/core/doctype/data_import/importer.py:482 msgid "Import template should contain a Header and atleast one row." msgstr "Impor template harus berisi Header dan minimal satu baris." -#: core/doctype/data_import/data_import.js:170 +#: frappe/core/doctype/data_import/data_import.js:165 msgid "Import timed out, please re-try." msgstr "" -#: core/doctype/data_import/data_import.py:61 +#: frappe/core/doctype/data_import/data_import.py:68 msgid "Importing {0} is not allowed." msgstr "" -#: integrations/doctype/google_contacts/google_contacts.js:19 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" msgstr "Mengimpor {0} dari {1}" -#: core/doctype/data_import/data_import.js:35 +#: frappe/core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" msgstr "Mengimpor {0} dari {1}, {2}" -#: public/js/frappe/ui/filters/filter.js:20 +#: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" msgstr "... Dalam" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "In Days" -msgstr "Dalam berhari-hari" - -#. Description of the Onboarding Step 'Setup Limited Access for a User' -#: custom/onboarding_step/role_permissions/role_permissions.json -msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions." msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Filter" -msgstr "Dalam Filter" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Filter" -msgstr "Dalam Filter" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "Di Global Search" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Global Search" -msgstr "Di Global Search" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Global Search" -msgstr "Di Global Search" - -#: core/doctype/doctype/doctype.js:95 +#: frappe/core/doctype/doctype/doctype.js:88 msgid "In Grid View" msgstr "Di Grid View" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "In List Filter" msgstr "" -#: core/doctype/doctype/doctype.js:96 +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In List View" msgstr "Dalam Daftar View" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "In List View" -msgstr "Dalam Daftar View" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In List View" -msgstr "Dalam Daftar View" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In List View" -msgstr "Dalam Daftar View" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Preview" -msgstr "Dalam Pratinjau" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Preview" -msgstr "Dalam Pratinjau" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "In Preview" -msgstr "Dalam Pratinjau" - -#: core/doctype/data_import/data_import.js:42 +#: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" msgstr "Sedang berlangsung" -#: database/database.py:233 +#: frappe/database/database.py:287 msgid "In Read Only Mode" msgstr "" -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "In Reply Untuk" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Standard Filter" -msgstr "Di Standard Filter" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "In Standard Filter" -msgstr "Di Standard Filter" - -#. Description of the Onboarding Step 'Generate Custom Reports' -#: custom/onboarding_step/report_builder/report_builder.json -msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n" msgstr "" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "Dalam poin. Default-nya adalah 9." +msgstr "" #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "In seconds" -msgstr "Dalam hitungan detik" +msgstr "" -#: core/doctype/recorder/recorder_list.js:107 +#: frappe/core/doctype/recorder/recorder_list.js:209 msgid "Inactive" msgstr "Tidak aktif" -#: public/js/frappe/ui/field_group.js:131 -msgid "Inavlid Values" -msgstr "" - -#: email/doctype/email_account/email_account_list.js:19 -msgid "Inbox" -msgstr "Kotak masuk" - #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 msgid "Inbox" msgstr "Kotak masuk" #. Name of a role -#: core/doctype/communication/communication.json -#: email/doctype/email_account/email_account.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json msgid "Inbox User" msgstr "Pengguna Inbox" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Include Name Field" msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Include Search in Top Bar" -msgstr "Sertakan Cari di Top Bar" +msgstr "" -#: website/doctype/website_theme/website_theme.js:61 +#: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" msgstr "Sertakan Tema dari Aplikasi" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Include Web View Link in Email" -msgstr "Kirim dokumen Web View link di email" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1488 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1480 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Termasuk lekukan" -#: public/js/frappe/form/controls/password.js:107 +#: frappe/public/js/frappe/form/controls/password.js:106 msgid "Include symbols, numbers and capital letters in the password" msgstr "Sertakan simbol, angka dan huruf kapital di password" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Incoming (POP/IMAP) Settings" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Server" msgstr "" -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Incoming Server" -msgstr "" - -#. Label of a Section Break field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Settings" msgstr "" -#: email/doctype/email_domain/email_domain.py:32 +#: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" msgstr "Akun email masuk tidak benar" -#: model/virtual_doctype.py:81 model/virtual_doctype.py:94 +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: auth.py:236 +#: frappe/auth.py:255 msgid "Incomplete login details" msgstr "Rincian login tidak lengkap" -#: email/smtp.py:103 +#: frappe/email/smtp.py:104 msgid "Incorrect Configuration" msgstr "Konfigurasi Salah" -#: utils/csvutils.py:207 +#: frappe/utils/csvutils.py:234 msgid "Incorrect URL" msgstr "URL salah" -#: utils/password.py:90 +#: frappe/utils/password.py:101 msgid "Incorrect User or Password" msgstr "Pengguna atau Kata Sandi salah" -#: twofactor.py:177 twofactor.py:189 +#: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" msgstr "Kode Verifikasi salah" -#: model/document.py:1352 -msgid "Incorrect value in row {0}: {1} must be {2} {3}" -msgstr "Nilai yang salah dalam baris {0}: {1} harus {2} {3}" +#: frappe/model/document.py:1551 +msgid "Incorrect value in row {0}:" +msgstr "" -#: model/document.py:1356 -msgid "Incorrect value: {0} must be {1} {2}" -msgstr "Nilai yang tidak benar: {0} harus {1} {2}" +#: frappe/model/document.py:1553 +msgid "Incorrect value:" +msgstr "" -#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200 -#: public/js/frappe/model/model.js:114 -#: public/js/frappe/views/reports/report_view.js:941 +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1005 msgid "Index" msgstr "Indeks" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Index" -msgstr "Indeks" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Index" -msgstr "Indeks" - -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Index" -msgstr "Indeks" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Index Web Pages for Search" -msgstr "Indeks Halaman Web untuk Pencarian" +msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing authorization code" msgstr "" -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing refresh token" msgstr "" -#. Label of a Select field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Indicator" -msgstr "Indikator" +msgstr "" -#. Label of a Select field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Indicator Color" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:639 -#: public/js/frappe/views/workspace/workspace.js:967 -#: public/js/frappe/views/workspace/workspace.js:1211 +#: frappe/public/js/frappe/views/workspace/workspace.js:463 msgid "Indicator color" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Info" -msgstr "Info" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Info" -msgstr "Info" - #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Info" -msgstr "Info" +msgstr "" -#: core/doctype/data_export/exporter.py:144 +#: frappe/core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "Info:" +msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Initial Sync Count" -msgstr "Awal Hitungan Sync" +msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "InnoDB" -msgstr "InnoDB" +msgstr "" -#: core/doctype/data_import/data_import_list.js:39 +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 msgid "Insert" -msgstr "Insert" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1712 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Masukkan Setelah" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Insert After" -msgstr "Masukkan Setelah" - -#: custom/doctype/custom_field/custom_field.py:249 +#: frappe/custom/doctype/custom_field/custom_field.py:251 msgid "Insert After cannot be set as {0}" msgstr "Masukkan Setelah tidak dapat ditetapkan sebagai {0}" -#: custom/doctype/custom_field/custom_field.py:242 +#: frappe/custom/doctype/custom_field/custom_field.py:244 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" msgstr "Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field '{1}', dengan label '{2}', tidak ada" -#: public/js/frappe/views/reports/report_view.js:364 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:390 msgid "Insert Column Before {0}" msgstr "Masukkan Kolom Sebelum {0}" -#: public/js/frappe/form/controls/markdown_editor.js:81 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" msgstr "" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Insert New Records" -msgstr "Masukkan catatan baru" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Insert Style" -msgstr "Masukkan Style" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:646 -#: public/js/frappe/ui/toolbar/search_utils.js:647 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 msgid "Install {0} from Marketplace" msgstr "" #. Name of a DocType -#: core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/installed_application/installed_application.json msgid "Installed Application" msgstr "Aplikasi Terinstal" #. Name of a DocType -#: core/doctype/installed_applications/installed_applications.json +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json msgid "Installed Applications" msgstr "Aplikasi Terinstal" -#. Label of a Table field in DocType 'Installed Applications' -#: core/doctype/installed_applications/installed_applications.json -msgctxt "Installed Applications" -msgid "Installed Applications" -msgstr "Aplikasi Terinstal" - -#: core/doctype/installed_applications/installed_applications.js:18 +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" msgstr "" -#: permissions.py:826 +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: database/query.py:371 desk/form/load.py:40 model/document.py:234 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Izin tidak cukup untuk {0}" -#: desk/reportview.py:322 +#: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: desk/reportview.py:293 +#: frappe/desk/reportview.py:331 msgid "Insufficient Permissions for editing Report" msgstr "" -#: core/doctype/doctype/doctype.py:447 +#: frappe/core/doctype/doctype/doctype.py:445 msgid "Insufficient attachment limit" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Int" -msgstr "Int" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Int" -msgstr "Int" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Int" -msgstr "Int" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Int" -msgstr "Int" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Int" -msgstr "Int" +msgstr "" #. Name of a DocType -#: integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" msgstr "integrasi Permintaan" -#. Name of a Workspace -#: integrations/workspace/integrations/integrations.json -msgid "Integrations" -msgstr "Integrasi" - #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Integrations" -msgstr "Integrasi" - -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" msgstr "Integrasi" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "Integrasi dapat menggunakan kolom ini untuk menetapkan status pengiriman surel" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Inter" msgstr "" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "minat" +msgstr "" #. Option for the 'Level' (Select) field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#: frappe/website/doctype/help_article/help_article.json msgid "Intermediate" -msgstr "Menengah" +msgstr "" -#: public/js/frappe/request.js:232 +#: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" msgstr "Kesalahan server dari dalam" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Intro Video URL" msgstr "" #. Description of the 'Company Introduction' (Text Editor) field in DocType #. 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Introduce your company to the website visitor." -msgstr "Memperkenalkan perusahaan Anda kepada pengunjung situs." +msgstr "" -#. Label of a Section Break field in DocType 'Contact Us Settings' -#. Label of a Text Editor field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json msgid "Introduction" -msgstr "Pendahuluan" - -#. Label of a Text Editor field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Introduction" -msgstr "Pendahuluan" - -#. Title of an Onboarding Step -#: website/onboarding_step/introduction_to_website/introduction_to_website.json -msgid "Introduction to Website" msgstr "" #. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us #. Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Introductory information for the Contact Us Page" -msgstr "Informasi pengantar untuk Hubungi Kami Halaman" +msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Introspection URI" msgstr "" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Invalid" -msgstr "cacat" +msgstr "" -#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748 -#: public/js/frappe/form/layout.js:774 +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:833 +#: frappe/public/js/frappe/form/layout.js:811 +#: frappe/public/js/frappe/views/reports/report_view.js:716 msgid "Invalid \"depends_on\" expression" msgstr "Ekspresi "depend_on" tidak valid" -#: public/js/frappe/views/reports/query_report.js:510 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}" -#: public/js/frappe/form/save.js:206 +#: frappe/public/js/frappe/form/save.js:159 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" -#: utils/nestedset.py:181 +#: frappe/utils/nestedset.py:178 msgid "Invalid Action" msgstr "" -#: utils/csvutils.py:35 +#: frappe/utils/csvutils.py:37 msgid "Invalid CSV Format" msgstr "CSV Format valid" -#: integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" msgstr "" -#: email/smtp.py:132 +#: frappe/email/smtp.py:135 msgid "Invalid Credentials" msgstr "Kredensial tidak valid" -#: utils/data.py:124 utils/data.py:285 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Tanggal tidak berlaku" -#: www/list.py:85 +#: frappe/www/list.py:85 msgid "Invalid DocType" msgstr "" -#: database/query.py:95 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" -#: core/doctype/doctype/doctype.py:1223 +#: frappe/core/doctype/doctype/doctype.py:1272 msgid "Invalid Fieldname" msgstr "" -#: core/doctype/file/file.py:206 +#: frappe/core/doctype/file/file.py:209 msgid "Invalid File URL" msgstr "" -#: public/js/form_builder/store.js:216 +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" -#: utils/dashboard.py:61 +#: frappe/utils/dashboard.py:61 msgid "Invalid Filter Value" msgstr "Nilai Filter Tidak Valid" -#: website/doctype/website_settings/website_settings.py:83 +#: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" msgstr "Valid Halaman" -#: utils/verified_command.py:48 www/update-password.html:151 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Tautan tidak valid" -#: www/login.py:112 +#: frappe/www/login.py:128 msgid "Invalid Login Token" msgstr "Valid Login Token" -#: email/receive.py:105 email/receive.py:142 +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 msgid "Invalid Mail Server. Please rectify and try again." msgstr "Mail Server tidak valid. Harap memperbaiki dan coba lagi." -#: model/naming.py:91 +#: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 msgid "Invalid Operation" msgstr "" -#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591 +#: frappe/core/doctype/doctype/doctype.py:1641 +#: frappe/core/doctype/doctype/doctype.py:1650 msgid "Invalid Option" msgstr "Opsi Tidak Valid" -#: email/smtp.py:102 +#: frappe/email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:182 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Output Format valid" -#: integrations/doctype/connected_app/connected_app.py:166 +#: frappe/model/base_document.py:116 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:195 msgid "Invalid Parameters." msgstr "" -#: core/doctype/user/user.py:1195 www/update-password.html:121 -#: www/update-password.html:142 www/update-password.html:144 -#: www/update-password.html:246 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "kata sandi salah" -#: utils/__init__.py:109 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" -#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112 +#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Permintaan tidak valid" -#: desk/search.py:26 +#: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" msgstr "Bidang Penelusuran Tidak Valid {0}" -#: core/doctype/doctype/doctype.py:1165 +#: frappe/core/doctype/doctype/doctype.py:1214 msgid "Invalid Table Fieldname" msgstr "" -#: public/js/workflow_builder/store.js:182 +#: frappe/public/js/workflow_builder/store.js:192 msgid "Invalid Transition" msgstr "" -#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565 -#: utils/csvutils.py:199 utils/csvutils.py:220 +#: frappe/core/doctype/file/file.py:220 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" msgstr "URL tidak valid" -#: email/receive.py:150 +#: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." msgstr "Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba lagi." -#: integrations/doctype/webhook/webhook.py:116 +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:116 msgid "Invalid Webhook Secret" msgstr "" -#: desk/reportview.py:150 +#: frappe/desk/reportview.py:186 msgid "Invalid aggregate function" msgstr "" -#: public/js/frappe/views/reports/report_view.js:373 +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Kolom tidak valid" -#: model/document.py:841 model/document.py:855 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" -#: public/js/frappe/utils/dashboard_utils.js:229 +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" msgstr "Persamaan tidak valid disetel dalam filter {0}" -#: public/js/frappe/utils/dashboard_utils.js:219 +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 msgid "Invalid expression set in filter {0} ({1})" msgstr "Persamaan tidak valid ditetapkan dalam filter {0} ({1})" -#: utils/data.py:2128 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nama bidang tidak valid {0}" -#: core/doctype/doctype/doctype.py:1048 +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "fieldname tidak valid '{0}' di autoname" -#: client.py:344 +#: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" msgstr "Path file tidak valid: {0}" -#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Filter tidak valid: {0}" -#: model/utils/__init__.py:69 -msgid "Invalid include path" -msgstr "Jalur sertakan tidak valid" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" -#: desk/doctype/dashboard/dashboard.py:68 -#: desk/doctype/dashboard_chart/dashboard_chart.py:424 +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Json yang tidak valid ditambahkan dalam opsi ubahsuaian: {0}" -#: model/naming.py:445 +#: frappe/model/naming.py:490 msgid "Invalid name type (integer) for varchar name column" msgstr "" -#: model/naming.py:52 +#: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" msgstr "" -#: core/doctype/data_import/importer.py:438 +#: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Konten tidak valid atau rusak untuk diimpor" -#: website/doctype/website_settings/website_settings.py:139 +#: frappe/website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: app.py:301 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" -#: integrations/doctype/connected_app/connected_app.py:172 -msgid "Invalid state." +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" msgstr "" -#: core/doctype/data_import/importer.py:415 +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "File template tidak valid untuk impor" -#: integrations/doctype/ldap_settings/ldap_settings.py:162 -#: integrations/doctype/ldap_settings/ldap_settings.py:335 +#: frappe/integrations/doctype/connected_app/connected_app.py:201 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 msgid "Invalid username or password" msgstr "username dan password salah" -#: public/js/frappe/web_form/web_form.js:229 +#: frappe/model/naming.py:168 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: core/doctype/doctype/doctype.py:1515 +#: frappe/printing/page/print/print.js:614 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1564 msgid "Invalid {0} condition" msgstr "Kondisi {0} tidak valid" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Inverse" -msgstr "Terbalik" +msgstr "" -#: contacts/doctype/contact/contact.js:25 +#: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Undang sebagai Pengguna" -#: public/js/frappe/ui/filters/filter.js:22 +#: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Aku S" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Is Active" msgstr "Aktif" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Attachments Folder" -msgstr "Apakah Lampiran Folder" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Calendar and Gantt" +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "Apakah Anak Table" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" msgstr "" -#: core/doctype/doctype/doctype_list.js:34 -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Is Child Table" -msgstr "Apakah Anak Table" - -#. Label of a Check field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Is Complete" -msgstr "Selesai" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Is Complete" -msgstr "Selesai" - -#. Label of a Check field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Is Completed" -msgstr "Apakah selesai" +msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" msgstr "" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Is Custom" -msgstr "" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Custom Field" -msgstr "Apakah Custom Field" +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:69 +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Is Default" msgstr "Apakah default" -#. Label of a Check field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "Is Default" -msgstr "Apakah default" - -#. Label of a Check field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Is Dynamic URL?" msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Folder" -msgstr "Apakah Folder" +msgstr "" -#: public/js/frappe/list/list_filter.js:43 +#: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" msgstr "Apakah global" -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "Apakah Home Folder" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "Apakah Lapangan Wajib" +msgstr "" -#. Label of a Check field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Is Optional State" -msgstr "Apakah Status Opsional" +msgstr "" -#. Label of a Check field in DocType 'Contact Email' -#: contacts/doctype/contact_email/contact_email.json -msgctxt "Contact Email" +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json msgid "Is Primary" -msgstr "Apakah Pratama" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Is Primary Contact" -msgstr "Apakah Kontak Utama" +msgstr "" -#. Label of a Check field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "Apakah Ponsel Primer" +msgstr "" -#. Label of a Check field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "Apakah Telepon Utama" +msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Is Private" -msgstr "Apakah Swasta" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "Apakah Publik" +msgstr "" -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Public" -msgstr "Apakah Publik" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Is Published Field" -msgstr "Apakah Diterbitkan Lapangan" +msgstr "" -#: core/doctype/doctype/doctype.py:1466 +#: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" msgstr "Apakah Diterbitkan lapangan harus fieldname valid" -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 msgid "Is Query Report" msgstr "" -#. Label of a Check field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Is Remote Request?" msgstr "" -#: core/doctype/doctype/doctype_list.js:48 +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tunggal" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Single" -msgstr "Tunggal" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Is Single" -msgstr "Tunggal" - -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Skipped" -msgstr "Apakah Dilewati" +msgstr "" -#. Label of a Check field in DocType 'Email Rule' -#: email/doctype/email_rule/email_rule.json -msgctxt "Email Rule" +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "Apakah Spam" +msgstr "" -#. Label of a Check field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json msgid "Is Standard" -msgstr "Adalah Standard" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Select field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Is Standard" -msgstr "Adalah Standard" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Is Standard" -msgstr "Adalah Standard" - -#: core/doctype/doctype/doctype_list.js:25 +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" msgstr "Apakah Submittable" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Submittable" -msgstr "Apakah Submittable" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Is System Generated" -msgstr "" - -#. Label of a Check field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Is System Generated" -msgstr "" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Table" -msgstr "Apakah Tabel" +msgstr "" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Is Table Field" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Is Tree" -msgstr "Apakah Pohon" +msgstr "" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Is Unique" -msgstr "Unik" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Virtual" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Is Virtual" +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Is Virtual" -msgstr "" - -#: core/doctype/file/utils.py:155 utils/file_manager.py:315 +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." msgstr "Hal ini berisiko untuk menghapus file ini: {0}. Silahkan hubungi System Manager Anda." -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Label" -msgstr "Label Item" +msgstr "" -#. Label of a Select field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Type" -msgstr "Tipe barang" +msgstr "" -#: utils/nestedset.py:234 +#: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" msgstr "Item tidak dapat ditambahkan ke keturunan sendiri" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "JS" -msgstr "JS" +msgstr "" -#. Label of a HTML field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "JS Message" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "JSON" -msgstr "JSON" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "JSON" -msgstr "JSON" - -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "JSON" -msgstr "JSON" - +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "JSON" -msgstr "JSON" +msgstr "" -#. Label of a Code field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "JSON Request Body" -msgstr "Badan Permintaan JSON" +msgstr "" -#: templates/signup.html:5 +#: frappe/templates/signup.html:5 msgid "Jane Doe" msgstr "" -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "JavaScript" +msgstr "" #. Description of the 'Javascript' (Code) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "JavaScript Format: frappe.query_reports ['REPORTNAME'] = {}" +msgstr "" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json msgid "Javascript" -msgstr "Javascript" +msgstr "" -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Javascript" -msgstr "Javascript" - -#. Label of a Code field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Javascript" -msgstr "Javascript" - -#. Label of a Code field in DocType 'Website Script' -#: website/doctype/website_script/website_script.json -msgctxt "Website Script" -msgid "Javascript" -msgstr "Javascript" - -#: www/login.html:71 +#: frappe/www/login.html:74 msgid "Javascript is disabled on your browser" msgstr "Javascript dinonaktifkan di browser Anda" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json msgid "Jinja" -msgstr "Jinja" +msgstr "" -#. Label of a Link field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job ID" msgstr "" -#. Label of a Data field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Job ID" -msgstr "" - -#. Label of a Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Job Id" msgstr "" -#. Label of a Section Break field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Info" msgstr "" -#. Label of a Data field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Name" msgstr "" -#. Label of a Section Break field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Job Status" msgstr "" -#: core/doctype/rq_job/rq_job.js:24 +#: frappe/core/doctype/rq_job/rq_job.js:24 msgid "Job Stopped Successfully" msgstr "" -#: core/doctype/rq_job/rq_job.py:122 +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." msgstr "" -#: desk/doctype/event/event.js:51 +#: frappe/desk/doctype/event/event.js:55 msgid "Join video conference with {0}" msgstr "" -#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Lompat ke bidang" -#: public/js/frappe/utils/number_systems.js:17 -#: public/js/frappe/utils/number_systems.js:31 -#: public/js/frappe/utils/number_systems.js:53 +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 msgctxt "Number system" msgid "K" msgstr "" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Kanban" -msgstr "kanban" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "kanban" +msgstr "" #. Name of a DocType -#: desk/doctype/kanban_board/kanban_board.json -msgid "Kanban Board" -msgstr "Papan kanban" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Kanban Board" -msgstr "Papan kanban" - -#. Label of a Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 msgid "Kanban Board" msgstr "Papan kanban" #. Name of a DocType -#: desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" msgstr "Kolom papan Kanban" -#: public/js/frappe/views/kanban/kanban_view.js:385 +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Nama papan kanban" -#. Label of a Data field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Kanban Board Name" -msgstr "Nama papan kanban" - -#: public/js/frappe/views/kanban/kanban_view.js:262 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" -#. Label of a Data field in DocType 'DefaultValue' -#: core/doctype/defaultvalue/defaultvalue.json -msgctxt "DefaultValue" -msgid "Key" -msgstr "Kunci" +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" -#. Label of a Data field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Key" -msgstr "Kunci" +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" -#. Label of a Data field in DocType 'Query Parameters' -#: integrations/doctype/query_parameters/query_parameters.json -msgctxt "Query Parameters" -msgid "Key" -msgstr "Kunci" +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" -#. Label of a Data field in DocType 'Webhook Data' -#: integrations/doctype/webhook_data/webhook_data.json -msgctxt "Webhook Data" +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Key" -msgstr "Kunci" - -#. Label of a Small Text field in DocType 'Webhook Header' -#: integrations/doctype/webhook_header/webhook_header.json -msgctxt "Webhook Header" -msgid "Key" -msgstr "Kunci" - -#. Label of a Data field in DocType 'Website Meta Tag' -#: website/doctype/website_meta_tag/website_meta_tag.json -msgctxt "Website Meta Tag" -msgid "Key" -msgstr "Kunci" +msgstr "" #. Label of a standard help item #. Type: Action -#: hooks.py public/js/frappe/ui/keyboard.js:126 +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" msgstr "Pintasan keyboard" -#: public/js/frappe/utils/number_systems.js:37 +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 msgctxt "Number system" msgid "Kh" msgstr "" #. Label of a Card Break in the Website Workspace -#: website/doctype/help_article/help_article.py:80 -#: website/workspace/website/website.json +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json msgid "Knowledge Base" msgstr "Dasar pengetahuan" #. Name of a role -#: website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Contributor" msgstr "Knowledge Base Kontributor" #. Name of a role -#: website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Editor" -msgstr "Knowledge Base Editor" +msgstr "" -#: public/js/frappe/utils/number_systems.js:27 -#: public/js/frappe/utils/number_systems.js:49 +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 msgctxt "Number system" msgid "L" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "Kolom Surel LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP First Name Field" -msgstr "LDAP Nama Field Pertama" +msgstr "" -#. Label of a Data field in DocType 'LDAP Group Mapping' -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json -msgctxt "LDAP Group Mapping" +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group" -msgstr "Grup LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Field" -msgstr "Bidang Grup LDAP" +msgstr "" #. Name of a DocType -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group Mapping" msgstr "Pemetaan Grup LDAP" -#. Label of a Section Break field in DocType 'LDAP Settings' -#. Label of a Table field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Mappings" -msgstr "Pemetaan Grup LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Member attribute" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Last Name Field" -msgstr "Bidang Nama Belakang LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Middle Name Field" -msgstr "Bidang Nama Tengah LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Mobile Field" -msgstr "Bidang Seluler LDAP" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:160 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" msgstr "LDAP Tidak Terinstal" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Phone Field" -msgstr "Bidang Telepon LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search String" -msgstr "LDAP Cari String" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:127 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search and Paths" msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Security" -msgstr "Keamanan LDAP" +msgstr "" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Settings" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Url" -msgstr "LDAP Server Url" +msgstr "" #. Name of a DocType -#: integrations/doctype/ldap_settings/ldap_settings.json -msgid "LDAP Settings" -msgstr "Pengaturan LDAP" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "LDAP Settings" msgstr "Pengaturan LDAP" -#. Label of a Section Break field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP User Creation and Mapping" -msgstr "Pembuatan dan Pemetaan Pengguna LDAP" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Username Field" -msgstr "LDAP pengguna Lapangan" +msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:308 -#: integrations/doctype/ldap_settings/ldap_settings.py:427 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 msgid "LDAP is not enabled." msgstr "LDAP tidak diaktifkan." -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Groups" msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Users" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:99 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 msgid "LDAP settings incorrect. validation response was: {0}" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:474 -#: public/js/frappe/widgets/widget_dialog.js:606 -#: public/js/frappe/widgets/widget_dialog.js:639 -msgid "Label" -msgstr "Label" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Label" -msgstr "Label" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'DocType Layout Field' -#: custom/doctype/doctype_layout_field/doctype_layout_field.json -msgctxt "DocType Layout Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Chart' -#: desk/doctype/workspace_chart/workspace_chart.json -msgctxt "Workspace Chart" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Custom Block' -#: desk/doctype/workspace_custom_block/workspace_custom_block.json -msgctxt "Workspace Custom Block" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Number Card' -#: desk/doctype/workspace_number_card/workspace_number_card.json -msgctxt "Workspace Number Card" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" -msgid "Label" -msgstr "Label" - -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Label" -msgstr "Label" - -#. Label of a HTML field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "Label Bantuan" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "Label dan Jenis" +msgstr "" -#: custom/doctype/custom_field/custom_field.py:141 +#: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" msgstr "Label adalah wajib" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Landing Page" -msgstr "Halaman Arahan" +msgstr "" -#: public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Pemandangan" #. Name of a DocType -#: core/doctype/language/language.json printing/page/print/print.js:104 +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Bahasa" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Link field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Language" -msgstr "Bahasa" - -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Language Code" -msgstr "Kode bahasa" +msgstr "" -#. Label of a Data field in DocType 'Language' -#: core/doctype/language/language.json -msgctxt "Language" +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json msgid "Language Name" -msgstr "Nama bahasa" +msgstr "" -#. Label of a Datetime field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "6 Bulan Terakhir" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "Terakhir Aktif" +msgstr "" -#. Label of a Datetime field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Last Backup On" -msgstr "Cadangan Terakhir Aktif" - -#. Label of a Datetime field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Last Execution" -msgstr "Eksekusi Terakhir" +msgstr "" -#. Label of a Datetime field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" msgstr "" -#. Label of a Read Only field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "IP Terakhir" +msgstr "" -#. Label of a Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Known Versions" -msgstr "Terakhir Versi Dikenal" +msgstr "" -#. Label of a Read Only field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Login" -msgstr "Terakhir Login" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:242 -#: public/js/frappe/views/dashboard/dashboard_view.js:479 +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 msgid "Last Modified On" msgstr "Terakhir Diubah Pada" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "Bulan lalu" +msgstr "" -#: www/complete_signup.html:19 +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nama Belakang" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Last Name" -msgstr "Nama Belakang" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Last Name" -msgstr "Nama Belakang" - -#. Label of a Date field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Password Reset Date" -msgstr "Tanggal Reset Kata Sandi Terakhir" - -#. Label of a Date field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Last Point Allocation Date" -msgstr "Tanggal Alokasi Poin Terakhir" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 msgid "Last Quarter" -msgstr "Kuartal Terakhir" +msgstr "" -#. Label of a Datetime field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Last Reset Password Key Generated On" msgstr "" -#. Label of a Datetime field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Last Sync On" -msgstr "Sinkron Terakhir Aktif" +msgstr "" -#. Label of a Datetime field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Synced At" +msgstr "" + +#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "Terakhir Disinkronkan" +msgstr "" -#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202 -#: public/js/frappe/model/model.js:120 +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 msgid "Last Updated By" msgstr "Terakhir Diperbarui Oleh" -#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201 -#: public/js/frappe/model/model.js:116 +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" msgstr "Terakhir Diperbarui Pada" -#. Label of a Link field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Last User" -msgstr "Pengguna Terakhir" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 msgid "Last Week" -msgstr "Minggu lalu" +msgstr "" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 msgid "Last Year" -msgstr "Tahun lalu" +msgstr "" -#: public/js/frappe/widgets/chart_widget.js:698 +#: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" msgstr "Terakhir disinkronkan {0}" -#: custom/doctype/customize_form/customize_form.js:186 +#: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" msgstr "" -#: custom/doctype/customize_form/customize_form.js:178 +#: frappe/custom/doctype/customize_form/customize_form.js:186 msgid "Layout will be reset to standard layout, are you sure you want to do this?" msgstr "" -#: desk/page/leaderboard/leaderboard.js:15 -msgid "Leaderboard" -msgstr "LeaderBoard" - -#. Label of an action in the Onboarding Step 'Customize Print Formats' -#: custom/onboarding_step/print_format/print_format.json -msgid "Learn about Standard and Custom Print Formats" -msgstr "" - -#. Title of an Onboarding Step -#: website/onboarding_step/web_page_tour/web_page_tour.json -msgid "Learn about Web Pages" -msgstr "" - -#. Label of an action in the Onboarding Step 'Create Custom Fields' -#: custom/onboarding_step/custom_field/custom_field.json -msgid "Learn how to add Custom Fields" -msgstr "" - -#: website/web_template/section_with_features/section_with_features.html:26 +#: frappe/website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" msgstr "" -#. Label of an action in the Onboarding Step 'Generate Custom Reports' -#: custom/onboarding_step/report_builder/report_builder.json -msgid "Learn more about Report Builders" -msgstr "" - -#. Label of an action in the Onboarding Step 'Custom Document Types' -#: custom/onboarding_step/custom_doctype/custom_doctype.json -msgid "Learn more about creating new DocTypes" -msgstr "" - #. Description of the 'Repeat Till' (Date) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/desk/doctype/event/event.json msgid "Leave blank to repeat always" -msgstr "Biarkan kosong untuk mengulang selalu" +msgstr "" -#: core/doctype/communication/mixins.py:206 -#: email/doctype/email_account/email_account.py:624 +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" msgstr "Tinggalkan percakapan ini" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "" +msgstr "buku besar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Left" -msgstr "Waktu tersisa" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Left" -msgstr "Waktu tersisa" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Left" msgstr "Waktu tersisa" -#: printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 msgctxt "alignment" msgid "Left" msgstr "Waktu tersisa" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Bottom" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Center" msgstr "" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:59 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" msgstr "Meninggalkan percakapan ini" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Legal" +msgstr "Hukum" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" msgstr "" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Length" -msgstr "Panjangnya" - -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Length" -msgstr "Panjangnya" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Length" -msgstr "Panjangnya" - -#: public/js/frappe/ui/chart.js:11 +#: frappe/public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: database/schema.py:133 +#: frappe/database/schema.py:134 msgid "Length of {0} should be between 1 and 1000" msgstr "Panjang {0} harus antara 1 dan 1000" -#: public/js/frappe/widgets/onboarding_widget.js:439 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Let us continue with the onboarding" msgstr "" -#: public/js/frappe/views/workspace/blocks/onboarding.js:94 -#: public/js/frappe/widgets/onboarding_widget.js:602 +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 msgid "Let's Get Started" msgstr "Mari Memulai" -#. Title of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Let's Set Up Your Website." -msgstr "" - -#: utils/password_strength.py:113 +#: frappe/utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" msgstr "Mari kita hindari kata-kata berulang dan karakter" -#: desk/page/setup_wizard/setup_wizard.js:459 +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 msgid "Let's set up your account" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:268 -#: public/js/frappe/widgets/onboarding_widget.js:309 -#: public/js/frappe/widgets/onboarding_widget.js:380 -#: public/js/frappe/widgets/onboarding_widget.js:419 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 msgid "Let's take you back to onboarding" msgstr "Mari membawa Anda kembali ke orientasi" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Letter" -msgstr "Surat" +msgstr "" +#. Label of the letter_head (Link) field in DocType 'Report' #. Name of a DocType -#: printing/doctype/letter_head/letter_head.json -#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18 -#: public/js/frappe/list/bulk_operations.js:43 +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:127 +#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/public/js/frappe/form/templates/print_layout.html:16 +#: frappe/public/js/frappe/list/bulk_operations.js:52 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 msgid "Letter Head" msgstr "Surat Kepala" -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Letter Head" -msgstr "Surat Kepala" - -#. Label of a Select field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Based On" -msgstr "Kepala Surat Berdasarkan" +msgstr "" -#. Label of a Section Break field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Image" -msgstr "Gambar Kepala Surat" +msgstr "" -#. Label of a Data field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 msgid "Letter Head Name" -msgstr "Nama Surat Kepala" +msgstr "" -#: printing/doctype/letter_head/letter_head.py:45 +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:48 msgid "Letter Head cannot be both disabled and default" msgstr "" #. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter #. Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" +#: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head in HTML" -msgstr "Surat Kepala di HTML" +msgstr "" -#: core/page/permission_manager/permission_manager.js:213 +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/website/doctype/help_article/help_article.json msgid "Level" -msgstr "Level" +msgstr "" -#. Label of a Int field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Level" -msgstr "Level" - -#. Label of a Int field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Level" -msgstr "Level" - -#. Label of a Select field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Level" -msgstr "Level" - -#: core/page/permission_manager/permission_manager.js:450 +#: frappe/core/page/permission_manager/permission_manager.js:467 msgid "Level 0 is for document level permissions, higher levels for field level permissions." msgstr "Level 0 untuk izin tingkat dokumen, tingkat yang lebih tinggi untuk izin tingkat bidang." -#. Label of a Data field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Level Name" -msgstr "Nama Level" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 msgid "License" -msgstr "Lisensi" +msgstr "" -#. Label of a Select field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "License Type" msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Light" msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Light Blue" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Light Blue" msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Light Color" -msgstr "Warna Terang" +msgstr "" -#: public/js/frappe/ui/theme_switcher.js:60 +#: frappe/public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" msgstr "" -#: public/js/frappe/ui/filters/filter.js:18 -msgid "Like" -msgstr "Suka" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" msgstr "Suka" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Like" -msgstr "Suka" - -#. Label of a Int field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the like_limit (Int) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit" msgstr "" #. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit per hour" msgstr "" -#: templates/includes/likes/likes.py:30 +#: frappe/templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" msgstr "" -#: desk/like.py:91 +#: frappe/desk/like.py:92 msgid "Liked" msgstr "Menyukai" -#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205 -#: public/js/frappe/model/model.js:124 +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 msgid "Liked By" msgstr "Dengan menyukai" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Likes" msgstr "Suka" -#. Label of a Int field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Limit" -msgstr "Membatasi" +msgstr "" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Limit Number of DB Backups" -msgstr "Batasi Jumlah Cadangan DB" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "Baris" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Link" -msgstr "Tautan" - -#. Label of a Small Text field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Link" -msgstr "Tautan" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link" -msgstr "Tautan" - -#. Label of a Data field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Link" -msgstr "Tautan" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Link" -msgstr "Tautan" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Link" -msgstr "Tautan" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Link" -msgstr "Tautan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Link" -msgstr "Tautan" +msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Link Cards" -msgstr "Tautkan Kartu" +msgstr "" -#. Label of a Int field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Count" msgstr "" -#. Label of a Section Break field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "Link DocType" +msgstr "" -#. Label of a Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" -msgid "Link DocType" -msgstr "Link DocType" - -#. Label of a Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "Tautkan Jenis Dokumen" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403 -#: workflow/doctype/workflow_action/workflow_action.py:202 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 msgid "Link Expired" msgstr "Tautan Kedaluwarsa" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link Fieldname" -msgstr "Tautan Fieldname" +msgstr "" -#. Label of a JSON field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" msgstr "" -#. Label of a JSON field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Link Filters" -msgstr "" - -#. Label of a JSON field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Link Filters" -msgstr "" - -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "Link Nama" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" -msgid "Link Name" -msgstr "Link Nama" - -#. Label of a Dynamic Link field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Name" -msgstr "Link Nama" - -#. Label of a Read Only field in DocType 'Communication Link' -#: core/doctype/communication_link/communication_link.json -msgctxt "Communication Link" +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "Link Title" +msgstr "" -#. Label of a Read Only field in DocType 'Dynamic Link' -#: core/doctype/dynamic_link/dynamic_link.json -msgctxt "Dynamic Link" -msgid "Link Title" -msgstr "Link Title" - -#. Label of a Dynamic Link field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "Tautan ke" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Link To" -msgstr "Tautan ke" +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" -#. Label of a Select field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" msgstr "" -#: website/doctype/about_us_settings/about_us_settings.js:6 +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" msgstr "" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "Link ke halaman yang ingin Anda buka. Kosongkan jika Anda ingin membuatnya kelompok orang tua." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Linked" -msgstr "Terkait" - #. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json msgid "Linked" -msgstr "Terkait" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Linked Documents" -msgstr "Dokumen Tertaut" - -#: public/js/frappe/form/linked_with.js:23 +#: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" msgstr "Terhubung Dengan" -#: contacts/doctype/address/address.js:39 -#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366 +#. Label of the links (Table) field in DocType 'Address' +#. Label of the links (Table) field in DocType 'Contact' +#. Label of the links_section (Tab Break) field in DocType 'DocType' +#. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Links" -msgstr "Links" - -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Links" -msgstr "Links" +msgstr "" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "List" -msgstr "Daftar" - #. Option for the 'View' (Select) field in DocType 'Form Tour' #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "List" -msgstr "Daftar" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" -msgstr "Daftar" +msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "List / Search Settings" msgstr "" -#. Label of a Table field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "List Columns" msgstr "" #. Name of a DocType -#: desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/list_filter/list_filter.json msgid "List Filter" msgstr "Daftar filter" -#. Label of a HTML field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Setting Message" -msgstr "" +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "Pengaturan Daftar" -#: public/js/frappe/list/list_view.js:1708 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Pengaturan Daftar" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "List Settings" -msgstr "Pengaturan Daftar" - -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "List Settings" -msgstr "Pengaturan Daftar" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List Settings" -msgstr "Pengaturan Daftar" +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" #. Name of a DocType -#: desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "List View Settings" msgstr "Pengaturan Tampilan Daftar" -#: public/js/frappe/ui/toolbar/awesome_bar.js:161 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 msgid "List a document type" msgstr "Daftar jenis dokumen" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]" - #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "Daftar sebagai [{ "label": _ ( "Jobs"), "rute": "pekerjaan"}]" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:526 +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 msgid "Lists" msgstr "" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Load Balancing" -msgstr "Penyeimbang beban" +msgstr "" -#: website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Muat lebih banyak" -#: public/js/frappe/form/footer/form_timeline.js:214 +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" msgid "Load More Communications" msgstr "" -#: core/page/permission_manager/permission_manager.js:165 -#: public/js/frappe/list/base_list.js:465 +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:511 +#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Memuat" -#: core/doctype/data_import/data_import.js:262 +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." msgstr "Memuat file impor ..." -#: desk/page/user_profile/user_profile_controller.js:20 -msgid "Loading user profile" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Loading versions..." msgstr "" -#: public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Memuat..." -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Location" msgstr "Lokasi" -#. Label of a Code field in DocType 'Package Import' -#: core/doctype/package_import/package_import.json -msgctxt "Package Import" +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json msgid "Log" -msgstr "Log" +msgstr "" -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Log Data" -msgstr "Log Data" +msgstr "" -#. Label of a Link field in DocType 'Logs To Clear' -#: core/doctype/logs_to_clear/logs_to_clear.json -msgctxt "Logs To Clear" +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" msgstr "" -#: templates/emails/login_with_email_link.html:28 +#: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" msgstr "" -#. Label of a Int field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Log Index" msgstr "" #. Name of a DocType -#: core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json msgid "Log Setting User" msgstr "Pengguna Pengaturan Log" #. Name of a DocType -#: core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 msgid "Log Settings" msgstr "Pengaturan Log" -#: www/app.py:21 +#: frappe/www/app.py:23 msgid "Log in to access this page." msgstr "Masuk untuk mengakses halaman ini." #. Label of a standard navbar item #. Type: Action -#: hooks.py website/doctype/website_settings/website_settings.py:182 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" msgstr "" -#: handler.py:123 +#: frappe/handler.py:118 msgid "Logged Out" msgstr "Keluar" -#: public/js/frappe/web_form/webform_script.js:16 -#: templates/discussions/discussions_section.html:60 -#: templates/discussions/reply_section.html:43 -#: templates/includes/navbar/dropdown_login.html:15 -#: templates/includes/navbar/navbar_login.html:24 -#: website/page_renderers/not_permitted_page.py:22 www/login.html:42 -msgid "Login" -msgstr "Masuk" - #. Option for the 'Operation' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 msgid "Login" msgstr "Masuk" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Login" -msgstr "Masuk" - -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "Login Setelah" +msgstr "" -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "Login Sebelum" +msgstr "" -#: public/js/frappe/desk.js:235 +#: frappe/public/js/frappe/desk.js:256 msgid "Login Failed please try again" msgstr "" -#: email/doctype/email_account/email_account.py:134 +#: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" msgstr "Id Login diperlukan" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login Methods" msgstr "" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Login Required" -msgstr "Login Diperlukan" - -#: www/login.py:137 +#: frappe/www/login.py:156 msgid "Login To {0}" msgstr "" -#: twofactor.py:265 +#: frappe/twofactor.py:260 msgid "Login Verification Code from {}" msgstr "Kode Verifikasi Masuk dari {}" -#: www/login.html:97 -msgid "Login With {0}" -msgstr "" - -#: templates/emails/new_message.html:4 +#: frappe/templates/emails/new_message.html:4 msgid "Login and view in Browser" msgstr "Login dan lihat di Browser" -#: website/doctype/web_form/web_form.js:358 +#: frappe/website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" -#: auth.py:322 auth.py:325 +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:339 frappe/auth.py:342 msgid "Login not allowed at this time" msgstr "Login tidak diizinkan untuk saat ini" -#: twofactor.py:165 +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 msgid "Login session expired, refresh page to retry" msgstr "Sesi login kadaluarsa, refresh halaman untuk mencoba lagi" -#: templates/includes/comments/comments.html:110 +#: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" msgstr "Masuk untuk berkomentar" -#: templates/includes/comments/comments.html:6 +#: frappe/templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" msgstr "" -#: www/login.html:61 +#: frappe/www/login.html:64 msgid "Login to {0}" msgstr "" -#: www/login.html:106 +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" msgstr "" -#: www/login.html:46 +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 msgid "Login with LDAP" msgstr "Masuk dengan LDAP" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link expiry (in minutes)" msgstr "" -#: auth.py:131 +#: frappe/auth.py:144 msgid "Login with username and password is not allowed." msgstr "" -#. Label of a Int field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" -msgid "Logo Width" -msgstr "Lebar Logo" +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 msgid "Logout" -msgstr "Keluar" +msgstr "" -#: core/doctype/user/user.js:179 +#: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" msgstr "Keluar dari Semua Sesi" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Logout All Sessions on Password Reset" -msgstr "Keluar dari Semua Sesi saat Reset Kata Sandi" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Logout From All Devices After Changing Password" -msgstr "Keluar Dari Semua Perangkat Setelah Mengubah Kata Sandi" - -#. Label of a Card Break in the Users Workspace -#: core/workspace/users/users.json -msgid "Logs" -msgstr "Log" +msgstr "" #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Logs" msgstr "Log" #. Name of a DocType -#: core/doctype/logs_to_clear/logs_to_clear.json +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Logs To Clear" msgstr "" -#. Label of a Table field in DocType 'Log Settings' -#: core/doctype/log_settings/log_settings.json -msgctxt "Log Settings" +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json msgid "Logs to Clear" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Long Text" -msgstr "Panjang Teks" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Long Text" -msgstr "Panjang Teks" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Long Text" -msgstr "Panjang Teks" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:322 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 msgid "Looks like you didn't change the value" msgstr "Sepertinya Anda tidak mengubah nilainya" -#: www/third_party_apps.html:57 +#: frappe/www/third_party_apps.html:59 msgid "Looks like you haven’t added any third party apps." msgstr "" -#: public/js/frappe/form/sidebar/assign_to.js:190 -msgid "Low" -msgstr "Rendah" +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 msgid "Low" msgstr "Rendah" -#: public/js/frappe/utils/number_systems.js:13 +#: frappe/public/js/frappe/utils/number_systems.js:13 msgctxt "Number system" msgid "M" msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "MIT License" msgstr "" -#. Label of a Text Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section" -msgstr "Bagian Utama" +msgstr "" -#. Label of a HTML Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section (HTML)" -msgstr "Bagian Utama (HTML)" +msgstr "" -#. Label of a Markdown Editor field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Main Section (Markdown)" -msgstr "Bagian Utama (Penurunan Harga)" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" msgstr "Manajer Pemeliharaan" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json msgid "Maintenance User" msgstr "Pengguna Pemeliharaan" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Major" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Make \"name\" searchable in Global Search" -msgstr "Membuat "nama" dicari di Search global" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Make Attachments Public by Default" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" msgstr "" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" msgstr "" -#: utils/password_strength.py:94 +#: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" msgstr "Memanfaatkan pola keyboard lagi" -#: public/js/frappe/form/multi_select_dialog.js:86 +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" msgstr "Buat {0}" -#: website/doctype/web_page/web_page.js:77 +#: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" msgstr "Menjadikan halaman publik" -#: www/me.html:50 -msgid "Manage third party apps" +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" msgstr "" -#: www/me.html:59 -msgid "Manage your apps" +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Mandatory" msgstr "Wajib" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Check field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Mandatory" -msgstr "Wajib" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" - -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Mandatory Depends On" -msgstr "Wajib Tergantung" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" msgstr "" -#: website/doctype/web_form/web_form.py:412 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Informasi wajib hilang:" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" msgstr "bidang wajib: menetapkan peran untuk" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" msgstr "bidang wajib: {0}" -#: public/js/frappe/form/save.js:167 +#: frappe/public/js/frappe/form/save.js:120 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}" -#: public/js/frappe/form/save.js:172 +#: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" msgstr "Bidang wajib yang dibutuhkan dalam {0}" -#: public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" -#: core/doctype/data_export/exporter.py:142 +#: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" msgstr "Wajib:" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Map" msgstr "" -#: public/js/frappe/data_import/import_preview.js:190 -#: public/js/frappe/data_import/import_preview.js:302 +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 msgid "Map Columns" msgstr "Kolom Peta" -#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Map route parameters into form variables. Example /project/<name>" -msgstr "Petakan parameter rute ke dalam variabel formulir. Contoh /project/<name>" +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" -#: core/doctype/data_import/importer.py:877 +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 msgid "Mapping column {0} to field {1}" msgstr "Memetakan kolom {0} ke bidang {1}" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Left" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Right" msgstr "" -#. Label of a Float field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:44 +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 msgid "Mark all as read" msgstr "" -#: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:21 +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 msgid "Mark as Read" msgstr "Tandai sebagai membaca" -#: core/doctype/communication/communication.js:95 +#: frappe/core/doctype/communication/communication.js:95 msgid "Mark as Spam" msgstr "Tandai sebagai Spam" -#: core/doctype/communication/communication.js:78 -#: core/doctype/communication/communication_list.js:24 +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 msgid "Mark as Unread" msgstr "Tandai sebagai Belum dibaca" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Markdown" -msgstr "Penurunan harga" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Markdown" -msgstr "Penurunan harga" - #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Markdown" -msgstr "Penurunan harga" - +#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Markdown" -msgstr "Penurunan harga" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Markdown Editor" -msgstr "Editor penurunan harga" - -#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Marked As Spam" -msgstr "Ditandai Sebagai Spam" - -#. Name of a DocType -#: website/doctype/marketing_campaign/marketing_campaign.json -msgid "Marketing Campaign" msgstr "" +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "Nahkoda" + #. Description of the 'Limit' (Int) field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Max 500 records at a time" -msgstr "Max 500 catatan pada satu waktu" +msgstr "" -#. Label of a Int field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Max Attachment Size (in MB)" -msgstr "Max Ukuran Lampiran (dalam MB)" - -#. Label of a Int field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the max_attachments (Int) field in DocType 'DocType' +#. Label of the max_attachments (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Max Attachments" -msgstr "Max Lampiran" +msgstr "" -#. Label of a Int field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Max Attachments" -msgstr "Max Lampiran" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the max_file_size (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Max File Size (MB)" msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Max Height" msgstr "" -#. Label of a Int field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the max_length (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Length" -msgstr "Panjang maksimal" +msgstr "" -#. Label of a Int field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "" + +#. Label of the max_value (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Value" -msgstr "Max Nilai" +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Max auto email report per user" msgstr "" -#: core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1342 msgid "Max width for type Currency is 100px in row {0}" msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}" #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Maximum" -msgstr "Maksimum" +msgstr "" -#: core/doctype/file/file.py:317 +#: frappe/core/doctype/file/file.py:320 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of a Select field in DocType 'List View Settings' -#: desk/doctype/list_view_settings/list_view_settings.json -msgctxt "List View Settings" +#. Label of the total_fields (Select) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Maximum Number of Fields" -msgstr "Jumlah Bidang Maksimum" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Maximum Points" -msgstr "Poin Maksimum" - -#: public/js/frappe/form/sidebar/attachments.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "" -"Maximum points allowed after multiplying points with the multiplier value\n" -"(Note: For no limit leave this field empty or set 0)" -msgstr "" - -#: model/rename_doc.py:675 +#: frappe/model/rename_doc.py:690 msgid "Maximum {0} rows allowed" msgstr "Maksimum {0} baris diperbolehkan" -#: public/js/frappe/list/list_sidebar_group_by.js:221 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" msgstr "Saya" -#: public/js/frappe/form/sidebar/assign_to.js:194 -#: public/js/frappe/utils/utils.js:1719 -#: website/report/website_analytics/website_analytics.js:40 -msgid "Medium" -msgstr "Sedang" +#: frappe/core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" #. Option for the 'Priority' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Medium" -msgstr "Sedang" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" msgstr "Sedang" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Meeting" -msgstr "Pertemuan" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json msgid "Meeting" -msgstr "Pertemuan" +msgstr "" -#. Label of a Data field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/email/doctype/notification/notification.js:196 +#: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" #. Group in Email Group's connections -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#: frappe/email/doctype/email_group/email_group.json msgid "Members" msgstr "" +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Mention" -msgstr "Menyebut" +msgstr "" -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Mentions" -msgstr "Penyebutan" +msgstr "" -#: public/js/frappe/ui/page.js:155 +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 msgid "Menu" -msgstr "Menu" +msgstr "" -#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719 +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 msgid "Merge with existing" msgstr "Merger dengan yang ada" -#: utils/nestedset.py:310 +#: frappe/utils/nestedset.py:307 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to-Leaf Node" -#: public/js/frappe/ui/messages.js:175 -#: public/js/frappe/views/communication.js:110 www/message.html:3 -#: www/message.html:25 +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 msgid "Message" msgstr "Pesan" -#. Label of a Text Editor field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Section Break field in DocType 'Auto Email Report' -#. Label of a Text Editor field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Message" -msgstr "Pesan" - -#: __init__.py:527 public/js/frappe/ui/messages.js:267 +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" msgstr "Pesan" -#. Label of a Code field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message" -msgstr "Pesan" - -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Code field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text Editor field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Small Text field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" -msgid "Message" -msgstr "Pesan" - -#. Label of a Data field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Message" -msgstr "Pesan" - -#. Label of a Text field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Message" -msgstr "Pesan" - -#. Label of a HTML Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message (HTML)" -msgstr "Pesan (HTML)" - -#. Label of a Markdown Editor field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Message (Markdown)" -msgstr "Pesan (penurunan harga)" - -#. Label of a HTML field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Message Examples" -msgstr "Contoh pesan" +msgstr "" -#. Label of a Small Text field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the message_id (Small Text) field in DocType 'Communication' +#. Label of the message_id (Small Text) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Message ID" -msgstr "pesan ID" +msgstr "" -#. Label of a Small Text field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Message ID" -msgstr "pesan ID" - -#. Label of a Data field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "Parameter pesan" +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "Pesan terkirim" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Message Type" msgstr "" -#: public/js/frappe/views/communication.js:841 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Pesan terpotong" -#: email/doctype/email_account/email_account.py:299 +#: frappe/email/doctype/email_account/email_account.py:344 msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" -#: automation/doctype/auto_repeat/auto_repeat.js:102 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Message not setup" msgstr "Pesan tidak disetel" -#. Description of the 'Success Message' (Text) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Description of the 'Success message' (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Message to be displayed on successful completion" msgstr "" -#. Label of a Code field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Message-id" -msgstr "Pesan-id" +msgstr "" -#. Label of a Code field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the messages (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Meta" msgstr "" -#: website/doctype/web_page/web_page.js:124 +#. Label of the meta_description (Small Text) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Deskripsi meta" -#. Label of a Small Text field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Description" -msgstr "Deskripsi meta" - -#. Label of a Small Text field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Description" -msgstr "Deskripsi meta" - -#: website/doctype/web_page/web_page.js:131 +#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Gambar Meta" -#. Label of a Attach Image field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Image" -msgstr "Gambar Meta" - -#. Label of a Attach Image field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Image" -msgstr "Gambar Meta" - -#. Label of a Section Break field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "Tag Meta" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Meta Tags" -msgstr "Tag Meta" - -#. Label of a Table field in DocType 'Website Route Meta' -#: website/doctype/website_route_meta/website_route_meta.json -msgctxt "Website Route Meta" -msgid "Meta Tags" -msgstr "Tag Meta" - -#: website/doctype/web_page/web_page.js:117 +#. Label of the meta_title (Data) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Judul Meta" -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Meta Title" -msgstr "Judul Meta" +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "" -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Meta Title" -msgstr "Judul Meta" +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" -#: website/doctype/web_page/web_page.js:110 +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" msgstr "Judul meta untuk SEO" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Method" -msgstr "Metode" - -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Method" -msgstr "Metode" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json msgid "Method" -msgstr "Metode" +msgstr "" -#. Label of a Data field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Method" -msgstr "Metode" +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" -#. Label of a Select field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Method" -msgstr "Metode" - -#. Label of a Data field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Method" -msgstr "Metode" - -#: desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the middle_name (Data) field in DocType 'Contact' +#. Label of the middle_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json msgid "Middle Name" -msgstr "Nama tengah" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Middle Name" -msgstr "Nama tengah" +msgstr "" #. Name of a DocType -#: automation/doctype/milestone/milestone.json -msgid "Milestone" -msgstr "Batu" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Milestone" +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json msgid "Milestone" msgstr "Batu" +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' #. Name of a DocType -#: automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "Milestone Tracker" - -#. Label of a Link field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Milestone Tracker" -msgstr "Milestone Tracker" +msgstr "" #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Minimum" -msgstr "Minimum" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Minimum Password Score" -msgstr "Skor Kata Kunci Minimum" +msgstr "" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Minor" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:100 -#: integrations/doctype/ldap_settings/ldap_settings.py:105 -#: integrations/doctype/ldap_settings/ldap_settings.py:114 -#: integrations/doctype/ldap_settings/ldap_settings.py:122 -#: integrations/doctype/ldap_settings/ldap_settings.py:332 +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Misconfigured" msgstr "" -#: desk/form/meta.py:213 +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 msgid "Missing DocType" msgstr "" -#: core/doctype/doctype/doctype.py:1477 +#: frappe/core/doctype/doctype/doctype.py:1526 msgid "Missing Field" msgstr "" -#: public/js/frappe/form/save.js:178 +#: frappe/public/js/frappe/form/save.js:131 msgid "Missing Fields" msgstr "hilang Fields" -#: email/doctype/auto_email_report/auto_email_report.py:123 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" -#: desk/form/assign_to.py:105 +#: frappe/desk/form/assign_to.py:110 msgid "Missing Permission" msgstr "" -#: www/update-password.html:107 www/update-password.html:114 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" -#: public/js/frappe/ui/field_group.js:118 -#: public/js/frappe/widgets/widget_dialog.js:330 -#: public/js/workflow_builder/store.js:97 -#: workflow/doctype/workflow/workflow.js:71 +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" msgstr "Hilang Nilai Diperlukan" -#: www/login.py:96 +#: frappe/www/login.py:107 msgid "Mobile" msgstr "" -#: tests/test_translate.py:86 tests/test_translate.py:89 -#: tests/test_translate.py:91 tests/test_translate.py:94 +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 msgid "Mobile No" -msgstr "Ponsel Tidak ada" +msgstr "" -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Mobile No" -msgstr "Ponsel Tidak ada" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Mobile No" -msgstr "Ponsel Tidak ada" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Models" -msgstr "" - -#: core/report/transaction_log_report/transaction_log_report.py:106 -#: social/doctype/energy_point_rule/energy_point_rule.js:43 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 msgid "Modified By" msgstr "dimodifikasi By" -#: core/doctype/doctype/doctype_list.js:17 +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Module" msgstr "Modul" -#. Label of a Data field in DocType 'Block Module' -#: core/doctype/block_module/block_module.json -msgctxt "Block Module" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'User Type Module' -#: core/doctype/user_type_module/user_type_module.json -msgctxt "User Type Module" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Module" -msgstr "Modul" - -#. Label of a Link field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Module (for export)" -msgstr "" - -#. Label of a Link field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" msgstr "" #. Name of a DocType -#: core/doctype/module_def/module_def.json -msgid "Module Def" -msgstr "Modul Def" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Module Def" +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json msgid "Module Def" msgstr "Modul Def" -#. Linked DocType in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" -msgid "Module Def" -msgstr "Modul Def" - -#. Label of a HTML field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json msgid "Module HTML" msgstr "" -#. Label of a Data field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Module Name" -msgstr "Nama Modul" - -#. Label of a Data field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Module Name" -msgstr "Nama Modul" - -#. Name of a DocType -#: desk/doctype/module_onboarding/module_onboarding.json -msgid "Module Onboarding" -msgstr "Modul Onboarding" +msgstr "" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Module Onboarding" +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" msgstr "Modul Onboarding" #. Name of a DocType -#: core/doctype/module_profile/module_profile.json -msgid "Module Profile" -msgstr "" - +#. Label of the module_profile (Link) field in DocType 'User' #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Module Profile" +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" msgstr "" -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Module Profile" -msgstr "" - -#. Label of a Data field in DocType 'Module Profile' -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" +#. Label of the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json msgid "Module Profile Name" msgstr "" -#: desk/doctype/module_onboarding/module_onboarding.py:68 +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" msgstr "" -#: custom/doctype/customize_form/customize_form.js:208 +#: frappe/custom/doctype/customize_form/customize_form.js:250 msgid "Module to Export" msgstr "Modul untuk Ekspor" -#: modules/utils.py:261 +#: frappe/modules/utils.py:273 msgid "Module {} not found" msgstr "" -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Modules" -msgstr "Modul" - #. Group in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json msgid "Modules" msgstr "Modul" -#. Label of a HTML field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "Modul HTML" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Monday" -msgstr "Senin" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Monday" -msgstr "Senin" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Monday" -msgstr "Senin" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Monday" -msgstr "Senin" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Monday" -msgstr "Senin" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "Monospace" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:268 +#: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" msgstr "Bulan" -#: public/js/frappe/utils/common.js:400 -#: website/report/website_analytics/website_analytics.js:25 -msgid "Monthly" -msgstr "Bulanan" - +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 msgid "Monthly" msgstr "Bulanan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Monthly" -msgstr "Bulanan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Monthly" -msgstr "Bulanan" - -#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Monthly Long" -msgstr "Panjang Bulanan" +msgstr "" -#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Monthly Long" -msgstr "Panjang Bulanan" - -#: public/js/frappe/form/link_selector.js:39 -#: public/js/frappe/form/multi_select_dialog.js:43 -#: public/js/frappe/form/multi_select_dialog.js:70 -#: templates/includes/list/list.html:23 -#: templates/includes/search_template.html:13 +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 msgid "More" msgstr "Lanjut" -#. Label of a Section Break field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "More Information" -msgstr "Informasi lebih" +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json msgid "More Information" -msgstr "Informasi lebih" +msgstr "" -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "More Information" -msgstr "Informasi lebih" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "More Information" -msgstr "Informasi lebih" - -#: website/doctype/help_article/templates/help_article.html:19 -#: website/doctype/help_article/templates/help_article.html:33 +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" msgstr "artikel lebih lanjut tentang {0}" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "More content for the bottom of the page." -msgstr "Konten lainnya untuk bagian bawah halaman." +msgstr "" -#: public/js/frappe/ui/sort_selector.js:193 +#: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" msgstr "sebagian Digunakan" -#: utils/password.py:65 +#: frappe/utils/password.py:76 msgid "Most probably your password is too long." msgstr "" -#: core/doctype/communication/communication.js:86 -#: core/doctype/communication/communication.js:194 -#: core/doctype/communication/communication.js:212 +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Move" msgstr "Bergerak" -#: public/js/frappe/form/grid_row.js:189 +#: frappe/public/js/frappe/form/grid_row.js:193 msgid "Move To" msgstr "Pindah ke" -#: core/doctype/communication/communication.js:104 +#: frappe/core/doctype/communication/communication.js:104 msgid "Move To Trash" msgstr "Pindah Untuk Sampah" -#: public/js/frappe/form/form.js:176 +#: frappe/public/js/form_builder/components/Section.vue:295 +msgid "Move current and all subsequent sections to a new tab" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:177 msgid "Move cursor to above row" msgstr "" -#: public/js/frappe/form/form.js:180 +#: frappe/public/js/frappe/form/form.js:181 msgid "Move cursor to below row" msgstr "" -#: public/js/frappe/form/form.js:184 +#: frappe/public/js/frappe/form/form.js:185 msgid "Move cursor to next column" msgstr "" -#: public/js/frappe/form/form.js:188 +#: frappe/public/js/frappe/form/form.js:189 msgid "Move cursor to previous column" msgstr "" -#: public/js/frappe/form/grid_row.js:165 +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:237 +msgid "Move the current field and the following fields to a new column" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:168 msgid "Move to Row Number" msgstr "Pindah ke Nomor Baris" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Move to next step when clicked inside highlighted area." msgstr "" #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" msgstr "" -#: utils/nestedset.py:334 +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "" + +#: frappe/utils/nestedset.py:331 msgid "Multiple root nodes not allowed." msgstr "Beberapa node akar tidak diperbolehkan." -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Multiplier Field" -msgstr "Bidang Pengganda" - #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Must be a publicly accessible Google Sheets URL" -msgstr "Harus berupa URL Google Spreadsheet yang dapat diakses publik" +msgstr "" #. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" msgstr "" -#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Must be of type \"Attach Image\"" -msgstr "Harus dari jenis "Lampirkan Gambar"" - #. Description of the 'Image Field' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Must be of type \"Attach Image\"" -msgstr "Harus dari jenis "Lampirkan Gambar"" +msgstr "" -#: desk/query_report.py:202 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Harus memiliki ijin laporan untuk mengakses laporan ini." -#: core/doctype/report/report.py:148 +#: frappe/core/doctype/report/report.py:151 msgid "Must specify a Query to run" msgstr "Harus menentukan Query untuk menjalankan" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Mute Sounds" -msgstr "Suara bisu" +msgstr "" -#: templates/includes/web_sidebar.html:41 -#: website/doctype/web_form/web_form.py:401 -#: website/doctype/website_settings/website_settings.py:181 www/list.py:21 -#: www/me.html:4 www/me.html:8 www/update_password.py:10 +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" msgstr "Akun Saya" -#. Label of a standard navbar item -#. Type: Route -#: hooks.py -msgid "My Profile" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" msgstr "" -#. Label of a standard navbar item -#. Type: Action -#: hooks.py -msgid "My Settings" +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "MyISAM" -msgstr "MyISAM" +msgstr "" -#: workflow/doctype/workflow/workflow.js:19 +#: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." msgstr "" #. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" msgstr "" -#: public/js/frappe/form/layout.js:75 -#: public/js/frappe/form/multi_select_dialog.js:239 -#: public/js/frappe/form/save.js:154 -#: public/js/frappe/views/file/file_view.js:97 -#: website/doctype/website_slideshow/website_slideshow.js:25 +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" msgstr "Nama" -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Name" -msgstr "Nama" +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Name" -msgstr "Nama" - -#. Label of a Data field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" -msgid "Name" -msgstr "Nama" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Name" -msgstr "Nama" - -#: desk/utils.py:22 +#: frappe/desk/utils.py:22 msgid "Name already taken, please set a new name" msgstr "" -#: model/naming.py:460 +#: frappe/model/naming.py:504 msgid "Name cannot contain special characters like {0}" msgstr "Nama tidak boleh berisi karakter khusus seperti {0}" -#: custom/doctype/custom_field/custom_field.js:91 +#: frappe/custom/doctype/custom_field/custom_field.js:91 msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" msgstr "Nama Tipe Dokumen (DocType) Anda ingin bidang ini dapat dihubungkan dengan. misalnya Pelanggan" -#: printing/page/print_format_builder/print_format_builder.js:117 +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" msgstr "Nama Print Format baru" -#: model/naming.py:454 +#: frappe/model/naming.py:499 msgid "Name of {0} cannot be {1}" msgstr "Nama {0} tidak dapat {1}" -#: utils/password_strength.py:178 +#: frappe/utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." msgstr "Nama dan nama keluarga sendiri mudah ditebak." -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "Penamaan" - -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Naming" -msgstr "Penamaan" - -#. Label of a Section Break field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Naming" -msgstr "Penamaan" - -#. Description of the 'Auto Name' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "" -"Naming Options:\n" -"
  1. field:[fieldname] - By Field
  2. autoincrement - Uses Databases' Auto Increment feature
  3. naming_series: - By Naming Series (field called naming_series must be present)
  4. Prompt - Prompt user for a name
  5. [series] - Series by prefix (separated by a dot); for example PRE.#####
  6. \n" -"
  7. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "" -"Naming Options:\n" +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" "
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" "
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" msgstr "" -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Naming Rule" -msgstr "" - -#. Label of a Tab Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "Series Penamaan" +msgstr "" -#: model/naming.py:243 +#: frappe/model/naming.py:260 msgid "Naming Series mandatory" msgstr "Penamaan Seri wajib" #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "Navbar" - -#. Label of a Section Break field in DocType 'Website Settings' -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Navbar" -msgstr "Navbar" +msgstr "" #. Name of a DocType -#: core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/navbar_item/navbar_item.json msgid "Navbar Item" msgstr "Item Navbar" #. Name of a DocType -#: core/doctype/navbar_settings/navbar_settings.json -msgid "Navbar Settings" -msgstr "Pengaturan Navbar" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Navbar Settings" +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json msgid "Navbar Settings" msgstr "Pengaturan Navbar" -#. Label of a Link field in DocType 'Website Settings' -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template" -msgstr "Template Navbar" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template Values" -msgstr "Nilai Template Navbar" +msgstr "" -#: public/js/frappe/ui/keyboard.js:211 -msgid "Navigate Home" -msgstr "Arahkan Beranda" - -#: public/js/frappe/list/list_view.js:1134 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigasikan daftar ke bawah" -#: public/js/frappe/list/list_view.js:1141 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigasikan daftar ke atas" -#: public/js/frappe/ui/page.js:168 +#: frappe/public/js/frappe/ui/page.js:175 msgid "Navigate to main content" msgstr "" -#. Label of a Section Break field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json msgid "Navigation Settings" msgstr "" -#: desk/doctype/workspace/workspace.py:297 +#: frappe/desk/doctype/workspace/workspace.py:319 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: desk/doctype/workspace/workspace.py:343 -msgid "Need Workspace Manager role to hide/unhide public workspaces" -msgstr "" - -#: model/document.py:607 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Nilai Negatif" -#: utils/nestedset.py:95 +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator." #. Name of a DocType -#: printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Network Printer Settings" msgstr "" -#: core/doctype/success_action/success_action.js:55 -#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46 -#: public/js/frappe/form/success_action.js:77 -#: public/js/frappe/views/treeview.js:454 -#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19 -msgid "New" -msgstr "Baru" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "New" -msgstr "Baru" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "New" -msgstr "Baru" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 msgid "New" msgstr "Baru" -#: public/js/frappe/views/interaction.js:15 +#: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" msgstr "Aktivitas Baru" -#: templates/includes/comments/comments.py:64 +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" msgstr "Komentar Baru pada {0}: {1}" -#: printing/page/print/print.js:288 printing/page/print/print.js:335 -msgid "New Custom Print Format" -msgstr "New Custom Print Format" +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:295 +#: frappe/printing/page/print/print.js:342 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "New Document Form" msgstr "" -#: desk/doctype/notification_log/notification_log.py:158 +#: frappe/desk/doctype/notification_log/notification_log.py:154 msgid "New Document Shared {0}" msgstr "Dokumen Baru Dibagikan {0}" -#: public/js/frappe/form/footer/form_timeline.js:26 -#: public/js/frappe/views/communication.js:23 +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 msgid "New Email" msgstr "Surel Baru" -#: public/js/frappe/list/list_view_select.js:98 -#: public/js/frappe/views/inbox/inbox_view.js:177 +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" msgstr "Akun Email Baru" -#: public/js/frappe/form/footer/form_timeline.js:45 +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" msgstr "Acara baru" -#: public/js/frappe/views/file/file_view.js:94 +#: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" msgstr "Folder baru" -#: public/js/frappe/views/kanban/kanban_view.js:341 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Papan Kanban baru" -#: desk/doctype/notification_log/notification_log.py:156 +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 msgid "New Mention on {0}" msgstr "Sebutan Baru di {0}" -#: www/contact.py:51 +#: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" msgstr "Pesan dari Kontak Situs Web Halaman" -#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727 +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 msgid "New Name" msgstr "Nama baru" -#. Label of a Read Only field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" -msgid "New Name" -msgstr "Nama baru" - -#: email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Newsletter Baru" - -#: desk/doctype/notification_log/notification_log.py:155 +#: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Pemberitahuan Baru" -#: core/doctype/user/user.js:167 www/update-password.html:19 +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Kata sandi Baru" -#: printing/page/print/print.js:260 printing/page/print/print.js:314 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +#: frappe/printing/page/print/print.js:267 +#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Nama Format Cetak Baru" -#: public/js/frappe/views/reports/report_view.js:1310 +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1384 msgid "New Report name" msgstr "New nama Laporan" -#: workflow/page/workflow_builder/workflow_builder.js:61 +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 msgid "New Workflow Name" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1172 +#: frappe/public/js/frappe/views/workspace/workspace.js:390 msgid "New Workspace" msgstr "" -#: www/update-password.html:77 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" -#: utils/change_log.py:306 +#: frappe/utils/change_log.py:389 msgid "New updates are available" msgstr "Pembaruan baru tersedia" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." msgstr "" #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#: frappe/custom/doctype/property_setter/property_setter.json msgid "New value to be set" -msgstr "Nilai baru yang akan ditetapkan" +msgstr "" -#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36 -#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209 -#: public/js/frappe/form/toolbar.js:490 -#: public/js/frappe/ui/toolbar/search_utils.js:151 -#: public/js/frappe/ui/toolbar/search_utils.js:152 -#: public/js/frappe/ui/toolbar/search_utils.js:201 -#: public/js/frappe/ui/toolbar/search_utils.js:202 -#: public/js/frappe/views/treeview.js:350 -#: website/doctype/web_form/web_form.py:310 +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/views/treeview.js:366 +#: frappe/public/js/frappe/widgets/widget_dialog.js:72 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" -msgstr "New {0}" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Baru {0} Dibuat" -#: public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Baru {0} {1} ditambahkan ke Dasbor {2}" -#: public/js/frappe/form/quick_entry.js:167 -#: public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "{0} {1} baru dibuat" -#: automation/doctype/auto_repeat/auto_repeat.py:373 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 msgid "New {0}: {1}" msgstr "Baru {0}: {1}" -#: utils/change_log.py:298 +#: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" msgstr "Rilis {} baru untuk aplikasi berikut tersedia" -#: core/doctype/user/user.py:764 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Name of a DocType -#: automation/workspace/tools/tools.json -#: email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Laporan berkala" - -#. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Newsletter" -msgid "Newsletter" -msgstr "Laporan berkala" - -#. Name of a DocType -#: email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Surel surat edaran kelompok" - #. Name of a role -#: email/doctype/email_group/email_group.json -#: email/doctype/email_group_member/email_group_member.json -#: email/doctype/newsletter/newsletter.json -#: website/doctype/marketing_campaign/marketing_campaign.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Surat edaran Manajer" -#: email/doctype/newsletter/newsletter.py:130 -msgid "Newsletter has already been sent" -msgstr "Surat edaran telah terkirim" - -#: email/doctype/newsletter/newsletter.py:149 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: email/doctype/newsletter/newsletter.py:137 -msgid "Newsletter should have atleast one recipient" -msgstr "Newsletter harus memiliki minimal satu penerima" - -#: email/doctype/newsletter/newsletter.py:392 -msgid "Newsletters" -msgstr "Surat edaran" - -#: public/js/frappe/form/form_tour.js:316 -#: public/js/onboarding_tours/onboarding_tours.js:15 -#: public/js/onboarding_tours/onboarding_tours.js:240 -#: templates/includes/slideshow.html:38 website/utils.py:247 -#: website/web_template/slideshow/slideshow.html:44 +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" msgstr "Lanjut" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Next Action Email Template" -msgstr "Template Email Aksi Berikutnya" +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "Lanjut" -#. Label of a HTML field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Next Actions HTML" -msgstr "HTML Tindakan Berikutnya" - -#: public/js/frappe/form/toolbar.js:297 -msgid "Next Document" +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" msgstr "" -#. Label of a Datetime field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "6 Bulan ke Depan" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Next Execution" msgstr "" -#. Label of a Link field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Form Tour" msgstr "" -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "Bulan Depan" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "Kuartal Depan" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Next Schedule Date" -msgstr "Jadwal Jadwal Berikutnya" +msgstr "" -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Next State" -msgstr "Negara berikutnya" +msgstr "" -#. Label of a Code field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Step Condition" msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Next Sync Token" -msgstr "Token Sinkronisasi Berikutnya" +msgstr "" -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Next Sync Token" -msgstr "Token Sinkronisasi Berikutnya" +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "Minggu Depan" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "Tahun Depan" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next on Click" msgstr "" -#: integrations/doctype/webhook/webhook.py:137 -#: public/js/form_builder/utils.js:341 -#: public/js/frappe/form/controls/link.js:471 -#: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 -#: website/doctype/help_article/templates/help_article.html:26 -msgid "No" -msgstr "No" - -#: public/js/frappe/ui/filters/filter.js:501 -msgctxt "Checkbox is not checked" -msgid "No" -msgstr "No" - -#: public/js/frappe/ui/messages.js:37 -msgctxt "Dismiss confirmation dialog" -msgid "No" -msgstr "No" - +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' #. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "No" -msgstr "No" - -#. Option for the 'Standard' (Select) field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "No" -msgstr "No" - #. Option for the 'Standard' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:96 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:341 +#: frappe/public/js/frappe/form/controls/link.js:494 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "No" +msgstr "" -#. Option for the 'Is Standard' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" msgid "No" -msgstr "No" +msgstr "" -#: www/third_party_apps.html:54 +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" msgstr "Tidak ada sesi aktif" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "No Copy" -msgstr "Tidak ada Copy" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "No Copy" -msgstr "Tidak ada Copy" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "No Copy" -msgstr "Tidak ada Copy" - -#: core/doctype/data_export/exporter.py:162 -#: email/doctype/auto_email_report/auto_email_report.py:263 -#: public/js/frappe/data_import/import_preview.js:142 -#: public/js/frappe/form/multi_select_dialog.js:223 -#: public/js/frappe/utils/datatable.js:10 +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 msgid "No Data" msgstr "Tidak ada data" -#: public/js/frappe/views/inbox/inbox_view.js:176 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" msgstr "Tidak ada Akun Surel" -#: public/js/frappe/views/inbox/inbox_view.js:183 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Tidak ada Email" -#: integrations/doctype/ldap_settings/ldap_settings.py:362 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 msgid "No Entry for the User {0} found within LDAP!" msgstr "Tidak ada Entri untuk Pengguna {0} yang ditemukan dalam LDAP!" -#: public/js/frappe/widgets/chart_widget.js:366 +#: frappe/public/js/frappe/widgets/chart_widget.js:407 msgid "No Filters Set" msgstr "Tidak Ada Filter Ditetapkan" -#: integrations/doctype/google_calendar/google_calendar.py:356 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 msgid "No Google Calendar Event to sync." msgstr "Tidak ada Acara Kalender Google untuk disinkronkan." -#: public/js/frappe/ui/capture.js:254 +#: frappe/public/js/frappe/ui/capture.js:262 msgid "No Images" msgstr "" -#: desk/page/leaderboard/leaderboard.js:282 -msgid "No Items Found" -msgstr "" - -#: integrations/doctype/ldap_settings/ldap_settings.py:364 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 msgid "No LDAP User found for email: {0}" msgstr "Tidak ada Pengguna LDAP yang ditemukan untuk email: {0}" -#: printing/page/print/print.js:675 printing/page/print/print.js:757 -#: public/js/frappe/list/bulk_operations.js:82 -#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54 +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js:703 +#: frappe/printing/page/print/print.js:784 +#: frappe/public/js/frappe/list/bulk_operations.js:98 +#: frappe/public/js/frappe/list/bulk_operations.js:170 +#: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: model/naming.py:436 +#: frappe/model/naming.py:481 msgid "No Name Specified for {0}" msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}" -#: core/doctype/doctype/doctype.py:1684 +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1743 msgid "No Permissions Specified" msgstr "Tidak ada izin yang ditentukan" -#: core/page/permission_manager/permission_manager.js:192 +#: frappe/core/page/permission_manager/permission_manager.js:199 msgid "No Permissions set for this criteria." msgstr "Tidak ada Izin ditetapkan untuk kriteria ini." -#: core/page/dashboard_view/dashboard_view.js:93 +#: frappe/core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" msgstr "Tidak Ada Grafik yang Diizinkan" -#: core/page/dashboard_view/dashboard_view.js:92 +#: frappe/core/page/dashboard_view/dashboard_view.js:92 msgid "No Permitted Charts on this Dashboard" msgstr "Tidak Ada Diagram yang Diizinkan di Dasbor ini" -#: printing/page/print/print.js:835 +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:707 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:862 msgid "No Printer is Available." msgstr "Tidak Ada Printer." -#: public/js/frappe/form/link_selector.js:135 -msgid "No Results" -msgstr "No Results" +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" -#: public/js/frappe/ui/toolbar/search.js:51 +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" msgstr "" -#: core/doctype/user/user.py:765 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: public/js/frappe/views/kanban/kanban_view.js:341 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" -#: desk/reportview.py:565 +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:672 msgid "No Tags" msgstr "Tidak ada Tags" -#: email/doctype/notification/notification.js:180 +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:229 msgid "No alerts for today" msgstr "Tidak ada pemberitahuan untuk hari ini" -#: email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." msgstr "" -#: public/js/frappe/form/save.js:38 +#: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Tidak ada perubahan dalam dokumen" -#: model/rename_doc.py:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 msgid "No changes made because old and new name are the same." msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1477 -msgid "No changes made on the page" -msgstr "" - -#: custom/doctype/doctype_layout/doctype_layout.js:59 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 msgid "No changes to sync" msgstr "" -#: core/doctype/data_import/importer.py:286 +#: frappe/core/doctype/data_import/importer.py:298 msgid "No changes to update" msgstr "" -#: website/doctype/blog_post/blog_post.py:376 +#: frappe/website/doctype/blog_post/blog_post.py:378 msgid "No comments yet" msgstr "Belum ada komentar" -#: templates/includes/comments/comments.html:4 +#: frappe/templates/includes/comments/comments.html:4 msgid "No comments yet. " msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:426 +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 msgid "No contacts linked to document" msgstr "Tidak ada kontak yang tertaut ke dokumen" -#: desk/query_report.py:335 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Tidak ada data untuk diekspor" -#: contacts/doctype/address/address.py:251 +#: frappe/contacts/doctype/address/address.py:246 msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." msgstr "Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template." -#: public/js/frappe/ui/toolbar/search.js:71 +#: frappe/public/js/frappe/ui/toolbar/search.js:71 msgid "No documents found tagged with {0}" msgstr "Tidak ditemukan dokumen yang ditandai dengan {0}" -#: public/js/frappe/views/inbox/inbox_view.js:21 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email." -#: utils/file_manager.py:143 +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 msgid "No file attached" msgstr "Tidak ada file terlampir" -#: desk/form/utils.py:102 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 msgid "No further records" msgstr "Tidak ada catatan lebih lanjut" -#: templates/includes/search_template.html:49 +#: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru" -#: public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" msgstr "Tidak ada lagi item untuk ditampilkan" -#: utils/password_strength.py:45 +#: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." msgstr "Tidak perlu untuk simbol, angka, atau huruf besar." -#: integrations/doctype/google_contacts/google_contacts.py:192 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." msgstr "Tidak ada Kontak Google baru yang disinkronkan." -#: printing/page/print_format_builder/print_format_builder.js:415 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" msgstr "Tidak ada dari Kolom" -#. Label of a Int field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "No of Requested SMS" msgstr "" -#. Label of a Int field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "No of Rows (Max 500)" -msgstr "Tidak ada dari Rows (Max 500)" +msgstr "" -#. Label of a Int field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "No of Sent SMS" msgstr "" -#: __init__.py:1027 client.py:109 client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Tidak ada izin untuk {0}" -#: public/js/frappe/form/form.js:1115 +#: frappe/public/js/frappe/form/form.js:1142 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Tidak ada izin untuk '{0}' {1}" -#: model/db_query.py:943 +#: frappe/model/db_query.py:950 msgid "No permission to read {0}" msgstr "Tidak ada izin untuk membaca {0}" -#: share.py:224 +#: frappe/share.py:220 msgid "No permission to {0} {1} {2}" msgstr "Tidak ada izin untuk {0} {1} {2}" -#: core/doctype/user_permission/user_permission_list.js:175 +#: frappe/core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" msgstr "Tidak ada catatan yang dihapus" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" msgstr "Tidak ada catatan di {0}" -#: public/js/frappe/data_import/data_exporter.js:221 +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" msgstr "Tidak ada catatan yang akan diekspor" -#: www/printview.py:426 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:129 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 msgid "No template found at path: {0}" msgstr "Tidak ada template yang ditemukan di jalan: {0}" -#: website/web_template/discussions/discussions.html:2 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 msgid "No {0}" msgstr "" -#: public/js/frappe/list/list_view.js:466 +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:233 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:494 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" -#: public/js/frappe/views/inbox/inbox_view.js:171 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" msgstr "Tidak ada {0} email" -#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251 +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:256 +msgctxt "Title of the 'row number' column" msgid "No." msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Non Negative" -msgstr "Non Negatif" +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Non Negative" -msgstr "Non Negatif" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Non Negative" -msgstr "Non Negatif" +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "None" -msgstr "Tidak ada" +msgstr "" -#: public/js/frappe/form/workflow.js:36 +#: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Tidak ada: Akhir Alur Kerja" -#. Label of a Int field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Copies" msgstr "" -#. Label of a Data field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" msgstr "" -#: core/doctype/user/user.py:972 utils/oauth.py:272 +#: frappe/core/doctype/user/user.py:1022 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Tidak Diizinkan" -#: public/js/frappe/ui/filters/filter.js:36 +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" msgstr "Bukan Leluhur" -#: public/js/frappe/ui/filters/filter.js:34 +#: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" msgstr "Bukan Descendants Of" -#: public/js/frappe/ui/filters/filter.js:17 +#: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" msgstr "Tidak sama dengan" -#: app.py:363 www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Tidak ditemukan" -#. Label of a Int field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json msgid "Not Helpful" msgstr "" -#: public/js/frappe/ui/filters/filter.js:21 +#: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" msgstr "Tidak Masuk" -#: public/js/frappe/ui/filters/filter.js:19 +#: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" msgstr "Tidak suka" -#: public/js/frappe/form/linked_with.js:45 +#: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" msgstr "Tidak terkait dengan catatan apapun" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Not Nullable" msgstr "" -#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97 -#: public/js/frappe/web_form/webform_script.js:15 -#: website/doctype/web_form/web_form.py:603 -#: website/page_renderers/not_permitted_page.py:20 www/login.py:177 -#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/page_renderers/not_permitted_page.py:22 +#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 +#: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Tidak Diijinkan" -#: desk/query_report.py:513 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" -#: website/doctype/blog_post/blog_post_list.js:7 -#: website/doctype/web_form/web_form_list.js:7 -#: website/doctype/web_page/web_page_list.js:7 +#: frappe/website/doctype/blog_post/blog_post_list.js:7 +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" msgstr "Tidak Diterbitkan" -#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740 -#: public/js/frappe/model/indicator.js:28 -#: public/js/frappe/views/kanban/kanban_view.js:167 -#: public/js/frappe/views/reports/report_view.js:173 -#: public/js/print_format_builder/print_format_builder.bundle.js:39 -#: website/doctype/web_form/templates/web_form.html:75 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 +#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" msgstr "Tidak Disimpan" -#: core/doctype/error_log/error_log_list.js:7 +#: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" msgstr "Tidak Terlihat" -#: email/doctype/newsletter/newsletter_list.js:9 -msgid "Not Sent" -msgstr "Tidak terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Not Sent" -msgstr "Tidak terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Not Sent" msgstr "Tidak terkirim" -#: public/js/frappe/list/list_sidebar_group_by.js:219 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" msgstr "Tidak Diatur" -#: public/js/frappe/ui/filters/filter.js:563 +#: frappe/public/js/frappe/ui/filters/filter.js:608 msgctxt "Field value is not set" msgid "Not Set" msgstr "Tidak Diatur" -#: utils/csvutils.py:77 +#: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Bukan Nilai Comma Separated valid (CSV file)" -#: core/doctype/user/user.py:197 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Bukan Gambar Pengguna yang valid." -#: model/workflow.py:118 +#: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" msgstr "Bukan Aksi Alur Kerja yang valid" -#: workflow/doctype/workflow/workflow_list.js:7 +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" msgstr "Tidak aktif" -#: permissions.py:367 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Tidak diizinkan untuk {0}: {1}" -#: email/doctype/notification/notification.py:388 +#: frappe/email/doctype/notification/notification.py:595 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Tidak diizinkan melampirkan dokumen {0}, harap aktifkan Izinkan Pencetakan Untuk {0} di Setelan Cetak" -#: core/doctype/doctype/doctype.py:338 +#: frappe/core/doctype/doctype/doctype.py:335 msgid "Not allowed to create custom Virtual DocType." msgstr "" -#: www/printview.py:141 +#: frappe/www/printview.py:165 msgid "Not allowed to print cancelled documents" msgstr "Tidak diizinkan untuk mencetak dokumen dibatalkan" -#: www/printview.py:138 +#: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" msgstr "Tidak diizinkan untuk mencetak dokumen draft" -#: permissions.py:213 +#: frappe/permissions.py:213 msgid "Not allowed via controller permission check" msgstr "" -#: public/js/frappe/request.js:145 website/js/website.js:94 +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 msgid "Not found" msgstr "Tidak ditemukan" -#: core/doctype/page/page.py:62 +#: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" msgstr "Tidak dalam Mode Developer" -#: core/doctype/doctype/doctype.py:332 +#: frappe/core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Tidak dalam Mode Pengembang! Diatur dalam site_config.json atau membuat DOCTYPE 'Custom'." -#: api/v1.py:88 api/v1.py:93 -#: core/doctype/system_settings/system_settings.py:199 handler.py:109 -#: public/js/frappe/request.js:157 public/js/frappe/request.js:167 -#: public/js/frappe/request.js:172 -#: public/js/frappe/views/kanban/kanban_board.bundle.js:68 -#: website/doctype/web_form/web_form.py:616 website/js/website.js:97 +#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Tidak diperbolehkan" -#: public/js/frappe/list/list_view.js:45 +#: frappe/public/js/frappe/list/list_view.js:50 msgid "Not permitted to view {0}" msgstr "Tidak diizinkan untuk melihat {0}" -#. Name of a DocType -#: automation/doctype/auto_repeat/auto_repeat.py:395 -#: desk/doctype/note/note.json -msgid "Note" -msgstr "Catatan" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Note" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json msgid "Note" msgstr "Catatan" #. Name of a DocType -#: desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" msgstr "Catatan Dilihat Oleh" -#: www/confirm_workflow_action.html:8 +#: frappe/www/confirm_workflow_action.html:8 msgid "Note:" msgstr "catatan:" -#. Description of the 'Send Email for Successful Backup' (Check) field in -#. DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Note: By default emails for failed backups are sent." -msgstr "Catatan: Secara default email untuk cadangan gagal dikirim." - -#. Description of the 'Send Email for Successful backup' (Check) field in -#. DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Note: By default emails for failed backups are sent." -msgstr "Catatan: Secara default email untuk cadangan gagal dikirim." - -#: public/js/frappe/utils/utils.js:775 +#: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." msgstr "Catatan: Mengubah Nama Halaman akan mematahkan URL sebelumnya ke halaman ini." -#: core/doctype/user/user.js:25 +#: frappe/core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." msgstr "" #. Description of the 'sb0' (Section Break) field in DocType 'Website #. Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "Catatan: Untuk hasil terbaik, gambar harus memiliki ukuran dan lebar yang sama harus lebih besar dari tinggi." +msgstr "" #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "Catatan: Beberapa sesi akan diizinkan dalam kasus perangkat mobile" +msgstr "" -#: website/web_form/request_to_delete_data/request_to_delete_data.js:8 +#: frappe/core/doctype/user/user.js:393 +msgid "Note: This will be shared with user." +msgstr "" + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." msgstr "" -#: core/doctype/data_export/exporter.py:183 +#: frappe/core/doctype/data_export/exporter.py:183 msgid "Notes:" msgstr "Catatan:" -#: public/js/frappe/form/undo_manager.js:43 +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" msgstr "" -#: public/js/frappe/form/undo_manager.js:33 +#: frappe/public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" msgstr "" -#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7 -#: website/doctype/blog_post/templates/blog_post_list.html:41 +#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Tidak ada yang menunjukkan" -#: core/doctype/user_permission/user_permission_list.js:129 +#: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" msgstr "Tidak ada yang diperbarui" -#. Name of a DocType -#: core/doctype/communication/mixins.py:142 -#: email/doctype/notification/notification.json -msgid "Notification" -msgstr "Pemberitahuan" - -#. Label of a Section Break field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Option for the 'Communication Type' (Select) field in DocType -#. 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Notification" -msgstr "Pemberitahuan" - +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Notification" -msgid "Notification" -msgstr "Pemberitahuan" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json msgid "Notification" msgstr "Pemberitahuan" #. Name of a DocType -#: desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Notification Log" msgstr "Log Pemberitahuan" #. Name of a DocType -#: email/doctype/notification_recipient/notification_recipient.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" msgstr "Penerima Pemberitahuan" -#. Name of a DocType -#: desk/doctype/notification_settings/notification_settings.json -#: public/js/frappe/ui/notifications/notifications.js:36 -msgid "Notification Settings" -msgstr "Pengaturan pemberitahuan" - #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Notification Settings" +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 msgid "Notification Settings" msgstr "Pengaturan pemberitahuan" #. Name of a DocType -#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgid "Notification Subscribed Document" msgstr "Pemberitahuan Dokumen Berlangganan" -#: public/js/frappe/ui/notifications/notifications.js:49 -#: public/js/frappe/ui/notifications/notifications.js:180 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:500 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:486 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:495 +msgid "Notification: user {0} has no Mobile number set" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" msgstr "Pemberitahuan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Notifications" -msgstr "Pemberitahuan" +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" #. Description of the 'Default Outgoing' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "Pemberitahuan dan kiriman bulk akan dikirim dari server keluar ini." +msgstr "" -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Notify Users On Every Login" -msgstr "Beritahu Pengguna Pada Setiap Login" +msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "Beri tahu melalui Email" +msgstr "" -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json msgid "Notify by email" -msgstr "Beritahu melalui Surel" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "Beritahu jika unreplied" +msgstr "" -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "Beritahu jika unreplied untuk (dalam menit)" +msgstr "" -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" -msgstr "Memberitahu pengguna dengan popup ketika mereka login" +msgstr "" -#: public/js/frappe/form/controls/datetime.js:25 -#: public/js/frappe/form/controls/time.js:37 +#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sekarang" -#. Label of a Data field in DocType 'Contact Phone' -#: contacts/doctype/contact_phone/contact_phone.json -msgctxt "Contact Phone" +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Number" -msgstr "Jumlah" +msgstr "" #. Name of a DocType -#: desk/doctype/number_card/number_card.json -#: public/js/frappe/widgets/widget_dialog.js:591 +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" msgstr "Kartu Nomor" #. Name of a DocType -#: desk/doctype/number_card_link/number_card_link.json +#: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" msgstr "Tautan Kartu Nomor" -#. Label of a Link field in DocType 'Workspace Number Card' -#: desk/doctype/workspace_number_card/workspace_number_card.json -msgctxt "Workspace Number Card" +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:621 +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 msgid "Number Cards" msgstr "Kartu Nomor" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Number Cards" -msgstr "Kartu Nomor" - -#. Label of a Select field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json msgid "Number Format" -msgstr "Nomor Format" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Number Format" -msgstr "Nomor Format" - -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Number of Backups" -msgstr "Jumlah Cadangan" +msgstr "" -#. Label of a Int field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Number of DB Backups" -msgstr "Jumlah Pencadangan DB" - -#: integrations/doctype/dropbox_settings/dropbox_settings.py:53 -msgid "Number of DB backups cannot be less than 1" -msgstr "Jumlah cadangan DB tidak boleh kurang dari 1" - -#. Label of a Int field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Number of Groups" -msgstr "Jumlah Grup" +msgstr "" -#. Label of a Int field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" msgstr "" -#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59 +#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: core/doctype/system_settings/system_settings.py:152 +#: frappe/core/doctype/system_settings/system_settings.py:170 msgid "Number of backups must be greater than zero." msgstr "" #. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "Jumlah kolom untuk lapangan di Grid (Jumlah Kolom dalam kotak harus kurang dari 11)" - -#. Description of the 'Columns' (Int) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)" +msgstr "" #. Description of the 'Columns' (Int) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "Jumlah kolom untuk bidang dalam Daftar View atau Grid (Jumlah Kolom harus kurang dari 11)" +msgstr "" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" msgstr "" +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + #. Option for the 'Method' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "OAuth" msgstr "" #. Name of a DocType -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "OAuth Authorization Code" msgstr "Kode Otorisasi OAuth" #. Name of a DocType -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" msgstr "OAuth Pembawa Token" #. Name of a DocType -#: integrations/doctype/oauth_client/oauth_client.json -msgid "OAuth Client" -msgstr "OAuth Klien" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Client" msgstr "OAuth Klien" -#. Label of a Section Break field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json msgid "OAuth Client ID" -msgstr "ID Klien OAuth" +msgstr "" -#: email/oauth.py:31 +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 msgid "OAuth Error" msgstr "" #. Name of a DocType -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgid "OAuth Provider Settings" -msgstr "Pengaturan OAuth Provider" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "OAuth Provider Settings" +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Provider Settings" msgstr "Pengaturan OAuth Provider" #. Name of a DocType -#: integrations/doctype/oauth_scope/oauth_scope.json +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "OAuth Scope" msgstr "" -#: email/doctype/email_account/email_account.js:187 +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" -#: templates/includes/oauth_confirmation.html:39 -msgid "OK" +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" msgstr "" -#. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "OPTIONS" +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" msgstr "" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "OTP App" -msgstr "Apl OTP" +msgstr "" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "OTP Issuer Name" -msgstr "Nama Emiten OTP" +msgstr "" -#: twofactor.py:468 +#: frappe/twofactor.py:445 msgid "OTP Secret Reset - {0}" msgstr "" -#: twofactor.py:487 +#: frappe/twofactor.py:464 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret telah di-reset. Registrasi ulang akan diminta pada login berikutnya." +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "Mati" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Office" -msgstr "Kantor" +msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Office 365" -msgstr "Kantor 365" +msgstr "" -#. Label of a Int field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset X" msgstr "" -#. Label of a Int field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset Y" msgstr "" -#: www/update-password.html:15 +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + +#: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Password Lama" -#: custom/doctype/custom_field/custom_field.py:362 +#: frappe/custom/doctype/custom_field/custom_field.py:412 msgid "Old and new fieldnames are same." msgstr "" #. Description of the 'Number of Backups' (Int) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Older backups will be automatically deleted" -msgstr "Cadangan yang lebih tua akan dihapus secara otomatis" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "On Hold" -msgstr "" +msgstr "Tertahan" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "On Payment Authorization" msgstr "" +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + #. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "On checking this option, URL will be treated like a jinja template string" msgstr "" -#. Label of a Check field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:963 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 msgid "Onboard" msgstr "" +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + #. Name of a DocType -#: desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json msgid "Onboarding Permission" msgstr "Izin Orientasi" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Onboarding Status" msgstr "" #. Name of a DocType -#: desk/doctype/onboarding_step/onboarding_step.json -msgid "Onboarding Step" -msgstr "Langkah Orientasi" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Onboarding Step" msgstr "Langkah Orientasi" #. Name of a DocType -#: desk/doctype/onboarding_step_map/onboarding_step_map.json +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Onboarding Step Map" msgstr "Peta Langkah Orientasi" -#: public/js/frappe/widgets/onboarding_widget.js:269 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 msgid "Onboarding complete" msgstr "" -#: core/doctype/doctype/doctype_list.js:28 -msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah." - #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Setelah dikirimkan, dokumen yang dapat dikirim tidak dapat diubah. Mereka hanya dapat Dibatalkan dan Diubah." -#: www/complete_signup.html:7 +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 msgid "One Last Step" msgstr "Satu Langkah terakhir" -#: twofactor.py:283 +#: frappe/twofactor.py:278 msgid "One Time Password (OTP) Registration Code from {}" msgstr "Kode Pendaftaran One Time Password (OTP) dari {}" -#: core/doctype/data_export/exporter.py:331 +#: frappe/core/doctype/data_export/exporter.py:331 msgid "One of" msgstr "Satu dari" -#: public/js/frappe/views/workspace/workspace.js:1312 -msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving" -msgstr "" - -#: client.py:213 +#: frappe/client.py:213 msgid "Only 200 inserts allowed in one request" msgstr "Hanya 200 sisipan diperbolehkan dalam satu permintaan" -#: email/doctype/email_queue/email_queue.py:80 +#: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" msgstr "Hanya Administrator dapat menghapus Antrian Surel" -#: core/doctype/page/page.py:66 +#: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" msgstr "Hanya Administrator dapat mengedit" -#: core/doctype/report/report.py:71 +#: frappe/core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Hanya Administrator dapat menyimpan laporan standar. Silahkan mengubah nama dan simpan." -#: recorder.py:234 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Hanya Administrator yang diizinkan menggunakan Perekam" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Only Allow Edit For" -msgstr "Hanya Izinkan Sunting Untuk" +msgstr "" -#: core/doctype/doctype/doctype.py:1561 +#: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" msgstr "Hanya Opsi yang diperbolehkan untuk bidang Data adalah:" -#. Label of a Int field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Only Send Records Updated in Last X Hours" -msgstr "Hanya Kirim Data yang Diperbarui pada X Jam Terakhir" +msgstr "" -#: desk/doctype/workspace/workspace.js:36 +#: frappe/desk/doctype/workspace/workspace.js:32 msgid "Only Workspace Manager can edit public workspaces" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:536 -msgid "Only Workspace Manager can sort or edit this page" -msgstr "" - -#: modules/utils.py:66 +#: frappe/modules/utils.py:65 msgid "Only allowed to export customizations in developer mode" msgstr "" -#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Only change this if you want to use other S3 compatible object storage backends." +#: frappe/model/document.py:1235 +msgid "Only draft documents can be discarded" msgstr "" -#. Label of a Link field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" msgstr "" -#: core/doctype/data_export/exporter.py:194 +#: frappe/core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." msgstr "Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan." -#: contacts/doctype/contact/contact.py:129 -#: contacts/doctype/contact/contact.py:153 +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 msgid "Only one {0} can be set as primary." msgstr "Hanya satu {0} yang dapat ditetapkan sebagai utama." -#: desk/reportview.py:319 +#: frappe/desk/reportview.py:357 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: desk/reportview.py:290 +#: frappe/desk/reportview.py:328 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: custom/doctype/customize_form/customize_form.py:124 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi." -#: desk/form/assign_to.py:181 +#: frappe/model/delete_doc.py:241 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 msgid "Only the assignee can complete this to-do." msgstr "" -#: public/js/frappe/form/sidebar/review.js:54 -msgid "Only users involved in the document are listed" -msgstr "Hanya pengguna yang terlibat dalam dokumen yang terdaftar" - -#: email/doctype/auto_email_report/auto_email_report.py:100 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" -#: core/doctype/deleted_document/deleted_document.js:7 +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Open" msgstr "Buka" -#: desk/doctype/todo/todo_list.js:20 +#: frappe/desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" msgstr "Buka" -#. Option for the 'Status' (Select) field in DocType 'Communication' -#. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Open" -msgstr "Buka" - -#. Option for the 'Status' (Select) field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Open" -msgstr "Buka" - -#: public/js/frappe/ui/keyboard.js:202 +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 msgid "Open Awesomebar" msgstr "Buka Awesomebar" -#: templates/emails/new_notification.html:10 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 msgid "Open Document" msgstr "Buka Dokumen" -#. Label of a Table MultiSelect field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Open Documents" -msgstr "Buka Dokumen" +msgstr "" -#: public/js/frappe/ui/keyboard.js:237 +#: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" msgstr "Buka Bantuan" -#. Label of a Button field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json msgid "Open Reference Document" -msgstr "Buka Dokumen Referensi" +msgstr "" -#: public/js/frappe/ui/keyboard.js:220 +#: frappe/public/js/frappe/ui/keyboard.js:226 msgid "Open Settings" msgstr "Buka Pengaturan" -#. Label of a Check field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Open URL in a New Tab" -msgstr "Buka URL di Tab Baru" +msgstr "" #. Description of the 'Quick Entry' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Open a dialog with mandatory fields to create a new record quickly" -msgstr "Buka dialog dengan bidang wajib untuk membuat catatan baru dengan cepat" +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:176 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 msgid "Open a module or tool" msgstr "Buka modul atau alat" -#: public/js/frappe/list/list_view.js:1187 +#: frappe/public/js/frappe/ui/keyboard.js:366 +msgid "Open console" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Buka item daftar" -#: www/qrcode.html:13 +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 msgid "Open your authentication app on your mobile phone." msgstr "Buka aplikasi autentikasi Anda di ponsel Anda." -#: desk/doctype/todo/todo_list.js:23 -#: public/js/frappe/ui/toolbar/search_utils.js:261 -#: public/js/frappe/ui/toolbar/search_utils.js:262 -#: public/js/frappe/ui/toolbar/search_utils.js:273 -#: public/js/frappe/ui/toolbar/search_utils.js:283 -#: public/js/frappe/ui/toolbar/search_utils.js:292 -#: public/js/frappe/ui/toolbar/search_utils.js:310 -#: public/js/frappe/ui/toolbar/search_utils.js:311 -#: social/doctype/energy_point_log/energy_point_log_list.js:23 +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 msgid "Open {0}" msgstr "Terbuka {0}" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "OpenID Configuration" msgstr "" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Opened" -msgstr "Dibuka" +msgstr "" -#. Label of a Select field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Operation" msgstr "Operasi" -#: utils/data.py:2063 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Operator harus menjadi salah satu dari {0}" -#: core/doctype/file/file.js:24 +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 msgid "Optimize" msgstr "" -#: core/doctype/file/file.js:89 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" -#: custom/doctype/custom_field/custom_field.js:100 +#: frappe/custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" msgstr "Pilihan 1" -#: custom/doctype/custom_field/custom_field.js:102 +#: frappe/custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" msgstr "Opsi 2" -#: custom/doctype/custom_field/custom_field.js:104 +#: frappe/custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" msgstr "Opsi 3" -#: core/doctype/doctype/doctype.py:1579 +#: frappe/core/doctype/doctype/doctype.py:1638 msgid "Option {0} for field {1} is not a child table" msgstr "Opsi {0} untuk bidang {1} bukan tabel anak" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "Opsi: Selalu kirim ke ID ini. Setiap Alamat Email pada baris baru" +msgstr "" #. Description of the 'Condition' (Code) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Optional: The alert will be sent if this expression is true" -msgstr "Opsional: pemberitahuan akan dikirim jika persamaan ini benar" +msgstr "" -#. Label of a Small Text field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" -msgstr "Pilihan" +msgstr "" -#. Label of a Small Text field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Data field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Text field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Options" -msgstr "Pilihan" - -#. Label of a Small Text field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" -msgid "Options" -msgstr "Pilihan" - -#: core/doctype/doctype/doctype.py:1317 +#: frappe/core/doctype/doctype/doctype.py:1366 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain dengan pilihan sebagai 'DocType'" -#. Label of a HTML field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Options Help" -msgstr "Pilihan Bantuan" +msgstr "" -#: core/doctype/doctype/doctype.py:1601 +#: frappe/core/doctype/doctype/doctype.py:1660 msgid "Options for Rating field can range from 3 to 10" msgstr "" -#: custom/doctype/custom_field/custom_field.js:96 +#: frappe/custom/doctype/custom_field/custom_field.js:96 msgid "Options for select. Each option on a new line." msgstr "Pilihan untuk pilih. Setiap opsi pada baris baru." -#: core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1383 msgid "Options for {0} must be set before setting the default value." msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan." -#: public/js/form_builder/store.js:177 +#: frappe/public/js/form_builder/store.js:182 msgid "Options is required for field {0} of type {1}" msgstr "" -#: model/base_document.py:767 +#: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" msgstr "Pilihan tidak diatur untuk bidang tautan {0}" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Orange" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Orange" msgstr "" -#. Label of a Code field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" -msgstr "Memesan" +msgstr "" -#. Label of a Section Break field in DocType 'About Us Settings' -#. Label of a Table field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History" -msgstr "Org Sejarah" +msgstr "" -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History Heading" -msgstr "Org Sejarah Pos" +msgstr "" -#: public/js/frappe/form/print_utils.js:26 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orientasi" +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:75 +msgid "Original Value" +msgstr "" + #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Other" -msgstr "Lain-lain" - #. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 msgid "Other" -msgstr "Lain-lain" +msgstr "" -#. Label of a Section Break field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "Keluaran" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" msgstr "" -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Outgoing Server" -msgstr "" - -#. Label of a Section Break field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Settings" msgstr "" -#: email/doctype/email_domain/email_domain.py:33 +#: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" msgstr "Akun email keluar tidak benar" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Outlook.com" -msgstr "Outlook.com" +msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Output" -msgstr "Keluaran" +msgstr "" -#. Label of a Code field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "Output" -msgstr "Keluaran" +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" -#. Label of a Code field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Output" -msgstr "Keluaran" - -#: core/report/transaction_log_report/transaction_log_report.py:100 -#: social/doctype/energy_point_rule/energy_point_rule.js:42 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" msgstr "Pemilik" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#: frappe/core/doctype/recorder/recorder.json msgid "PATCH" msgstr "" -#: printing/page/print/print.js:71 -#: public/js/frappe/views/reports/query_report.js:1637 +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:71 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" -msgstr "PDF" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Height (in mm)" msgstr "" -#. Label of a Select field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Size" -msgstr "PDF Page Size" +msgstr "" -#. Label of a Float field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Width (in mm)" msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Settings" -msgstr "Pengaturan PDF" +msgstr "" -#: utils/print_format.py:177 +#: frappe/utils/print_format.py:289 msgid "PDF generation failed" msgstr "Generasi PDF gagal" -#: utils/pdf.py:95 +#: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" msgstr "Generasi PDF gagal karena link gambar rusak" -#: printing/page/print/print.js:524 +#: frappe/printing/page/print/print.js:616 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:534 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "PID" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "POST" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "POST" msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "PUT" -msgstr "" - #. Option for the 'Request Method' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json msgid "PUT" msgstr "" +#. Label of the package (Link) field in DocType 'Module Def' #. Name of a DocType -#: core/doctype/package/package.json -msgid "Package" -msgstr "" - -#. Label of a Link field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Package" -msgstr "" - +#. Label of the package (Link) field in DocType 'Package Release' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Package" -msgid "Package" -msgstr "" - -#. Label of a Link field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" msgstr "" #. Name of a DocType -#: core/doctype/package_import/package_import.json -msgid "Package Import" -msgstr "" - #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Package Import" +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json msgid "Package Import" msgstr "" -#. Label of a Data field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "Package Name" msgstr "" #. Name of a DocType -#: core/doctype/package_release/package_release.json -msgid "Package Release" -msgstr "" - -#. Linked DocType in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package_release/package_release.json msgid "Package Release" msgstr "" #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "Packages" msgstr "" +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' #. Name of a DocType -#: core/doctype/page/page.json -msgid "Page" -msgstr "Halaman" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Page" -msgstr "Halaman" - -#. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Page" -msgstr "Halaman" - #. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for #. Page and Report' -#. Label of a Link field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Page" -msgstr "Halaman" - +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Page" -msgstr "Halaman" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Page" msgstr "Halaman" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Page Break" msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Page Builder" -msgstr "Pembuat Halaman" +msgstr "" -#. Label of a Table field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Page Building Blocks" -msgstr "Blok Penyusun Halaman" +msgstr "" -#. Label of a Section Break field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "Halaman HTML" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:64 +#: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" msgstr "" -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Page Name" -msgstr "Nama Halaman" +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" msgstr "" -#. Label of a Small Text field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Page Route" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1499 -msgid "Page Saved Successfully" +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Page Settings" -msgstr "Pengaturan halaman" - -#: public/js/frappe/ui/keyboard.js:121 +#: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" msgstr "Pintasan Halaman" -#: public/js/frappe/list/bulk_operations.js:57 +#: frappe/public/js/frappe/list/bulk_operations.js:66 msgid "Page Size" msgstr "" -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Page Title" msgstr "" -#: public/js/frappe/list/bulk_operations.js:71 +#: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" msgstr "" -#: www/qrcode.py:35 +#: frappe/www/qrcode.py:35 msgid "Page has expired!" msgstr "Halaman telah kedaluwarsa!" -#: printing/doctype/print_settings/print_settings.py:71 -#: public/js/frappe/list/bulk_operations.js:90 +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 msgid "Page height and width cannot be zero" msgstr "" -#: public/js/frappe/views/container.js:52 +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" msgstr "Halaman tidak ditemukan" -#: public/js/frappe/views/workspace/workspace.js:1299 -msgid "Page with title {0} already exist." +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" msgstr "" -#: public/js/frappe/web_form/web_form.js:264 -#: templates/print_formats/standard.html:34 +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Halaman {0} dari {1}" -#. Label of a Data field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "Parameter" -msgstr "Parameter" +msgstr "" -#: public/js/frappe/model/model.js:132 -#: public/js/frappe/views/workspace/workspace.js:606 -#: public/js/frappe/views/workspace/workspace.js:934 -#: public/js/frappe/views/workspace/workspace.js:1181 +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" msgstr "Induk" -#. Label of a Link field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" msgstr "" -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "Parent Document Type" msgstr "" -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Parent Document Type" -msgstr "" - -#: desk/doctype/number_card/number_card.py:61 +#: frappe/desk/doctype/number_card/number_card.py:65 msgid "Parent Document Type is required to create a number card" msgstr "" -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Element Selector" msgstr "" -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Field" msgstr "" -#: core/doctype/doctype/doctype.py:915 +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:933 msgid "Parent Field (Tree)" msgstr "Bidang Induk (Pohon)" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Parent Field (Tree)" -msgstr "Bidang Induk (Pohon)" - -#: core/doctype/doctype/doctype.py:921 +#: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" msgstr "Bidang Induk harus nama bidang yang valid" -#. Label of a Select field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Parent Label" -msgstr "Induk Label" +msgstr "" -#: core/doctype/doctype/doctype.py:1148 +#: frappe/core/doctype/doctype/doctype.py:1197 msgid "Parent Missing" msgstr "" -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Parent Page" msgstr "" -#: core/doctype/data_export/exporter.py:24 +#: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" msgstr "Induk Tabel" -#: desk/doctype/dashboard_chart/dashboard_chart.py:404 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 msgid "Parent document type is required to create a dashboard chart" msgstr "" -#: core/doctype/data_export/exporter.py:255 +#: frappe/core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." msgstr "Induk adalah nama dokumen yang akan ditambahkan datanya." -#: permissions.py:806 +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" + +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" -#: client.py:476 +#: frappe/client.py:467 msgid "Parenttype, Parent and Parentfield are required to insert a child record" msgstr "" -#. Label of a Check field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Partial" msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Partial Success" -msgstr "Sukses Partial" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/email/doctype/email_queue/email_queue.json msgid "Partially Sent" msgstr "" -#: desk/doctype/event/event.js:30 +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json msgid "Participants" msgstr "Para peserta" -#. Label of a Section Break field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Participants" -msgstr "Para peserta" +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#: frappe/contacts/doctype/contact/contact.json msgid "Passive" -msgstr "Pasif" - -#: core/doctype/user/user.js:154 core/doctype/user/user.js:201 -#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474 -#: www/login.html:21 -msgid "Password" -msgstr "Kata sandi" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Password" -msgstr "Kata sandi" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Password" -msgstr "Kata sandi" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Password" -msgstr "Kata sandi" - -#. Label of a Password field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Password" -msgstr "Kata sandi" - -#. Label of a Section Break field in DocType 'System Settings' -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Password" -msgstr "Kata sandi" - +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 +#: frappe/core/doctype/user/user.js:239 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 msgid "Password" msgstr "Kata sandi" -#: core/doctype/user/user.py:1036 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: core/doctype/user/user.py:418 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" -msgstr "Password Reset" +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Password Reset Link Generation Limit" -msgstr "Batas Pembuatan Tautan Setel Ulang Sandi" +msgstr "" -#: public/js/frappe/form/grid_row.js:790 +#: frappe/public/js/frappe/form/grid_row.js:880 msgid "Password cannot be filtered" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:358 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 msgid "Password changed successfully." msgstr "Kata sandi berhasil diubah." -#. Label of a Password field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Password for Base DN" -msgstr "Sandi untuk Base DN" +msgstr "" -#: email/doctype/email_account/email_account.py:165 +#: frappe/email/doctype/email_account/email_account.py:189 msgid "Password is required or select Awaiting Password" msgstr "Sandi diperlukan atau pilih Menunggu sandi" -#: public/js/frappe/desk.js:191 +#: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" -#: utils/password.py:42 +#: frappe/utils/password.py:47 msgid "Password not found for {0} {1} {2}" msgstr "" -#: core/doctype/user/user.py:1035 -msgid "Password reset instructions have been sent to your email" -msgstr "Instruksi atur ulang password telah dikirim ke email Anda" +#: frappe/core/doctype/user/user.py:1084 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" -#: www/update-password.html:164 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" -#: auth.py:239 +#: frappe/auth.py:258 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: core/doctype/user/user.py:828 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: www/update-password.html:78 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" -#: core/doctype/user/user.js:187 +#: frappe/core/doctype/user/user.js:205 msgid "Passwords do not match!" msgstr "Sandi tidak cocok!" -#: email/doctype/newsletter/newsletter.py:156 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - -#: public/js/frappe/views/file/file_view.js:151 +#: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Pasta" -#. Label of a Int field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json msgid "Patch" -msgstr "Tambalan" - -#. Label of a Code field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" -msgid "Patch" -msgstr "Tambalan" +msgstr "" #. Name of a DocType -#: core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/patch_log/patch_log.json msgid "Patch Log" -msgstr "Patch Log" +msgstr "" -#: modules/patch_handler.py:137 +#: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" msgstr "" -#: website/report/website_analytics/website_analytics.js:35 +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 msgid "Path" msgstr "Jalan" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Path" -msgstr "Jalan" - -#. Label of a Small Text field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Path" -msgstr "Jalan" - -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to CA Certs File" -msgstr "Path ke File CA Certs" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to Server Certificate" -msgstr "Jalur ke Sertifikat Server" +msgstr "" -#. Label of a Data field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to private Key File" -msgstr "Path ke File Kunci pribadi" +msgstr "" -#. Label of a Int field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Payload Count" msgstr "" -#. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Pending" -msgstr "Menunggu" +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Pending" -msgstr "Menunggu" - -#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Menunggu" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Approval" -msgstr "Menunggu persetujuan" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Verification" -msgstr "Verifikasi Tertunda" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Percent" -msgstr "Persen" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Percent" -msgstr "Persen" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Percent" -msgstr "Persen" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Percentage" -msgstr "Persentase" +msgstr "" -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Period" msgstr "periode" -#. Label of a Int field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Perm Level" -msgstr "Perm Tingkat" - -#. Label of a Int field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Perm Level" -msgstr "Perm Tingkat" +msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Permanent" -msgstr "Permanen" +msgstr "" -#: public/js/frappe/form/form.js:1047 +#: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" msgstr "Permanen Batal {0}?" -#: public/js/frappe/form/form.js:877 +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 msgid "Permanently Submit {0}?" msgstr "Kirim permanen {0}?" -#: public/js/frappe/model/model.js:698 +#: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" msgstr "Secara permanen menghapus {0}?" -#: core/doctype/user_type/user_type.py:83 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Kesalahan izin" #. Name of a DocType -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Inspector" -msgstr "Kesalahan izin" +msgstr "" -#: core/page/permission_manager/permission_manager.js:446 +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json msgid "Permission Level" msgstr "Izin Tingkat" -#. Label of a Int field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Permission Level" -msgstr "Izin Tingkat" +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json +#: frappe/core/workspace/users/users.json msgid "Permission Manager" msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/server_script/server_script.json msgid "Permission Query" msgstr "" -#. Label of a Section Break field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json msgid "Permission Rules" -msgstr "Aturan Izin" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permission Rules" -msgstr "Aturan Izin" - -#. Label of a Select field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Type" -msgstr "Aturan Izin" +msgstr "" +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' #. Label of a Card Break in the Users Workspace -#: core/doctype/user/user.js:129 core/doctype/user/user.js:138 -#: core/page/permission_manager/permission_manager.js:214 -#: core/workspace/users/users.json +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 +#: frappe/core/doctype/user/user.js:156 +#: frappe/core/page/permission_manager/permission_manager.js:221 +#: frappe/core/workspace/users/users.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Otorisasi" -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Permissions" -msgstr "Otorisasi" - -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Permissions" -msgstr "Otorisasi" - -#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785 +#: frappe/core/doctype/doctype/doctype.py:1834 +#: frappe/core/doctype/doctype/doctype.py:1844 msgid "Permissions Error" msgstr "" +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + #. Name of a report #. Label of a Link in the Users Workspace -#: core/report/permitted_documents_for_user/permitted_documents_for_user.json -#: core/workspace/users/users.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" msgstr "Dokumen Diijinkan Untuk Pengguna" -#. Label of a Table MultiSelect field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Personal" -msgstr "Pribadi" +msgstr "" #. Name of a DocType -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" msgstr "Permintaan Penghapusan Data Pribadi" #. Name of a DocType -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Personal Data Deletion Step" msgstr "" #. Name of a DocType -#: website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" msgstr "Permintaan Unduhan Data Pribadi" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Phone" -msgstr "Telepon" - +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" -msgid "Phone" -msgstr "Telepon" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Phone" -msgstr "Telepon" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Phone" -msgstr "Telepon" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Phone" -msgstr "Telepon" - -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Phone" -msgstr "Telepon" - +#. Label of the phone (Data) field in DocType 'User' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" msgstr "Telepon" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Phone No." -msgstr "Nomor Telepon" +msgstr "" -#: utils/__init__.py:108 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: public/js/frappe/form/print_utils.js:38 -#: public/js/frappe/views/reports/report_view.js:1504 -#: public/js/frappe/views/reports/report_view.js:1507 +#: frappe/public/js/frappe/form/print_utils.js:53 +#: frappe/public/js/frappe/views/reports/report_view.js:1579 +#: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" msgstr "Pilih Kolom" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Pie" -msgstr "Pai" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Pincode" -msgstr "Kode PIN" +msgstr "" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" msgstr "" -#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Pink" +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Plain Text" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Plant" -msgstr "Tanaman" +msgstr "" -#: email/oauth.py:30 +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" msgstr "" -#: website/doctype/website_theme/website_theme.py:79 +#: frappe/website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." msgstr "Silakan Gandakan situs ini Tema untuk menyesuaikan." -#: integrations/doctype/ldap_settings/ldap_settings.py:159 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Silakan Instal perpustakaan ldap3 melalui pip untuk menggunakan fungsionalitas ldap." -#: public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Silakan Tetapkan Bagan" -#: core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" msgstr "Harap Perbarui Pengaturan SMS" -#: automation/doctype/auto_repeat/auto_repeat.py:569 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 msgid "Please add a subject to your email" msgstr "Silakan tambahkan subjek ke email Anda" -#: templates/includes/comments/comments.html:168 +#: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." msgstr "Harap tambahkan komentar yang valid." -#: core/doctype/user/user.py:1017 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Minta administrator untuk memverifikasi Anda sign-up" -#: public/js/frappe/form/controls/select.js:96 +#: frappe/public/js/frappe/form/controls/select.js:101 msgid "Please attach a file first." msgstr "Harap melampirkan file pertama." -#: printing/doctype/letter_head/letter_head.py:73 +#: frappe/printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: printing/doctype/letter_head/letter_head.py:61 +#: frappe/printing/doctype/letter_head/letter_head.py:64 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" -#: core/doctype/package_import/package_import.py:38 +#: frappe/core/doctype/package_import/package_import.py:39 msgid "Please attach the package" msgstr "" -#: integrations/doctype/connected_app/connected_app.js:19 +#: frappe/integrations/doctype/connected_app/connected_app.js:19 msgid "Please check OpenID Configuration URL" msgstr "" -#: utils/dashboard.py:58 +#: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}" -#: model/base_document.py:839 +#: frappe/model/base_document.py:951 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Harap periksa nilai set "Ambil Dari" untuk bidang {0}" -#: core/doctype/user/user.py:1015 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Silahkan cek email Anda untuk verifikasi" -#: email/smtp.py:131 +#: frappe/email/smtp.py:134 msgid "Please check your email login credentials." msgstr "" -#: twofactor.py:246 +#: frappe/twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." msgstr "Silakan periksa alamat email terdaftar Anda untuk petunjuk cara melanjutkan. Jangan tutup jendela ini karena Anda harus kembali kesini." -#: twofactor.py:291 +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 msgid "Please click on the following link and follow the instructions on the page. {0}" msgstr "" -#: templates/emails/password_reset.html:2 +#: frappe/templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" msgstr "Silahkan klik pada link berikut untuk mengatur password baru anda" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:344 -msgid "Please close this window" -msgstr "Tutup jendela ini" - -#: www/confirm_workflow_action.html:4 +#: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." msgstr "Harap konfirmasikan tindakan Anda ke {0} dokumen ini." -#: core/doctype/server_script/server_script.js:33 -msgid "Please contact your system administrator to enable this feature." +#: frappe/printing/page/print/print.js:618 +msgid "Please contact your system manager to install correct version." msgstr "" -#: desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:44 msgid "Please create Card first" msgstr "Harap buat Kartu terlebih dahulu" -#: desk/doctype/dashboard_chart/dashboard_chart.js:42 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" msgstr "Harap buat grafik terlebih dahulu" -#: desk/form/meta.py:209 +#: frappe/desk/form/meta.py:190 msgid "Please delete the field from {0} or add the required doctype." msgstr "" -#: core/doctype/data_export/exporter.py:184 +#: frappe/core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." msgstr "Harap jangan mengubah judul Template." -#: printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" msgstr "Silakan duplikat ini untuk membuat perubahan" -#: core/doctype/system_settings/system_settings.py:145 +#: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" -#: desk/doctype/notification_log/notification_log.js:45 -#: email/doctype/auto_email_report/auto_email_report.js:17 -#: printing/page/print/print.js:611 printing/page/print/print.js:640 -#: public/js/frappe/list/bulk_operations.js:117 -#: public/js/frappe/utils/utils.js:1416 +#: frappe/desk/doctype/notification_log/notification_log.js:45 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:17 +#: frappe/printing/page/print/print.js:638 +#: frappe/printing/page/print/print.js:668 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Aktifkan pop-up" -#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177 +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 msgid "Please enable pop-ups in your browser" msgstr "Harap aktifkan munculan di peramban Anda" -#: integrations/google_oauth.py:53 +#: frappe/integrations/google_oauth.py:55 msgid "Please enable {} before continuing." msgstr "" -#: utils/oauth.py:191 +#: frappe/utils/oauth.py:191 msgid "Please ensure that your profile has an email address" msgstr "Pastikan bahwa profil Anda memiliki alamat email" -#: integrations/doctype/social_login_key/social_login_key.py:73 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Harap masukkan URL Akses Token" -#: integrations/doctype/social_login_key/social_login_key.py:71 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Harap masukkan Authorize URL" -#: integrations/doctype/social_login_key/social_login_key.py:69 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Harap masukkan URL Base" -#: integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Harap masukkan ID Klien sebelum login sosial diaktifkan" -#: integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Silakan masukkan Rahasia Klien sebelum login sosial diaktifkan" -#: integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" msgstr "" -#: integrations/doctype/social_login_key/social_login_key.py:75 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Masukkan URL Pengalihan" -#: templates/includes/comments/comments.html:163 +#: frappe/templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." msgstr "" -#: www/update-password.html:233 +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Masukkan password" -#: public/js/frappe/desk.js:196 +#: frappe/public/js/frappe/desk.js:217 msgctxt "Email Account" msgid "Please enter the password for: {0}" msgstr "" -#: core/doctype/sms_settings/sms_settings.py:42 +#: frappe/core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" msgstr "Entrikan nos ponsel yang valid" -#: www/update-password.html:115 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: www/update-password.html:108 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:401 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 msgid "Please find attached {0}: {1}" msgstr "Silakan temukan lampiran {0}: {1}" -#: core/doctype/navbar_settings/navbar_settings.py:44 -msgid "Please hide the standard navbar items instead of deleting them" -msgstr "Harap sembunyikan item navbar standar daripada menghapusnya" - -#: templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:31 msgid "Please login to post a comment." msgstr "" -#: core/doctype/communication/communication.py:210 +#: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Harap pastikan Dokumen Komunikasi Referensi tidak terhubung secara sirkuler." -#: model/document.py:810 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Silahkan refresh untuk mendapatkan dokumen terbaru." -#: printing/page/print/print.js:525 +#: frappe/printing/page/print/print.js:535 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" -#: public/js/frappe/form/form.js:384 +#: frappe/public/js/frappe/form/form.js:358 msgid "Please save before attaching." msgstr "Silakan simpan sebelum memasang." -#: email/doctype/newsletter/newsletter.py:133 -msgid "Please save the Newsletter before sending" -msgstr "Harap menyimpan Newsletter sebelum dikirim" - -#: public/js/frappe/form/sidebar/assign_to.js:51 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Silakan menyimpan dokumen sebelum penugasan" -#: public/js/frappe/form/sidebar/assign_to.js:71 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" msgstr "Silakan menyimpan dokumen sebelum mengeluarkan penugasan" -#: public/js/frappe/views/reports/report_view.js:1614 +#: frappe/public/js/frappe/views/reports/report_view.js:1709 msgid "Please save the report first" msgstr "Harap menyimpan laporan pertama" -#: website/doctype/web_template/web_template.js:22 +#: frappe/website/doctype/web_template/web_template.js:22 msgid "Please save to edit the template." msgstr "Harap simpan untuk mengedit template." -#: desk/page/leaderboard/leaderboard.js:244 -msgid "Please select Company" -msgstr "Silakan pilih Perusahaan" - -#: printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" msgstr "Silakan pilih DOCTYPE pertama" -#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" msgstr "Silakan pilih Tipe Entitas terlebih dahulu" -#: core/doctype/system_settings/system_settings.py:103 +#: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" msgstr "Harap pilih Skor Minimum Kata Sandi" -#: utils/__init__.py:115 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" -#: utils/file_manager.py:50 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 msgid "Please select a file or url" msgstr "Silahkan pilih file atau url" -#: model/rename_doc.py:670 +#: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" msgstr "Silakan pilih file csv dengan data yang valid" -#: utils/data.py:285 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Pilih filter tanggal yang valid" -#: core/doctype/user_permission/user_permission_list.js:203 +#: frappe/core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" msgstr "Silakan pilih DOCTYPE yang berlaku" -#: model/db_query.py:1140 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group" -#: core/doctype/document_naming_settings/document_naming_settings.py:215 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" msgstr "Silakan pilih awalan terlebih dahulu" -#: core/doctype/data_export/data_export.js:42 +#: frappe/core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." msgstr "Harap pilih Jenis Dokumen." #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Please select the LDAP Directory being used" msgstr "" -#: website/doctype/website_settings/website_settings.js:100 +#: frappe/website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" msgstr "Silahkan pilih {0}" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:306 -msgid "Please set Dropbox access keys in site config or doctype" -msgstr "" - -#: contacts/doctype/contact/contact.py:200 +#: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" msgstr "Silahkan tetapkan Alamat Email" -#: printing/page/print/print.js:539 +#: frappe/printing/page/print/print.js:549 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Silakan atur pemetaan printer untuk format cetak ini di Pengaturan Printer" -#: public/js/frappe/views/reports/query_report.js:1308 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Silakan set filter" -#: email/doctype/auto_email_report/auto_email_report.py:226 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Silakan menetapkan nilai filter dalam Laporan Filter meja." -#: model/naming.py:533 +#: frappe/model/naming.py:572 msgid "Please set the document name" msgstr "" -#: desk/doctype/dashboard/dashboard.py:125 +#: frappe/desk/doctype/dashboard/dashboard.py:120 msgid "Please set the following documents in this Dashboard as standard first." msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih dahulu." -#: core/doctype/document_naming_settings/document_naming_settings.py:121 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." msgstr "Silakan mengatur seri yang akan digunakan." -#: core/doctype/system_settings/system_settings.py:116 +#: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS" -#: automation/doctype/auto_repeat/auto_repeat.js:102 +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Please setup a message first" msgstr "Harap siapkan pesan terlebih dahulu" -#: email/doctype/email_account/email_account.py:389 -msgid "Please setup default Email Account from Settings > Email Account" -msgstr "" - -#: core/doctype/user/user.py:369 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/model/model.js:785 +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" msgstr "Silakan tentukan" -#: permissions.py:782 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: email/doctype/notification/notification.py:86 +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:151 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:145 msgid "Please specify which date field must be checked" msgstr "Silakan tentukan tanggal yang lapangan harus diperiksa" -#: email/doctype/notification/notification.py:89 +#: frappe/email/doctype/notification/notification.py:149 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which value field must be checked" msgstr "Silakan tentukan mana bidang nilai harus diperiksa" -#: public/js/frappe/request.js:184 -#: public/js/frappe/views/translation_manager.js:102 +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 msgid "Please try again" msgstr "Silakan coba lagi" -#: integrations/google_oauth.py:56 +#: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:332 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Please use a valid LDAP search filter" msgstr "" -#: email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Harap verifikasi Alamat Email Anda" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" -#. Label of a Select field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Point Allocation Periodicity" -msgstr "Titik Alokasi Periode" +#: frappe/utils/password.py:218 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" -#: public/js/frappe/form/sidebar/review.js:75 -msgid "Points" -msgstr "Poin" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Points" -msgstr "Poin" +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" -#. Label of a Int field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Points" -msgstr "Poin" - -#: templates/emails/energy_points_summary.html:40 -msgid "Points Given" -msgstr "Poin yang Diberikan" - -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover Element" msgstr "" -#. Label of a HTML Editor field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover or Modal Description" msgstr "" -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "Port" - -#. Label of a Data field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Port" -msgstr "Port" - -#. Label of a Int field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" -msgid "Port" -msgstr "Port" - -#. Label of a Card Break in the Website Workspace -#: website/workspace/website/website.json -msgid "Portal" msgstr "" -#. Label of a Table field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Portal Menu" -msgstr "Portal menu" +msgstr "" #. Name of a DocType -#: website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Portal Menu Item" -msgstr "Portal Menu Item" +msgstr "" #. Name of a DocType -#: website/doctype/portal_settings/portal_settings.json -msgid "Portal Settings" -msgstr "Pengaturan Portal" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Portal Settings" +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json msgid "Portal Settings" msgstr "Pengaturan Portal" -#: public/js/frappe/form/print_utils.js:29 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Potret" -#. Label of a Select field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Position" -msgstr "Posisi" +msgstr "" -#: templates/discussions/comment_box.html:29 -#: templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Post" -msgstr "Post" +msgstr "" -#: templates/discussions/reply_section.html:39 +#: frappe/templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Postal" -msgstr "Pos" +msgstr "" -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Postal Code" msgstr "kode Pos" -#. Group in Blog Category's connections -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Posts" -msgstr "Posts" +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" -#: website/doctype/blog_post/blog_post.py:258 +#: frappe/website/doctype/blog_post/blog_post.py:264 msgid "Posts by {0}" msgstr "Posting oleh {0}" -#: website/doctype/blog_post/blog_post.py:250 +#: frappe/website/doctype/blog_post/blog_post.py:256 msgid "Posts filed under {0}" msgstr "Posting mengajukan di bawah {0}" -#. Label of a Select field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Precision" -msgstr "Ketelitian" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" -#. Label of a Select field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Precision" -msgstr "Ketelitian" +msgstr "" -#. Label of a Select field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Precision" -msgstr "Ketelitian" - -#. Label of a Select field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Precision" -msgstr "Ketelitian" - -#: core/doctype/doctype/doctype.py:1349 +#: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" msgstr "Presisi harus antara 1 dan 6" -#: utils/password_strength.py:191 +#: frappe/utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." msgstr "substitusi diprediksi seperti '@' bukan 'a' tidak membantu banyak." -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Preferred Billing Address" -msgstr "Disukai Alamat Penagihan" +msgstr "" -#. Label of a Check field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json msgid "Preferred Shipping Address" -msgstr "Disukai Alamat Pengiriman" +msgstr "" -#. Label of a Data field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Prefix" -msgstr "Awalan" - -#. Label of a Autocomplete field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Prefix" -msgstr "Awalan" +msgstr "" #. Name of a DocType -#: core/doctype/prepared_report/prepared_report.json +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 msgid "Prepared Report" msgstr "Laporan yang disiapkan" -#. Label of a Check field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Prepared Report" -msgstr "Laporan yang disiapkan" +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" #. Name of a role -#: core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" msgstr "Pengguna Laporan yang Disiapkan" -#: desk/query_report.py:296 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:469 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Mempersiapkan Laporan" -#: public/js/frappe/views/communication.js:321 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" -#: public/js/frappe/list/list_filter.js:134 +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" msgstr "Tekan Enter untuk menyimpan" -#: email/doctype/newsletter/newsletter.js:14 -#: email/doctype/newsletter/newsletter.js:42 -#: public/js/frappe/form/controls/markdown_editor.js:31 -#: public/js/frappe/ui/capture.js:228 +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:190 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 msgid "Preview" msgstr "Pratayang" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Section Break field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Section Break field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Attach Image field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a Tab Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Preview" -msgstr "Pratayang" - -#. Label of a HTML field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Preview HTML" -msgstr "Preview HTML" +msgstr "" -#. Label of a Attach Image field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" +#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' +#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Preview Image" msgstr "" -#. Label of a Attach Image field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Preview Image" -msgstr "" - -#. Label of a Button field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" -msgstr "Pesan Pratinjau" +msgstr "" -#: public/js/form_builder/form_builder.bundle.js:83 +#: frappe/public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" msgstr "" -#. Label of a Text field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" msgstr "" -#: public/js/onboarding_tours/onboarding_tours.js:16 -#: templates/includes/slideshow.html:34 -#: website/web_template/slideshow/slideshow.html:40 +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" msgstr "Kembali" -#: public/js/frappe/form/toolbar.js:289 -msgid "Previous Document" +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "Kembali" + +#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Previous Hash" msgstr "" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Previous Hash" -msgstr "Sebelumnya Hash" - -#: public/js/frappe/form/form.js:2162 +#: frappe/public/js/frappe/form/form.js:2214 msgid "Previous Submission" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Primary" -msgstr "Utama" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Primary Color" -msgstr "Warna primer" +msgstr "" -#: core/doctype/success_action/success_action.js:56 -#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81 -#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333 -#: public/js/frappe/list/bulk_operations.js:79 -#: public/js/frappe/views/reports/query_report.js:1623 -#: public/js/frappe/views/reports/report_view.js:1463 -#: public/js/frappe/views/treeview.js:473 www/printview.html:18 +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:65 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 +#: frappe/public/js/frappe/views/reports/report_view.js:1537 +#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Mencetak" -#: public/js/frappe/list/list_view.js:1849 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Mencetak" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Print" -msgstr "Mencetak" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Print" -msgstr "Mencetak" - -#: public/js/frappe/list/bulk_operations.js:39 +#: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" msgstr "Cetak Dokumen" -#. Name of a DocType -#: printing/doctype/print_format/print_format.json -#: printing/page/print/print.js:94 printing/page/print/print.js:794 -#: public/js/frappe/list/bulk_operations.js:50 -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Print Format" -msgstr "Format Cetak" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Print Format" -msgstr "Format Cetak" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Format" -msgstr "Format Cetak" - +#. Label of the print_format (Link) field in DocType 'Auto Repeat' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Print Format" -msgid "Print Format" -msgstr "Format Cetak" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:94 +#: frappe/printing/page/print/print.js:821 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json msgid "Print Format" msgstr "Format Cetak" #. Label of a Link in the Tools Workspace -#. Label of a shortcut in the Build Workspace -#: automation/workspace/tools/tools.json core/workspace/build/build.json -#: printing/page/print_format_builder/print_format_builder.js:44 -#: printing/page/print_format_builder/print_format_builder.js:67 -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4 -msgid "Print Format Builder" -msgstr "Cetak Format Builder" - -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" msgstr "Cetak Format Builder" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Print Format Builder (New)" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Builder Beta" msgstr "" -#: utils/pdf.py:52 +#: frappe/utils/pdf.py:63 msgid "Print Format Error" msgstr "" #. Name of a DocType -#: printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Print Format Field Template" msgstr "" -#. Label of a HTML field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" -msgstr "Print Format Bantuan" +msgstr "" -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Type" -msgstr "Print Format Type" +msgstr "" -#: www/printview.py:407 +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Cetak Format {0} dinonaktifkan" -#. Description of the Onboarding Step 'Customize Print Formats' -#: custom/onboarding_step/print_format/print_format.json -msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools." -msgstr "" - -#. Name of a DocType -#: printing/doctype/print_heading/print_heading.json -msgid "Print Heading" -msgstr "" - #. Label of a Link in the Tools Workspace -#. Label of a Data field in DocType 'Print Heading' -#: automation/workspace/tools/tools.json -#: printing/doctype/print_heading/print_heading.json -msgctxt "Print Heading" +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json msgid "Print Heading" +msgstr "Cetak Pos" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide" -msgstr "Cetak Sembunyikan" - -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Hide If No Value" -msgstr "Cetak Sembunyikan Jika ada Nilai" - -#: public/js/frappe/form/print_utils.js:195 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Cetak Terkirim ke printer!" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Server" -msgstr "Server Cetak" - -#. Name of a DocType -#: printing/doctype/print_settings/print_settings.json -#: printing/doctype/print_style/print_style.js:6 -#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69 -msgid "Print Settings" -msgstr "Pengaturan Cetak" - -#. Label of a Section Break field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Print Settings" -msgstr "Pengaturan Cetak" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "Print Settings" +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:160 +#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Pengaturan Cetak" +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' #. Name of a DocType -#: printing/doctype/print_style/print_style.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json msgid "Print Style" -msgstr "Print Style" +msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#. Label of a Link field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Print Style" -msgstr "Print Style" - -#. Label of a Data field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json msgid "Print Style Name" -msgstr "Cetak Nama Gaya" +msgstr "" -#. Label of a HTML field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Style Preview" -msgstr "Print Style Preview" +msgstr "" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width" -msgstr "Cetak Lebar" - -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Print Width" -msgstr "Cetak Lebar" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Print Width" -msgstr "Cetak Lebar" +msgstr "" #. Description of the 'Print Width' (Data) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width of the field, if the field is a column in a table" -msgstr "Cetak Lebar lapangan, jika lapangan adalah kolom dalam tabel" +msgstr "" -#: public/js/frappe/form/form.js:170 +#: frappe/public/js/frappe/form/form.js:170 msgid "Print document" msgstr "" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "Mencetak dengan kop surat" +msgstr "" -#: printing/page/print/print.js:803 +#: frappe/printing/page/print/print.js:830 msgid "Printer" -msgstr "Printer" +msgstr "" -#: printing/page/print/print.js:780 +#: frappe/printing/page/print/print.js:807 msgid "Printer Mapping" msgstr "Pemetaan Printer" -#. Label of a Select field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Printer Name" -msgstr "Nama Printer" +msgstr "" -#: printing/page/print/print.js:772 +#: frappe/printing/page/print/print.js:799 msgid "Printer Settings" msgstr "Pengaturan Printer" -#: printing/page/print/print.js:538 +#: frappe/printing/page/print/print.js:548 msgid "Printer mapping not set." msgstr "" #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Printing" msgstr "Pencetakan" -#: utils/print_format.py:179 +#: frappe/utils/print_format.py:291 msgid "Printing failed" msgstr "Pencetakan gagal" -#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184 +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json msgid "Priority" msgstr "Prioritas" -#. Label of a Int field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Select field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Priority" -msgstr "Prioritas" - -#. Label of a Int field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Priority" -msgstr "Prioritas" - -#: desk/doctype/note/note_list.js:8 -msgid "Private" -msgstr "Swasta" - -#. Label of a Check field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Private" -msgstr "Swasta" - +#. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" msgstr "Swasta" -#. Label of a Check field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Private" -msgstr "Swasta" +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "Protip: Tambahkan Reference: {{ reference_doctype }} {{ reference_name }} referensi dokumen untuk mengirim" +msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:22 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" msgstr "" -#: public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Tetap melanjutkan" -#: public/js/frappe/form/controls/table.js:88 +#: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" msgstr "Pengolahan" -#: email/doctype/email_queue/email_queue.py:407 +#: frappe/email/doctype/email_queue/email_queue_list.js:52 msgid "Processing..." msgstr "Pengolahan..." +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Profile" msgstr "" -#: public/js/frappe/socketio_client.js:78 +#: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Kemajuan" -#: public/js/frappe/views/kanban/kanban_view.js:405 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Proyek" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the property (Data) field in DocType 'Property Setter' +#: frappe/core/doctype/version/version_view.html:12 +#: frappe/core/doctype/version/version_view.html:37 +#: frappe/core/doctype/version/version_view.html:74 +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" -msgstr "Harta benda" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Property Depends On" -msgstr "Properti Tergantung" - -#. Label of a Section Break field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Property Depends On" -msgstr "Properti Tergantung" +msgstr "" #. Name of a DocType -#: custom/doctype/property_setter/property_setter.json +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter" msgstr "Setter Properti" -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Property Setter" -msgstr "Setter Properti" +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Type" -msgstr "Jenis properti" +msgstr "" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "" + +#: frappe/core/doctype/file/file.py:501 +msgid "Protected File" +msgstr "" #. Description of the 'Allowed File Extensions' (Small Text) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" msgstr "" -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Provider" -msgstr "Pemberi" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Provider Name" -msgstr "Nama Penyedia" - -#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78 -#: public/js/frappe/views/workspace/workspace.js:613 -#: public/js/frappe/views/workspace/workspace.js:941 -#: public/js/frappe/views/workspace/workspace.js:1187 -msgid "Public" -msgstr "Publik" - -#. Option for the 'Event Type' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Public" -msgstr "Publik" - -#. Label of a Check field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Public" -msgstr "Publik" - -#. Label of a Check field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Public" -msgstr "Publik" - -#: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 -msgid "Publish" -msgstr "Menerbitkan" - -#. Label of a Check field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" -msgid "Publish" -msgstr "Menerbitkan" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Publish as a web page" msgstr "" -#: website/doctype/blog_post/blog_post_list.js:5 -#: website/doctype/web_form/web_form_list.js:5 -#: website/doctype/web_page/web_page_list.js:5 +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "Publik" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:632 +#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "Menerbitkan" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Blog Category' +#. Label of the published (Check) field in DocType 'Blog Post' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_post/blog_post_list.js:5 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" msgstr "Diterbitkan" -#. Label of a Check field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Published" -msgstr "Diterbitkan" - -#. Label of a Date field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the published_on (Date) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Published On" -msgstr "Published On" +msgstr "" -#: website/doctype/blog_post/templates/blog_post.html:59 +#: frappe/website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" msgstr "Diterbitkan di" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" msgstr "" -#: email/doctype/email_account/email_account.js:164 +#: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Pull from Google Calendar" -msgstr "Tarik dari Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Pull from Google Contacts" -msgstr "Tarik dari Kontak Google" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Pulled from Google Calendar" -msgstr "Ditarik dari Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Pulled from Google Contacts" -msgstr "Ditarik dari Kontak Google" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Purchase Manager" msgstr "Manajer Pembelian" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" msgstr "Master Manajer Pembelian" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Purchase User" msgstr "Pembelian Pengguna" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Purple" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Purple" msgstr "" -#. Label of a Check field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Push to Google Calendar" -msgstr "Dorong ke Kalender Google" +msgstr "" -#. Label of a Check field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Push to Google Contacts" -msgstr "Dorong ke Kontak Google" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "Python" msgstr "" -#: www/qrcode.html:3 +#: frappe/www/qrcode.html:3 msgid "QR Code" msgstr "Kode QR" -#: www/qrcode.html:6 +#: frappe/www/qrcode.html:6 msgid "QR Code for Login Verification" msgstr "Kode QR untuk Verifikasi Login" -#: public/js/frappe/form/print_utils.js:204 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "Baki QZ Gagal:" -#: public/js/frappe/utils/common.js:401 -msgid "Quarterly" -msgstr "Triwulan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Quarterly" -msgstr "Triwulan" - #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Quarterly" -msgstr "Triwulan" - #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 msgid "Quarterly" msgstr "Triwulan" -#. Label of a Data field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json msgid "Query" -msgstr "Query" +msgstr "" -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Query" -msgstr "Query" - -#. Label of a Section Break field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Query / Script" -msgstr "Kueri / Skrip" +msgstr "" -#. Label of a Small Text field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Query Options" -msgstr "Opsi Query" +msgstr "" +#. Label of the query_parameters (Table) field in DocType 'Connected App' #. Name of a DocType -#: integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json msgid "Query Parameters" msgstr "" -#. Label of a Table field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Query Parameters" -msgstr "" - -#: public/js/frappe/views/reports/query_report.js:17 -msgid "Query Report" -msgstr "Laporan \"Query\"" - #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 msgid "Query Report" msgstr "Laporan \"Query\"" -#: utils/safe_exec.py:437 +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:495 msgid "Query must be of SELECT or read-only WITH type." msgstr "" -#. Label of a Select field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Queue" msgstr "" -#. Label of a Select field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue Type(s)" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Queue in Background (BETA)" -msgstr "" - -#: utils/background_jobs.py:473 +#: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" msgstr "Antrian adalah salah satu dari {0}" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue(s)" msgstr "" -#: email/doctype/newsletter/newsletter.js:208 -msgid "Queued" -msgstr "Diantrikan" - -#. Option for the 'Status' (Select) field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Queued" -msgstr "Diantrikan" - #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Queued" -msgstr "Diantrikan" - #. Option for the 'Status' (Select) field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "Diantrikan" -#. Label of a Datetime field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued At" msgstr "" -#. Label of a Data field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" msgstr "" -#: core/doctype/submission_queue/submission_queue.py:173 +#: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." msgstr "" -#: integrations/doctype/dropbox_settings/dropbox_settings.py:64 -#: integrations/doctype/google_drive/google_drive.py:156 -#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81 -msgid "Queued for backup. It may take a few minutes to an hour." -msgstr "Diantrikan untuk dicadangan. Mungkin memakan waktu beberapa menit sampai satu jam." - -#: desk/page/backups/backups.py:96 +#: frappe/desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" msgstr "Diantrikan untuk pencadangan. Anda akan menerima email dengan tautan unduh" -#: email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" msgstr "" -#: email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - -#: desk/doctype/bulk_update/bulk_update.py:88 +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Quick Entry" msgstr "Entri Cepat" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Quick Entry" -msgstr "Entri Cepat" +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" -#. Label of a Code field in DocType 'Workspace Quick List' -#: desk/doctype/workspace_quick_list/workspace_quick_list.json -msgctxt "Workspace Quick List" +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" msgstr "" -#. Label of a Tab Break field in DocType 'Workspace' -#. Label of a Table field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json msgid "Quick Lists" msgstr "" -#: public/js/frappe/views/reports/report_utils.js:280 +#: frappe/public/js/frappe/views/reports/report_utils.js:304 msgid "Quoting must be between 0 and 3" msgstr "" -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "RAW Information Log" -msgstr "Log Informasi RAW" +msgstr "" #. Name of a DocType -#: core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_job/rq_job.json msgid "RQ Job" msgstr "" #. Name of a DocType -#: core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "RQ Worker" msgstr "" -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Random" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Random" msgstr "" -#: website/report/website_analytics/website_analytics.js:20 +#: frappe/website/report/website_analytics/website_analytics.js:20 msgid "Range" msgstr "Jarak" -#. Label of a Section Break field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Rate Limiting" msgstr "" -#. Label of a Section Break field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the section_break_12 (Section Break) field in DocType 'Blog +#. Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Rate Limits" msgstr "" -#. Label of a Int field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Rating" -msgstr "penilaian" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Rating" -msgstr "penilaian" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Rating" -msgstr "penilaian" +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Rating" -msgstr "penilaian" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Rating" -msgstr "penilaian" +msgstr "" -#: printing/doctype/print_format/print_format.py:89 +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Perintah Mentah" -#. Label of a Code field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Raw Commands" -msgstr "Perintah Mentah" - -#. Label of a Code field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Raw Email" -msgstr "Raw Email" +msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Raw Printing" -msgstr "Pencetakan Mentah" +msgstr "" -#. Label of a Section Break field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" -msgid "Raw Printing" -msgstr "Pencetakan Mentah" - -#: printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:165 msgid "Raw Printing Setting" msgstr "" -#: desk/doctype/console_log/console_log.js:6 +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 msgid "Re-Run in Console" msgstr "" -#: email/doctype/email_account/email_account.py:630 +#: frappe/email/doctype/email_account/email_account.py:726 msgid "Re:" msgstr "" -#: core/doctype/communication/communication.js:268 -#: public/js/frappe/form/footer/form_timeline.js:564 -#: public/js/frappe/views/communication.js:257 +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:600 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" -msgstr "Re: {0}" - -#: client.py:459 -msgid "Read" -msgstr "Membaca" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Read" -msgstr "Membaca" - +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" msgstr "Membaca" -#. Label of a Check field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Read" -msgstr "Membaca" - -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Read" -msgstr "Membaca" - -#: public/js/form_builder/form_builder.bundle.js:83 -msgid "Read Only" -msgstr "Read Only" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Read Only" -msgstr "Read Only" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Read Only" -msgstr "Read Only" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only" -msgstr "Read Only" +msgstr "" -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Read Only" -msgstr "Read Only" - -#. Label of a Code field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" +msgstr "" -#. Label of a Code field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" - -#. Label of a Code field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Read Only Depends On" -msgstr "Hanya Baca Tergantung" - -#. Label of a Code field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" msgstr "" -#: templates/includes/navbar/navbar_items.html:97 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" msgstr "" -#. Label of a Int field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#. Label of the read_time (Int) field in DocType 'Blog Post' +#: frappe/website/doctype/blog_post/blog_post.json msgid "Read Time" -msgstr "Baca Waktu" +msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" -msgstr "Dibaca oleh Penerima" +msgstr "" -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Read by Recipient On" -msgstr "Baca oleh Penerima Aktif" +msgstr "" -#: desk/doctype/note/note.js:10 +#: frappe/desk/doctype/note/note.js:10 msgid "Read mode" msgstr "" -#: utils/safe_exec.py:91 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" -#. Label of a Markdown Editor field in DocType 'Package' -#: core/doctype/package/package.json -msgctxt "Package" +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json msgid "Readme" msgstr "" -#: public/js/frappe/form/sidebar/review.js:85 -#: social/doctype/energy_point_log/energy_point_log.js:20 +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Reason" msgstr "Alasan" -#. Label of a Text field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reason" -msgstr "Alasan" - -#. Label of a Long Text field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "Reason" -msgstr "Alasan" - -#: public/js/frappe/views/reports/query_report.js:815 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Membangun kembali" -#: public/js/frappe/views/treeview.js:492 +#: frappe/public/js/frappe/views/treeview.js:509 msgid "Rebuild Tree" msgstr "" -#: utils/nestedset.py:180 +#: frappe/utils/nestedset.py:177 msgid "Rebuilding of tree is not supported for {}" msgstr "" -#. Description of the 'Anonymous' (Check) field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Receive anonymous response" -msgstr "" - #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Received" msgstr "Diterima" -#: integrations/doctype/token_cache/token_cache.py:49 +#: frappe/integrations/doctype/token_cache/token_cache.py:49 msgid "Received an invalid token type." msgstr "" -#. Label of a Select field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Document Field" -msgstr "Penerima Berdasarkan Bidang Dokumen" +msgstr "" -#. Label of a Link field in DocType 'Notification Recipient' -#: email/doctype/notification_recipient/notification_recipient.json -msgctxt "Notification Recipient" +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Role" -msgstr "Penerima Berdasarkan Peran" +msgstr "" -#. Label of a Data field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Receiver Parameter" -msgstr "Parameter Penerima" +msgstr "" -#: utils/password_strength.py:125 +#: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." msgstr "tahun terakhir mudah ditebak." -#: public/js/frappe/ui/toolbar/search_utils.js:516 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" msgstr "" -#. Label of a Table field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Recipient" -msgstr "Penerima" - -#. Label of a Data field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Recipient" -msgstr "Penerima" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" -msgstr "Penerima Berhenti berlangganan" +msgstr "" -#. Label of a Small Text field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json msgid "Recipients" -msgstr "Penerima" - -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Table field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Recipients" -msgstr "Penerima" +msgstr "" #. Name of a DocType -#: core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder/recorder.json msgid "Recorder" msgstr "Perekam" #. Name of a DocType -#: core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1608 +msgid "Recursive Fetch From" +msgstr "" + #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Red" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Red" -msgstr "" +msgstr "Merah" -#. Label of a Select field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Redirect HTTP Status" msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Redirect URI Bound To Auth Code" -msgstr "Redirect URI Bound Untuk Kode Tupoksi" +msgstr "" -#. Label of a Text field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "redirect URI" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "redirect URL" +msgstr "" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Redirect URL" -msgstr "redirect URL" +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." msgstr "" -#. Label of a Tab Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" msgstr "" -#: sessions.py:148 +#: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Cache server Redis tidak berjalan. Silahkan hubungi Administrator / dukungan Tech" -#: public/js/frappe/form/toolbar.js:462 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" -#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470 +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" -#. Label of a Link field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "DocType Ref" +msgstr "" -#: desk/doctype/form_tour/form_tour.js:38 +#: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." msgstr "" -#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42 -#: public/js/frappe/views/interaction.js:54 +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 msgid "Reference" msgstr "Referensi" -#. Label of a Section Break field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Section Break field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference" -msgstr "Referensi" - -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Reference Date" msgstr "Referensi Tanggal" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" -msgstr "Referensi Nama Dokumen" +msgstr "" -#. Label of a Link field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "Referensi DocType" +msgstr "" -#. Label of a Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Reference DocType" -msgstr "Referensi DocType" - -#: email/doctype/email_unsubscribe/email_unsubscribe.py:25 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" msgstr "Referensi DOCTYPE dan referensi Nama diperlukan" -#. Label of a Dynamic Link field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Docname" -msgstr "Referensi DocName" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Reference Docname" -msgstr "Referensi DocName" - -#: core/doctype/communication/communication.js:143 -#: core/report/transaction_log_report/transaction_log_report.py:88 +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" msgstr "Referensi DocType" -#. Label of a Link field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" -msgid "Reference Doctype" -msgstr "Referensi DocType" - -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Reference Document" -msgstr "Dokumen referensi" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Data field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Reference Document" -msgstr "Dokumen referensi" - -#. Label of a Dynamic Link field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Reference Document Name" msgstr "" -#. Label of a Dynamic Link field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference Document Name" +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "Tipe Dokumen Referensi" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "nama referensi" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Document Share Key' -#: core/doctype/document_share_key/document_share_key.json -msgctxt "Document Share Key" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'List Filter' -#: desk/doctype/list_filter/list_filter.json -msgctxt "List Filter" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Success Action' -#: core/doctype/success_action/success_action.json -msgctxt "Success Action" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Reference Document Type" -msgstr "Tipe Dokumen Referensi" - -#: core/doctype/communication/communication.js:152 -#: core/report/transaction_log_report/transaction_log_report.py:94 -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Email Unsubscribe' -#: email/doctype/email_unsubscribe/email_unsubscribe.json -msgctxt "Email Unsubscribe" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Event Participants' -#: desk/doctype/event_participants/event_participants.json -msgctxt "Event Participants" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Dynamic Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Reference Name" -msgstr "nama referensi" - -#. Label of a Read Only field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Data field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Read Only field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Reference Owner" -msgstr "referensi Pemilik" - -#. Label of a Data field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Reference Report" -msgstr "Laporan Referensi" +msgstr "" -#. Label of a Link field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Reference Report" -msgstr "Laporan Referensi" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Reference Report" -msgstr "Laporan Referensi" - -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json msgid "Reference Type" -msgstr "Referensi Type" +msgstr "" -#: social/doctype/energy_point_rule/energy_point_rule.py:144 -msgid "Reference document has been cancelled" -msgstr "Dokumen referensi telah dibatalkan" - -#. Label of a Dynamic Link field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json msgid "Reference name" -msgstr "Referensi Nama" +msgstr "" -#: templates/emails/auto_reply.html:3 +#: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" msgstr "Referensi: {0} {1}" -#: website/report/website_analytics/website_analytics.js:37 +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 msgid "Referrer" msgstr "Perujuk" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Referrer" -msgstr "Perujuk" - -#: printing/page/print/print.js:73 public/js/frappe/desk.js:133 -#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65 -#: public/js/frappe/views/reports/query_report.js:1612 -#: public/js/frappe/views/treeview.js:479 -#: public/js/frappe/widgets/chart_widget.js:290 -#: public/js/frappe/widgets/number_card_widget.js:307 +#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:558 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 +#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:340 +#: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Segarkan" -#: core/page/dashboard_view/dashboard_view.js:177 +#: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" msgstr "Segarkan Semua" -#. Label of a Button field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Refresh Google Sheet" -msgstr "Segarkan Google Sheet" +msgstr "" -#. Label of a Password field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Refresh Token" -msgstr "Segarkan Token" +msgstr "" -#. Label of a Password field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Refresh Token" -msgstr "Segarkan Token" +#: frappe/public/js/frappe/list/list_view.js:531 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#. Label of a Data field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#. Label of a Password field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Refresh Token" -msgstr "Segarkan Token" - -#: core/doctype/system_settings/system_settings.js:52 -#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204 +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:368 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refreshing ..." -#: core/doctype/user/user.py:979 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Terdaftar tapi dinonaktifkan" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Rejected" -msgstr "Ditolak" - #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json msgid "Rejected" -msgstr "Ditolak" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" #. Group in Package's connections -#: core/doctype/package/package.json -msgctxt "Package" +#: frappe/core/doctype/package/package.json msgid "Release" msgstr "" -#. Label of a Markdown Editor field in DocType 'Package Release' -#: core/doctype/package_release/package_release.json -msgctxt "Package Release" +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json msgid "Release Notes" msgstr "" -#: core/doctype/communication/communication.js:48 -#: core/doctype/communication/communication.js:159 +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 msgid "Relink" msgstr "relink" -#: core/doctype/communication/communication.js:138 +#: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" msgstr "Komunikasi relink" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Relinked" -msgstr "ditautkan kembali" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Relinked" -msgstr "ditautkan kembali" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: custom/doctype/customize_form/customize_form.js:120 hooks.py -#: public/js/frappe/form/toolbar.js:408 +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Mengisi kembali" -#: public/js/frappe/list/base_list.js:239 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" msgstr "" -#: public/js/frappe/views/reports/query_report.js:99 +#: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "Ingat Nilai Dipilih terakhir" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Remember Last Selected Value" -msgstr "Ingat Nilai Dipilih terakhir" - -#: public/js/frappe/form/reminders.js:33 +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 msgid "Remind At" msgstr "" -#. Label of a Datetime field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "Remind At" -msgstr "" - -#: public/js/frappe/form/toolbar.js:436 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" -#: public/js/frappe/form/reminders.js:13 +#: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" msgstr "" #. Name of a DocType -#: automation/doctype/reminder/reminder.json +#: frappe/automation/doctype/reminder/reminder.json msgid "Reminder" msgstr "" -#: automation/doctype/reminder/reminder.py:38 +#: frappe/automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." msgstr "" -#: public/js/frappe/form/reminders.js:96 +#: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:8 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:488 +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" msgstr "Hapus Lapangan" -#: printing/page/print_format_builder/print_format_builder.js:427 +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" msgstr "Hapus Bagian" -#: custom/doctype/customize_form/customize_form.js:138 +#: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" msgstr "Hapus semua kustomisasi?" -#: public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 msgid "Remove column" msgstr "" -#: core/doctype/file/file.py:155 -msgid "Removed {0}" -msgstr "Dihapus {0}" +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:133 -#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238 -#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737 -#: public/js/frappe/views/treeview.js:295 +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" msgstr "Ubah nama" -#: custom/doctype/custom_field/custom_field.js:115 -#: custom/doctype/custom_field/custom_field.js:132 +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" msgstr "" -#: public/js/frappe/model/model.js:724 +#: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" msgstr "Ubah nama {0}" -#: core/doctype/doctype/doctype.py:688 +#: frappe/core/doctype/doctype/doctype.py:698 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Mengganti nama file dan mengganti kode dalam pengontrol, harap periksa!" -#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 msgid "Reopen" msgstr "Membuka lagi" -#: public/js/frappe/form/toolbar.js:479 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "ulangi" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Repeat Header and Footer" msgstr "" -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat On" -msgstr "Ulangi On" +msgstr "" -#. Label of a Date field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat Till" -msgstr "Ulangi Sampai" +msgstr "" -#. Label of a Int field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Day" -msgstr "Ulangi pada hari" +msgstr "" -#. Label of a Table field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Last Day of the Month" -msgstr "Ulangi pada Hari Terakhir Bulan Ini" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Repeat this Event" -msgstr "Ulangi Acara ini" +msgstr "" -#: utils/password_strength.py:112 +#: frappe/utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" msgstr "Mengulangi seperti "aaa" mudah ditebak" -#: utils/password_strength.py:107 +#: frappe/utils/password_strength.py:105 msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" msgstr "Mengulangi seperti "abcabcabc" hanya sedikit lebih sulit untuk menebak dari "abc"" -#: public/js/frappe/form/sidebar/form_sidebar.js:135 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 msgid "Repeats {0}" msgstr "Ulangi {0}" -#. Option for the 'Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Replied" -msgstr "Menjawab" +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json msgid "Replied" msgstr "Menjawab" -#: core/doctype/communication/communication.js:57 -#: public/js/frappe/form/footer/form_timeline.js:550 +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Reply" msgstr "Membalas" -#. Label of a Text Editor field in DocType 'Discussion Reply' -#: website/doctype/discussion_reply/discussion_reply.json -msgctxt "Discussion Reply" -msgid "Reply" -msgstr "Membalas" - -#: core/doctype/communication/communication.js:62 +#: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" msgstr "Membalas semua" +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' #. Name of a DocType -#: core/doctype/report/report.json public/js/frappe/request.js:610 -msgid "Report" -msgstr "Laporan" - -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Report" -msgstr "Laporan" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Report" -msgstr "Laporan" - -#. Label of a Link field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report" -msgstr "Laporan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Report" -msgstr "Laporan" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Report" -msgstr "Laporan" - -#. Option for the 'Type' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report" -msgstr "Laporan" - -#. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Report" -msgid "Report" -msgstr "Laporan" - #. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for #. Page and Report' -#. Label of a Link field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Report" -msgstr "Laporan" - +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Report" -msgstr "Laporan" - #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 +#: frappe/public/js/frappe/request.js:615 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Laporan" -#: public/js/frappe/list/list_view_select.js:66 -msgid "Report Builder" -msgstr "Report Builder" - #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Builder" -msgstr "Report Builder" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "Report Builder" +msgstr "" #. Name of a DocType -#: core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_column/report_column.json msgid "Report Column" msgstr "Kolom Laporan" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Description" -msgstr "Deskripsi laporan" +msgstr "" -#: core/doctype/report/report.py:148 +#: frappe/core/doctype/report/report.py:151 msgid "Report Document Error" msgstr "Laporkan Kesalahan Dokumen" #. Name of a DocType -#: core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/report_filter/report_filter.json msgid "Report Filter" msgstr "Filter Laporan" -#. Label of a Section Break field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Filters" -msgstr "laporan Filter" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "Laporan Hide" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Report Hide" -msgstr "Laporan Hide" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Report Hide" -msgstr "Laporan Hide" - -#. Label of a Section Break field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Report Information" -msgstr "Laporkan Informasi" +msgstr "" #. Name of a role -#: core/doctype/report/report.json -#: email/doctype/auto_email_report/auto_email_report.json +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" msgstr "Manajer Laporan" -#: public/js/frappe/views/reports/query_report.js:1793 +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Nama Laporan" -#. Label of a Data field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Link field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Link field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Data field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Report Name" -msgstr "Nama Laporan" - -#. Label of a Data field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Name" -msgstr "Nama Laporan" - -#: desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:69 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Reference Doctype" -msgstr "Laporkan Jenis Dokumen Referensi" +msgstr "" -#. Label of a Read Only field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Type" -msgstr "Jenis Laporan" +msgstr "" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Report Type" -msgstr "Jenis Laporan" +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" -#. Label of a Select field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Report Type" -msgstr "Jenis Laporan" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" -#: core/doctype/doctype/doctype.py:1750 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "Report cannot be set for Single types" msgstr "Laporan tidak dapat ditetapkan untuk jenis Tunggal" -#: desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 +#: frappe/desk/doctype/number_card/number_card.js:191 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Laporan" -#: desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:186 msgid "Report has no numeric fields, please change the Report Name" msgstr "Laporan tidak memiliki bidang numerik, harap ubah Nama Laporan" -#: public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:102 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" -#: core/doctype/prepared_report/prepared_report.py:202 +#: frappe/core/doctype/prepared_report/prepared_report.py:223 msgid "Report timed out." msgstr "" -#: desk/query_report.py:568 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Laporan berhasil diperbarui" -#: public/js/frappe/views/reports/report_view.js:1283 +#: frappe/public/js/frappe/views/reports/report_view.js:1357 msgid "Report was not saved (there were errors)" msgstr "Laporan tidak disimpan (ada kesalahan)" -#: public/js/frappe/views/reports/query_report.js:1831 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Laporan dengan lebih dari 10 kolom terlihat lebih baik dalam mode Lansekap." -#: public/js/frappe/ui/toolbar/search_utils.js:235 -#: public/js/frappe/ui/toolbar/search_utils.js:236 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 msgid "Report {0}" msgstr "Laporan {0}" -#: desk/reportview.py:326 +#: frappe/desk/reportview.py:364 msgid "Report {0} deleted" msgstr "" -#: desk/query_report.py:50 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Laporan {0} dinonaktifkan" -#: desk/reportview.py:303 +#: frappe/desk/reportview.py:341 msgid "Report {0} saved" msgstr "" -#: public/js/frappe/views/reports/report_view.js:20 +#: frappe/public/js/frappe/views/reports/report_view.js:20 msgid "Report:" msgstr "Melaporkan:" -#: public/js/frappe/ui/toolbar/search_utils.js:531 +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 msgid "Reports" msgstr "Laporan" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Reports" -msgstr "Laporan" - -#: patches/v14_0/update_workspace2.py:50 +#: frappe/patches/v14_0/update_workspace2.py:50 msgid "Reports & Masters" msgstr "Laporan & Master" -#: public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Laporan sudah dalam Antrian" -#: www/me.html:66 -msgid "Request Account Deletion" +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." msgstr "" -#. Label of a Code field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the data (Code) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Data" -msgstr "Meminta Data" +msgstr "" -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Description" msgstr "" -#. Label of a Code field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Headers" msgstr "" -#. Label of a Code field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Request Headers" -msgstr "" - -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request ID" msgstr "" -#. Label of a Int field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Request Limit" msgstr "" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request Method" msgstr "" -#. Label of a Select field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request Structure" -msgstr "Struktur Permintaan" +msgstr "" -#: public/js/frappe/request.js:228 +#: frappe/public/js/frappe/request.js:231 msgid "Request Timed Out" msgstr "Batas waktu permintaan habis" -#: public/js/frappe/request.js:241 +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 msgid "Request Timeout" msgstr "" -#. Label of a Int field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Request Timeout" -msgstr "" - -#. Label of a Data field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Request URL" -msgstr "Permintaan URL" +msgstr "" -#. Label of a Code field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Require Trusted Certificate" -msgstr "Membutuhkan Sertifikat Tepercaya" +msgstr "" #. Description of the 'LDAP search path for Groups' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" msgstr "" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" msgstr "" -#: core/doctype/communication/communication.js:279 +#: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "Res: {0}" +msgstr "" -#: desk/doctype/form_tour/form_tour.js:101 -#: desk/doctype/global_search_settings/global_search_settings.js:19 -#: desk/doctype/module_onboarding/module_onboarding.js:17 -#: website/doctype/portal_settings/portal_settings.js:19 +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 msgid "Reset" msgstr "ulang" -#: custom/doctype/customize_form/customize_form.js:136 +#: frappe/custom/doctype/customize_form/customize_form.js:136 msgid "Reset All Customizations" msgstr "" -#: public/js/print_format_builder/print_format_builder.bundle.js:21 -#: public/js/workflow_builder/workflow_builder.bundle.js:37 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 msgid "Reset Changes" msgstr "" -#: public/js/frappe/widgets/chart_widget.js:305 +#: frappe/public/js/frappe/widgets/chart_widget.js:306 msgid "Reset Chart" msgstr "Atur Ulang Grafik" -#: public/js/frappe/views/dashboard/dashboard_view.js:38 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 msgid "Reset Dashboard Customizations" msgstr "" -#: public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/list/list_settings.js:230 msgid "Reset Fields" msgstr "Setel Ulang Bidang" -#: core/doctype/user/user.js:161 core/doctype/user/user.js:164 +#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 msgid "Reset LDAP Password" msgstr "Setel ulang Kata Sandi LDAP" -#: custom/doctype/customize_form/customize_form.js:128 +#: frappe/custom/doctype/customize_form/customize_form.js:128 msgid "Reset Layout" msgstr "" -#: core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:230 msgid "Reset OTP Secret" msgstr "Setel ulang OTP Secret" -#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35 -#: www/me.html:44 www/update-password.html:3 www/update-password.html:9 +#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 msgid "Reset Password" -msgstr "Reset Password" +msgstr "" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Reset Password Key" -msgstr "Reset Password Key" +msgstr "" -#. Label of a Duration field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Template" msgstr "" -#: core/page/permission_manager/permission_manager.js:109 +#: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" msgstr "Atur Ulang Perizinan untuk {0}?" -#: public/js/frappe/utils/datatable.js:8 +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 msgid "Reset sorting" msgstr "" -#: www/me.html:36 -msgid "Reset the password for your account" -msgstr "" - -#: public/js/frappe/form/grid_row.js:409 +#: frappe/public/js/frappe/form/grid_row.js:417 msgid "Reset to default" msgstr "" -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 msgid "Reset to defaults" msgstr "Ulang ke default" -#: templates/emails/password_reset.html:3 +#: frappe/templates/emails/password_reset.html:3 msgid "Reset your password" msgstr "Mereset password Anda" -#. Label of a Text Editor field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" -#. Label of a Section Break field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" -#. Label of a Code field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Response" -msgstr "Tanggapan" +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" -#. Label of a Code field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_html (Code) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json msgid "Response " msgstr "" -#. Label of a Select field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" -msgstr "Response Type" +msgstr "" -#: public/js/frappe/ui/notifications/notifications.js:400 +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 msgid "Rest of the day" msgstr "" -#: core/doctype/deleted_document/deleted_document.js:11 -#: core/doctype/deleted_document/deleted_document_list.js:48 +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" msgstr "Mengembalikan" -#: core/page/permission_manager/permission_manager.js:492 +#: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" msgstr "Kembalikan Izin Asli" -#: website/doctype/portal_settings/portal_settings.js:20 +#: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" msgstr "Mengembalikan ke pengaturan default?" -#. Label of a Check field in DocType 'Deleted Document' -#: core/doctype/deleted_document/deleted_document.json -msgctxt "Deleted Document" +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json msgid "Restored" -msgstr "Pulih" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:73 +#: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" msgstr "Mengembalikan Dokumen yang Dihapus" -#. Label of a Small Text field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Restrict IP" -msgstr "Membatasi IP" +msgstr "" -#. Label of a Link field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" +msgstr "" -#. Label of a Link field in DocType 'Module Def' -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Restrict To Domain" -msgstr "Batasi Ke Domain" - -#. Label of a Link field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Restrict to Domain" -msgstr "Batasi ke Domain" - -#. Label of a Link field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Restrict to Domain" -msgstr "Batasi ke Domain" +msgstr "" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" -msgstr "Membatasi pengguna dari alamat IP ini saja. Beberapa alamat IP dapat ditambahkan dengan memisahkan dengan koma. Juga menerima alamat IP parsial seperti (111.111.111)" +msgstr "" -#: public/js/frappe/list/list_view.js:172 +#: frappe/public/js/frappe/list/list_view.js:196 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Batasan" -#: public/js/frappe/ui/toolbar/awesome_bar.js:354 -#: public/js/frappe/ui/toolbar/awesome_bar.js:369 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 msgid "Result" msgstr "" -#: email/doctype/email_queue/email_queue_list.js:27 +#: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" msgstr "Lanjutkan Mengirim" -#: core/doctype/data_import/data_import.js:110 +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json msgid "Retry" msgstr "Mencoba kembali" -#. Label of a Int field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Retry" -msgstr "Mencoba kembali" - -#: email/doctype/email_queue/email_queue_list.js:47 +#: frappe/email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" msgstr "" -#: www/qrcode.html:15 +#: frappe/www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" msgstr "Kembali ke layar Verifikasi dan masukkan kode yang ditampilkan oleh aplikasi autentikasi Anda" -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Reverse Icon Color" -msgstr "Membalikkan Icon Warna" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.js:10 -#: social/doctype/energy_point_log/energy_point_log.js:15 -msgid "Revert" -msgstr "Kembali" - -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Revert" -msgstr "Kembali" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Revert Of" -msgstr "Kembalikan Dari" - -#. Label of a Check field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Reverted" -msgstr "Dikembalikan" - -#: database/schema.py:162 +#: frappe/database/schema.py:161 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Mengembalikan panjang ke {0} untuk '{1}' dalam '{2}'. Menyetel panjang sebagai {3} akan menyebabkan pemotongan data." -#. Option for the 'Type' (Select) field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Review" -msgstr "Ulasan" - -#. Name of a DocType -#: social/doctype/review_level/review_level.json -msgid "Review Level" -msgstr "Tingkat Ulasan" - -#. Label of a Table field in DocType 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Review Levels" -msgstr "Tinjau Tingkat" - -#. Label of a Int field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Review Points" -msgstr "Poin Ulasan" - -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Revocation URI" msgstr "" -#: www/third_party_apps.html:45 +#: frappe/www/third_party_apps.html:47 msgid "Revoke" msgstr "Mencabut" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Revoked" -msgstr "dicabut" +msgstr "" #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Rich Text" -msgstr "Rich Text" - -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Rich Text" -msgstr "Rich Text" - #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" -msgstr "Rich Text" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Right" -msgstr "Benar" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' -#: printing/doctype/letter_head/letter_head.json -msgctxt "Letter Head" -msgid "Right" -msgstr "Benar" - #. Option for the 'Text Align' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json msgid "Right" msgstr "Benar" -#: printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" msgstr "Benar" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Bottom" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Center" msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Robots.txt" -msgstr "robots.txt" +msgstr "" +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType -#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109 -#: core/page/permission_manager/permission_manager.js:212 -#: core/page/permission_manager/permission_manager.js:439 -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Role" -msgstr "Peran" - -#. Label of a Table field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Has Role' -#: core/doctype/has_role/has_role.json -msgctxt "Has Role" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Onboarding Permission' -#: desk/doctype/onboarding_permission/onboarding_permission.json -msgctxt "Onboarding Permission" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Review Level' -#: social/doctype/review_level/review_level.json -msgctxt "Review Level" -msgid "Role" -msgstr "Peran" - +#. Label of the role (Link) field in DocType 'User Type' #. Label of a Link in the Users Workspace #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role" +#. Label of the role (Link) field in DocType 'Onboarding Permission' +#. Label of the role (Link) field in DocType 'ToDo' +#. Label of the role (Link) field in DocType 'OAuth Client Role' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" msgstr "Peran" -#. Label of a Link field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" -msgid "Role" -msgstr "Peran" - -#. Label of a Link field in DocType 'Workflow Action Permitted Role' -#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json -msgctxt "Workflow Action Permitted Role" -msgid "Role" -msgstr "Peran" - -#: core/doctype/role/role.js:8 +#: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." msgstr "" -#: core/doctype/role/role.js:13 +#: frappe/core/doctype/role/role.js:13 msgid "Role 'Desk User' will be given to all system users." msgstr "" -#. Label of a Data field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json msgid "Role Name" -msgstr "Nama Peran" - -#. Label of a Data field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" -msgid "Role Name" -msgstr "Nama Peran" +msgstr "" #. Name of a DocType -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgid "Role Permission for Page and Report" -msgstr "Peran Izin Page dan Laporan" - #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role Permission for Page and Report" +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" msgstr "Peran Izin Page dan Laporan" -#: public/js/frappe/roles_editor.js:100 -msgid "Role Permissions" -msgstr "Izin peran" - -#. Label of a Section Break field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:103 msgid "Role Permissions" msgstr "Izin peran" #. Label of a Link in the Users Workspace -#: core/page/permission_manager/permission_manager.js:4 -#: core/workspace/users/users.json +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" -#: public/js/frappe/list/list_view.js:1650 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" #. Name of a DocType -#: core/doctype/role_profile/role_profile.json -msgid "Role Profile" -msgstr "Profil Peran" - +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' #. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "Role Profile" +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json msgid "Role Profile" msgstr "Profil Peran" -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Role Profile" -msgstr "Profil Peran" +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" -#. Label of a Section Break field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json msgid "Role and Level" -msgstr "Peran dan Tingkat" +msgstr "" -#. Label of a Section Break field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Role and Level" -msgstr "Peran dan Tingkat" - -#: core/doctype/user/user.py:314 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" -#: core/page/permission_manager/permission_manager.js:59 +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json msgid "Roles" msgstr "4.1.2 Roles(Peran)" -#. Label of a Section Break field in DocType 'Custom HTML Block' -#. Label of a Table field in DocType 'Custom HTML Block' -#: desk/doctype/custom_html_block/custom_html_block.json -msgctxt "Custom HTML Block" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Table field in DocType 'Workspace' -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Roles" -msgstr "4.1.2 Roles(Peran)" - -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Roles & Permissions" msgstr "" -#. Label of a Table field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json msgid "Roles Assigned" -msgstr "Peran Ditugaskan" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles Assigned" -msgstr "Peran Ditugaskan" - -#. Label of a HTML field in DocType 'Role Profile' -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json msgid "Roles HTML" -msgstr "Peran HTML" +msgstr "" -#. Label of a HTML field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Roles HTML" -msgstr "Peran HTML" - -#. Label of a HTML field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Roles Html" -msgstr "Peran Html" +msgstr "" -#: utils/nestedset.py:283 +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:280 msgid "Root {0} cannot be deleted" msgstr "Akar {0} tidak dapat dihapus" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "Usul" +msgstr "" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Rounding Method" msgstr "" -#. Label of a Data field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Route" -msgstr "Rute" - +#. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'DocType Layout' -#: custom/doctype/doctype_layout/doctype_layout.json -msgctxt "DocType Layout" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Help Category' -#: website/doctype/help_category/help_category.json -msgctxt "Help Category" -msgid "Route" -msgstr "Rute" - #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#. Label of a Data field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Blog Category' +#. Label of the route (Data) field in DocType 'Blog Post' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Route History' -#: desk/doctype/route_history/route_history.json -msgctxt "Route History" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Route" -msgstr "Rute" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Route" -msgstr "Rute" +msgstr "" #. Name of a DocType -#: desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/route_history/route_history.json msgid "Route History" msgstr "Riwayat Rute" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Route History" -msgstr "Riwayat Rute" - -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Route Redirects" -msgstr "Pengalihan Rute" +msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" -msgid "Route: Example \"/desk\"" -msgstr "Rute: Contoh "/ desk"" +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" -#: model/base_document.py:710 model/base_document.py:751 model/document.py:591 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Baris" -#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782 +#: frappe/core/doctype/version/version_view.html:73 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1831 +#: frappe/core/doctype/doctype/doctype.py:1841 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: model/base_document.py:868 +#: frappe/model/base_document.py:982 msgid "Row #{0}:" msgstr "Row # {0}:" -#: core/doctype/doctype/doctype.py:492 +#: frappe/core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" msgstr "" -#. Label of a Data field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Row Index" -msgstr "Indeks Baris" +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" -#. Label of a Code field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" +#. Label of the row_index (Data) field in DocType 'Transaction Log' +#: frappe/core/doctype/transaction_log/transaction_log.json +msgid "Row Index" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" msgstr "" -#. Label of a Data field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Row Name" -msgstr "Nama Baris" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:349 +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:68 +msgid "Row Values Changed" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:352 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar" -#: custom/doctype/customize_form/customize_form.py:337 +#: frappe/custom/doctype/customize_form/customize_form.py:341 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 msgid "Rows Added" -msgstr "baris Ditambahkan" +msgstr "" -#. Label of a Section Break field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the rows_removed_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:32 msgid "Rows Removed" -msgstr "baris Dihapus" +msgstr "" -#. Label of a Select field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Rule" -msgstr "Aturan" +msgstr "" -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Rule" -msgstr "Aturan" - -#. Label of a Section Break field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rule Conditions" -msgstr "Ketentuan Aturan" +msgstr "" -#. Label of a Data field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Rule Name" -msgstr "Nama aturan" - -#: permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" #. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Rules" msgstr "" #. Description of the 'Transitions' (Table) field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Rules defining transition of state in the workflow." -msgstr "Aturan yang mendefinisikan transisi status dalam alur kerja." +msgstr "" #. Description of the 'Transition Rules' (Section Break) field in DocType #. 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/workflow/doctype/workflow/workflow.json msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." -msgstr "Aturan untuk bagaimana negara adalah transisi, seperti negara berikutnya dan mana peran diperbolehkan untuk mengubah keadaan dll" +msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Rules with higher priority number will be applied first." -msgstr "Aturan dengan nomor prioritas lebih tinggi akan diterapkan terlebih dahulu." +msgstr "" -#. Label of a Int field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Run Jobs only Daily if Inactive For (Days)" -msgstr "Jalankan Pekerjaan hanya Setiap Hari jika Tidak Aktif Untuk (Hari)" +msgstr "" #. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Run scheduled jobs only if checked" -msgstr "Menjalankan pekerjaan dijadwalkan hanya jika diperiksa" +msgstr "" -#. Name of a DocType -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgid "S3 Backup Settings" -msgstr "S3 Backup Settings" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" -#. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "S3 Backup Settings" -msgid "S3 Backup Settings" -msgstr "S3 Backup Settings" - -#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18 -msgid "S3 Backup complete!" -msgstr "S3 Backup selesai!" - -#. Label of a Section Break field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "S3 Bucket Details" -msgstr "Detail Bucket S3" +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "SMS" -msgstr "SMS" - -#. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "SMS" -msgstr "SMS" - #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json msgid "SMS" -msgstr "SMS" +msgstr "" -#. Label of a Small Text field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "SMS Gateway URL" -msgstr "SMS Gateway URL" +msgstr "" #. Name of a DocType -#: core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_log/sms_log.json msgid "SMS Log" msgstr "" #. Name of a DocType -#: core/doctype/sms_parameter/sms_parameter.json +#: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "SMS Parameter" msgstr "Parameter SMS" #. Name of a DocType -#: core/doctype/sms_settings/sms_settings.json -msgid "SMS Settings" -msgstr "Pengaturan SMS" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "SMS Settings" +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "SMS Settings" msgstr "Pengaturan SMS" -#: core/doctype/sms_settings/sms_settings.py:110 -msgid "SMS sent to following numbers: {0}" -msgstr "SMS dikirim ke nomor berikut: {0}" +#: frappe/core/doctype/sms_settings/sms_settings.py:110 +msgid "SMS sent successfully" +msgstr "" -#: email/doctype/email_account/email_account.py:182 +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 msgid "SMTP Server is required" msgstr "" -#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email -#. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "SMTP Settings for outgoing emails" -msgstr "Pengaturan SMTP untuk email keluar" - #. Option for the 'Type' (Select) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "SQL" msgstr "" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#: frappe/desk/doctype/bulk_update/bulk_update.json msgid "SQL Conditions. Example: status=\"Open\"" -msgstr "Kondisi SQL. Contoh: status = "Open"" +msgstr "" -#: core/doctype/recorder/recorder.js:36 +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" msgstr "" -#. Label of a HTML field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "SQL Explain" -msgstr "" - -#. Label of a HTML field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "SQL Output" msgstr "" -#. Label of a Table field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "SQL Queries" msgstr "" -#. Label of a Select field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "SSL/TLS Mode" -msgstr "Mode SSL / TLS" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Sales Manager" -msgstr "Sales Manager" +msgstr "" #. Name of a role -#: contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/contact/contact.json msgid "Sales Master Manager" msgstr "Master Manajer Penjualan" #. Name of a role -#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json -#: geo/doctype/currency/currency.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json msgid "Sales User" msgstr "Penjualan Pengguna" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Salesforce" -msgstr "Tenaga penjualan" +msgstr "" +#. Label of the salutation (Link) field in DocType 'Contact' #. Name of a DocType -#: contacts/doctype/salutation/salutation.json +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" msgstr "Panggilan" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Salutation" -msgstr "Panggilan" - -#. Label of a Data field in DocType 'Salutation' -#: contacts/doctype/salutation/salutation.json -msgctxt "Salutation" -msgid "Salutation" -msgstr "Panggilan" - -#: integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" msgstr "Bidang yang sama sudah masuk lebih dari satu kali" -#. Label of a HTML field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json msgid "Sample" -msgstr "Sampel" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Saturday" -msgstr "Sabtu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Saturday" -msgstr "Sabtu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Saturday" -msgstr "Sabtu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Saturday" -msgstr "Sabtu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Saturday" -msgstr "Sabtu" - -#: core/doctype/data_import/data_import.js:113 -#: desk/page/user_profile/user_profile_controller.js:319 -#: printing/page/print/print.js:831 -#: printing/page/print_format_builder/print_format_builder.js:160 -#: public/js/frappe/form/footer/form_timeline.js:638 -#: public/js/frappe/form/quick_entry.js:156 -#: public/js/frappe/list/list_settings.js:36 -#: public/js/frappe/list/list_settings.js:244 -#: public/js/frappe/list/list_sidebar_group_by.js:25 -#: public/js/frappe/ui/toolbar/toolbar.js:297 -#: public/js/frappe/utils/common.js:443 -#: public/js/frappe/views/kanban/kanban_settings.js:45 -#: public/js/frappe/views/kanban/kanban_settings.js:189 -#: public/js/frappe/views/kanban/kanban_view.js:340 -#: public/js/frappe/views/reports/query_report.js:1785 -#: public/js/frappe/views/reports/report_view.js:1631 -#: public/js/frappe/views/workspace/workspace.js:487 -#: public/js/frappe/widgets/base_widget.js:140 -#: public/js/frappe/widgets/quick_list_widget.js:117 -#: public/js/print_format_builder/print_format_builder.bundle.js:15 -#: public/js/workflow_builder/workflow_builder.bundle.js:33 -msgid "Save" -msgstr "Simpan" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print_format_builder/print_format_builder.js:160 +#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/quick_entry.js:185 +#: frappe/public/js/frappe/list/list_settings.js:36 +#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 +#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 msgid "Save" msgstr "Simpan" -#: core/doctype/user/user.js:316 +#: frappe/core/doctype/user/user.js:339 msgid "Save API Secret: {0}" msgstr "" -#: workflow/doctype/workflow/workflow.js:143 +#: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Simpan Saja" -#: public/js/frappe/views/reports/report_view.js:1314 -#: public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1388 +#: frappe/public/js/frappe/views/reports/report_view.js:1733 msgid "Save As" msgstr "Disimpan Sebagai" -#: public/js/frappe/views/dashboard/dashboard_view.js:62 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 msgid "Save Customizations" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1788 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Menyimpan laporan" -#: public/js/frappe/views/kanban/kanban_view.js:94 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" msgstr "Simpan filter" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Save on Completion" msgstr "" -#: public/js/frappe/form/form_tour.js:287 +#: frappe/public/js/frappe/form/form_tour.js:295 msgid "Save the document." msgstr "" -#: desk/form/save.py:46 model/rename_doc.py:108 -#: printing/page/print_format_builder/print_format_builder.js:845 -#: public/js/frappe/form/toolbar.js:260 -#: public/js/frappe/views/kanban/kanban_board.bundle.js:910 +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" msgstr "Disimpan" -#: public/js/frappe/list/list_settings.js:40 -#: public/js/frappe/views/kanban/kanban_settings.js:47 -#: public/js/frappe/views/workspace/workspace.js:499 +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:40 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 msgid "Saving" msgstr "Menyimpan" -#: public/js/frappe/form/save.js:9 +#: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" msgstr "Menyimpan" -#: custom/doctype/customize_form/customize_form.js:343 +#: frappe/custom/doctype/customize_form/customize_form.js:411 msgid "Saving Customization..." msgstr "" -#: desk/doctype/module_onboarding/module_onboarding.js:8 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." msgstr "" -#: public/js/form_builder/store.js:228 -#: public/js/print_format_builder/store.js:36 -#: public/js/workflow_builder/store.js:73 +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." msgstr "Penghematan..." -#: public/js/frappe/scanner/index.js:72 +#: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" msgstr "" -#: www/qrcode.html:14 +#: frappe/www/qrcode.html:14 msgid "Scan the QR Code and enter the resulting code displayed." msgstr "Scan QR Code dan masukkan hasil kode yang ditampilkan." -#: email/doctype/newsletter/newsletter.js:125 +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Schedule" msgstr "" -#: email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: public/js/frappe/views/communication.js:81 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Schedule sending at a later time" -msgstr "" - -#: email/doctype/newsletter/newsletter_list.js:7 -msgid "Scheduled" -msgstr "Dijadwalkan" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Scheduled" -msgstr "Dijadwalkan" - #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled" msgstr "Dijadwalkan" -#. Label of a Link field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job" -msgstr "Pekerjaan Terjadwal" +msgstr "" #. Name of a DocType -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgid "Scheduled Job Log" -msgstr "Log Pekerjaan Terjadwal" - -#. Linked DocType in Scheduled Job Type's connections -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job Log" msgstr "Log Pekerjaan Terjadwal" #. Name of a DocType -#: core/doctype/scheduled_job_type/scheduled_job_type.json +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Scheduled Job Type" msgstr "Jenis Pekerjaan yang Dijadwalkan" #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Scheduled Job Type" -msgid "Scheduled Job Type" -msgstr "Jenis Pekerjaan yang Dijadwalkan" - -#. Linked DocType in Server Script's connections -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Scheduled Job Type" -msgstr "Jenis Pekerjaan yang Dijadwalkan" - -#. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Scheduled Job Log" +#: frappe/core/workspace/build/build.json msgid "Scheduled Jobs Logs" msgstr "" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Scheduled Sending" -msgstr "" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Scheduled To Send" -msgstr "Dijadwalkan Untuk Mengirim" - -#: core/doctype/server_script/server_script.py:274 +#: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Eksekusi terjadwal untuk skrip {0} telah diperbarui" -#: email/doctype/auto_email_report/auto_email_report.js:26 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 msgid "Scheduled to send" msgstr "Dijadwalkan untuk mengirim" -#. Option for the 'Script Type' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Scheduler Event" -msgstr "Acara Penjadwal" +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" -#: core/doctype/data_import/data_import.py:97 +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler Inactive" msgstr "Penjadwal Tidak Aktif" -#: utils/scheduler.py:196 +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:247 msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: core/doctype/data_import/data_import.py:97 +#: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler is inactive. Cannot import data." msgstr "Penjadwal tidak aktif. Tidak dapat mengimpor data." -#: core/doctype/rq_job/rq_job_list.js:19 +#: frappe/core/doctype/rq_job/rq_job_list.js:19 msgid "Scheduler: Active" msgstr "" -#: core/doctype/rq_job/rq_job_list.js:21 +#: frappe/core/doctype/rq_job/rq_job_list.js:21 msgid "Scheduler: Inactive" msgstr "" -#. Label of a Data field in DocType 'OAuth Scope' -#: integrations/doctype/oauth_scope/oauth_scope.json -msgctxt "OAuth Scope" +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "Scope" msgstr "" -#. Label of a Section Break field in DocType 'Connected App' -#. Label of a Table field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Scopes" -msgstr "lingkup" +msgstr "" -#. Label of a Text field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "Scopes" -msgstr "lingkup" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" -#. Label of a Text field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Text field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Table field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "Scopes" -msgstr "lingkup" - -#. Label of a Code field in DocType 'Client Script' -#: custom/doctype/client_script/client_script.json -msgctxt "Client Script" +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" -msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Script" -msgstr "Skrip" - -#. Label of a Code field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Script" -msgstr "Skrip" - -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Script" -msgstr "Skrip" - -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Script" -msgstr "Skrip" +msgstr "" #. Name of a role -#: core/doctype/server_script/server_script.json +#: frappe/core/doctype/server_script/server_script.json msgid "Script Manager" msgstr "Pengelola Skrip" #. Option for the 'Report Type' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" +#: frappe/core/doctype/report/report.json msgid "Script Report" -msgstr "Script Laporan" +msgstr "" -#. Label of a Select field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Script Type" -msgstr "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json msgid "Scripting" msgstr "" -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Scripting" -msgstr "" - -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Scripting / Style" msgstr "" -#: public/js/frappe/form/link_selector.js:46 -#: public/js/frappe/ui/toolbar/search.js:49 -#: public/js/frappe/ui/toolbar/search.js:68 -#: templates/includes/search_template.html:26 www/search.py:19 +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 msgid "Search" msgstr "Pencarian" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Search Bar" msgstr "" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Search Fields" -msgstr "Cari Fields" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Search Fields" -msgstr "Cari Fields" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:186 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 msgid "Search Help" msgstr "mencari bantuan" -#. Label of a Table field in DocType 'Global Search Settings' -#: desk/doctype/global_search_settings/global_search_settings.json -msgctxt "Global Search Settings" +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json msgid "Search Priorities" -msgstr "Prioritas Pencarian" - -#: www/search.py:14 -msgid "Search Results for" msgstr "" -#: core/doctype/doctype/doctype.py:1418 +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1467 msgid "Search field {0} is not valid" msgstr "kolom pencarian {0} tidak valid" -#: public/js/frappe/ui/toolbar/search.js:50 -#: public/js/frappe/ui/toolbar/search.js:69 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 msgid "Search for anything" msgstr "Cari untuk apapun" -#: public/js/frappe/ui/toolbar/awesome_bar.js:306 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 msgid "Search for {0}" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:166 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 msgid "Search in a document type" msgstr "Cari dalam jenis dokumen" -#: templates/includes/search_box.html:8 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 msgid "Search results for" msgstr "Hasil pencarian" -#: templates/includes/navbar/navbar_search.html:6 -#: templates/includes/search_box.html:2 -#: templates/includes/search_template.html:23 +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 msgid "Search..." msgstr "Pencarian..." -#: public/js/frappe/ui/toolbar/search.js:210 +#: frappe/public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." msgstr "Mencari ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json msgid "Section" -msgstr "Bagian" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Section Break" -msgstr "Bagian istirahat" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Section Break" -msgstr "Bagian istirahat" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Section Break" -msgstr "Bagian istirahat" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Section Break" -msgstr "Bagian istirahat" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Section Break" -msgstr "Bagian istirahat" +msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:421 +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 msgid "Section Heading" msgstr "bagian Heading" -#. Label of a Data field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Section ID" msgstr "" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Security Settings" -msgstr "Pengaturan Keamanan" +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:784 +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Lihat semua laporan sebelumnya." -#: public/js/frappe/form/form.js:1208 -#: website/doctype/contact_us_settings/contact_us_settings.js:4 +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" msgstr "Lihat di Website" -#: website/doctype/web_form/templates/web_form.html:150 +#: frappe/website/doctype/web_form/templates/web_form.html:153 +msgctxt "Button in web form" msgid "See previous responses" msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" msgstr "Lihat dokumen di {0}" -#: core/doctype/error_log/error_log_list.js:5 +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Seen" msgstr "Terlihat" -#. Label of a Check field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Check field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "Seen" -msgstr "Terlihat" - -#. Label of a Section Break field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Seen By" -msgstr "Dilihat oleh" +msgstr "" -#. Label of a Table field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json msgid "Seen By Table" -msgstr "Dilihat Dengan Table" - -#: printing/page/print/print.js:592 -msgid "Select" -msgstr "Pilih" - -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Select" -msgstr "Pilih" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Select" -msgstr "Pilih" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Select" -msgstr "Pilih" +msgstr "" +#. Label of the select (Check) field in DocType 'Custom DocPerm' #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Select" -msgstr "Pilih" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Select" -msgstr "Pilih" - +#. Label of the select (Check) field in DocType 'DocPerm' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Select" -msgstr "Pilih" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Select" -msgstr "Pilih" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Select" -msgstr "Pilih" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:602 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" msgstr "Pilih" -#: public/js/frappe/views/communication.js:150 -#: public/js/frappe/views/interaction.js:93 -#: public/js/frappe/views/interaction.js:155 +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:481 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Pilih Lampiran" -#: custom/doctype/client_script/client_script.js:25 -#: custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:25 +#: frappe/custom/doctype/client_script/client_script.js:28 msgid "Select Child Table" msgstr "Pilih Tabel Anak" -#: public/js/frappe/views/reports/report_view.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:383 msgid "Select Column" msgstr "Pilih Kolom" -#: public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Pilih Kolom" -#: desk/page/setup_wizard/setup_wizard.js:387 +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 msgid "Select Country" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:404 +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 msgid "Select Currency" msgstr "" -#: public/js/frappe/utils/dashboard_utils.js:240 -msgid "Select Dashboard" -msgstr "Pilih Dasbor" - -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 msgid "Select Dashboard" msgstr "Pilih Dasbor" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Select Date Range" -msgstr "Pilih Rentang Tanggal" - -#: public/js/frappe/doctype/index.js:170 -msgid "Select DocType" -msgstr "Pilih DocType" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Select DocType" -msgstr "Pilih DocType" - -#. Label of a Link field in DocType 'Data Export' -#: core/doctype/data_export/data_export.json -msgctxt "Data Export" -msgid "Select Doctype" -msgstr "Pilih Doctype" - -#. Label of a Dynamic Link field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Select Document" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50 -#: workflow/page/workflow_builder/workflow_builder.js:50 +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "Pilih DocType" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 msgid "Select Document Type" msgstr "Pilih Jenis Dokumen" -#: core/page/permission_manager/permission_manager.js:172 +#: frappe/core/page/permission_manager/permission_manager.js:179 msgid "Select Document Type or Role to start." msgstr "Pilih Document Type atau Peran untuk memulai." -#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762 +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Pilih Bidang" -#: public/js/frappe/form/grid_row.js:459 -#: public/js/frappe/list/list_settings.js:233 -#: public/js/frappe/views/kanban/kanban_settings.js:181 +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:473 +#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Pilih Fields" -#: public/js/frappe/data_import/data_exporter.js:143 +#: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Pilih Bidang Untuk Disisipkan" -#: public/js/frappe/data_import/data_exporter.js:144 +#: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" msgstr "Pilih Fields To Update" -#: public/js/frappe/list/list_sidebar_group_by.js:21 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" msgstr "Pilih Filter" -#: desk/doctype/event/event.py:96 +#: frappe/desk/doctype/event/event.py:103 msgid "Select Google Calendar to which event should be synced." msgstr "Pilih Google Kalender tempat acara harus disinkronkan." -#: contacts/doctype/contact/contact.py:75 +#: frappe/contacts/doctype/contact/contact.py:77 msgid "Select Google Contacts to which contact should be synced." msgstr "Pilih Google Kontak yang kontaknya harus disinkronkan." -#: public/js/frappe/list/list_view_select.js:185 +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:379 +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 msgid "Select Language" msgstr "Pilih bahasa" -#. Label of a Select field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select List View" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:154 +#: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" msgstr "pilih wajib" -#: custom/doctype/customize_form/customize_form.js:235 +#: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" msgstr "Pilih Modul" -#: printing/page/print/print.js:175 printing/page/print/print.js:575 +#: frappe/printing/page/print/print.js:175 +#: frappe/printing/page/print/print.js:585 msgid "Select Network Printer" msgstr "" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Page" msgstr "" -#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: public/js/frappe/views/communication.js:144 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Pilih Print Format" -#: printing/page/print_format_builder/print_format_builder.js:82 +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 msgid "Select Print Format to Edit" msgstr "Pilih Print Format untuk Mengedit" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Report" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:623 +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" msgstr "Pilih Table Kolom untuk {0}" -#: desk/page/setup_wizard/setup_wizard.js:396 +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 msgid "Select Time Zone" msgstr "" -#. Label of a Autocomplete field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Select Transaction" -msgstr "Pilih Transaksi" +msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:68 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" msgstr "" -#. Label of a Link field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Workspace" msgstr "" -#: website/doctype/website_settings/website_settings.js:23 +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." msgstr "Pilih Brand Image pertama." -#: printing/page/print_format_builder/print_format_builder.js:108 +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" msgstr "Pilih DOCTYPE untuk membuat format baru" -#: integrations/doctype/webhook/webhook.py:130 -msgid "Select a document to check if it meets conditions." +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." msgstr "" -#: integrations/doctype/webhook/webhook.py:142 -msgid "Select a document to preview request data" -msgstr "" - -#: public/js/frappe/views/treeview.js:342 +#: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." msgstr "Pilih simpul kelompok terlebih dahulu." -#: core/doctype/doctype/doctype.py:1885 +#: frappe/core/doctype/doctype/doctype.py:1942 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Pilih Bidang Pengirim yang valid untuk membuat dokumen dari Email" -#: core/doctype/doctype/doctype.py:1869 +#: frappe/core/doctype/doctype/doctype.py:1926 msgid "Select a valid Subject field for creating documents from Email" msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email" -#: public/js/frappe/form/form_tour.js:313 +#: frappe/public/js/frappe/form/form_tour.js:321 msgid "Select an Image" msgstr "" +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik." +msgstr "" -#: public/js/frappe/list/bulk_operations.js:34 +#: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" msgstr "Pilih minimal 1 record untuk pencetakan" -#: core/doctype/success_action/success_action.js:18 +#: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" msgstr "Pilih minimal 2 tindakan" -#: public/js/frappe/list/list_view.js:1201 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Pilih item daftar" -#: public/js/frappe/list/list_view.js:1153 -#: public/js/frappe/list/list_view.js:1169 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Pilih beberapa item daftar" -#: public/js/frappe/views/calendar/calendar.js:174 +#: frappe/public/js/frappe/views/calendar/calendar.js:167 msgid "Select or drag across time slots to create a new event." msgstr "Pilih atau seret di slot waktu untuk membuat acara baru." -#: public/js/frappe/list/bulk_operations.js:195 +#: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" msgstr "Pilih catatan untuk tugas" -#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Select the label after which you want to insert new field." -msgstr "Pilih label setelah itu Anda ingin memasukkan bidang baru." +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" -#: public/js/frappe/utils/diffview.js:101 +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." msgstr "" -#: public/js/frappe/form/link_selector.js:24 -#: public/js/frappe/form/multi_select_dialog.js:79 -#: public/js/frappe/form/multi_select_dialog.js:279 -#: public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 msgid "Select {0}" msgstr "Pilih {0}" -#: model/workflow.py:121 +#: frappe/model/workflow.py:117 msgid "Self approval is not allowed" msgstr "Persetujuan diri tidak diizinkan" -#: email/doctype/newsletter/newsletter.js:66 -#: email/doctype/newsletter/newsletter.js:74 -#: email/doctype/newsletter/newsletter.js:162 -#: public/js/frappe/views/communication.js:26 www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Kirim" -#. Label of a Datetime field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Send After" -msgstr "Kirim Setelah" +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "Kirim" -#. Label of a Datetime field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Send After" -msgstr "Kirim Setelah" +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send Alert On" -msgstr "Kirim Pemberitahuan Aktif" +msgstr "" -#. Label of a Check field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" -msgstr "Kirim Notifikasi Email" +msgstr "" -#. Label of a Datetime field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Email At" +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" msgstr "" #. Description of the 'Send Print as PDF' (Check) field in DocType 'Print #. Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "Kirim Email Cetak Lampiran sebagai PDF (Disarankan)" +msgstr "" -#. Label of a Check field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Send Email for Successful Backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" -#. Label of a Check field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Send Email for Successful Backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" - -#. Label of a Check field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Send Email for Successful backup" -msgstr "Kirim Email untuk Pencadangan yang Sukses" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Me A Copy of Outgoing Emails" -msgstr "Kirimkan Saya Salinan Email yang Keluar" +msgstr "" -#. Label of a Data field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Send Notification To" -msgstr "Kirim Pemberitahuan untuk" - -#. Label of a Small Text field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Send Notification to" -msgstr "Kirim Pemberitahuan ke" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Notifications For Documents Followed By Me" -msgstr "Kirim Pemberitahuan Untuk Dokumen yang Saya Ikuti" +msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Notifications For Email Threads" -msgstr "Kirim Pemberitahuan Untuk Utas Email" +msgstr "" -#. Label of a Data field in DocType 'Dropbox Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Send Notifications To" -msgstr "Kirim Pemberitahuan Untuk" - -#. Label of a Data field in DocType 'S3 Backup Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Send Notifications To" -msgstr "Kirim Pemberitahuan Untuk" - -#: email/doctype/auto_email_report/auto_email_report.js:21 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" msgstr "Kirim sekarang" -#. Label of a Check field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Print as PDF" -msgstr "Kirim Cetak sebagai PDF" +msgstr "" -#: public/js/frappe/views/communication.js:134 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Kirim Baca Receipt" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send System Notification" -msgstr "Kirim Pemberitahuan Sistem" - -#: email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" msgstr "" -#. Label of a Check field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "Kirim Ke Semua Penerima Tugas" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Unsubscribe Link" -msgstr "Kirim Unsubscribe Link" - -#. Label of a Check field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Send Web View Link" msgstr "" -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "Kirim Email Selamat Datang" - -#: www/me.html:67 -msgid "Send a request to delete your account" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:166 -msgid "Send again" msgstr "" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" -msgstr "Kirim pemberitahuan jika tanggal sesuai nilai kolom ini" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send alert if this field's value changes" -msgstr "Kirim pemberitahuan jika nilai kolom ini berubah" +msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Send an email reminder in the morning" -msgstr "Kirim email pengingat di pagi hari" +msgstr "" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Send days before or after the reference date" -msgstr "Kirim hari sebelum atau setelah tanggal referensi" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" #. Description of the 'Forward To Email Address' (Data) field in DocType #. 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Send enquiries to this email address" -msgstr "Kirim pertanyaan ke alamat email ini" +msgstr "" -#: www/login.html:210 +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 msgid "Send login link" msgstr "" -#: public/js/frappe/views/communication.js:128 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Kirim Me Salin A" -#: email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - -#. Label of a Check field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the send_if_data (Check) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" -msgstr "Kirim hanya jika ada data" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Send unsubscribe message in email" -msgstr "Kirim pesan berhenti berlangganan dengan email" +msgstr "" -#. Label of a Link field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json msgid "Sender" -msgstr "Pengirim" +msgstr "" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Sender" -msgstr "Pengirim" - -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Sender Email" -msgstr "Email Pengirim" +msgstr "" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Sender Email" -msgstr "Email Pengirim" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Sender Email Field" -msgstr "" - -#: core/doctype/doctype/doctype.py:1888 +#: frappe/core/doctype/doctype/doctype.py:1945 msgid "Sender Field should have Email in options" msgstr "Sender Field harus memiliki opsi Email in" -#. Label of a Data field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sender Name" msgstr "" -#. Label of a Data field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" -msgid "Sender Name" -msgstr "" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Sender Name Field" -msgstr "" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Name Field" msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Sendgrid" -msgstr "Sendgrid" - -#: email/doctype/newsletter/newsletter.js:201 -msgid "Sending" -msgstr "Mengirim" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Sending" -msgstr "Mengirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json msgid "Sending" msgstr "Mengirim" -#: email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - -#: email/doctype/newsletter/newsletter.js:196 -#: email/doctype/newsletter/newsletter_list.js:5 -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Sent" -msgstr "Terkirim" - #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Sent" msgstr "Terkirim" -#. Label of a Date field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sent On" msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "Mengirim Baca Receipt" +msgstr "" -#. Label of a Code field in DocType 'SMS Log' -#: core/doctype/sms_log/sms_log.json -msgctxt "SMS Log" +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json msgid "Sent To" msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Sent or Received" -msgstr "Dikirim atau diterima" - -#. Option for the 'Event Category' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sent/Received Email" -msgstr "Email Terkirim / Diterima" - -#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' -#: core/doctype/navbar_item/navbar_item.json -msgctxt "Navbar Item" -msgid "Separator" -msgstr "Pemisah" - -#. Label of a Float field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Sequence Id" msgstr "" -#. Label of a Text field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Series List for this Transaction" -msgstr "Daftar Series Transaksi ini" +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:116 +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "Id Urutan" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:226 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" msgstr "" -#: core/doctype/doctype/doctype.py:1073 -#: core/doctype/document_naming_settings/document_naming_settings.py:171 +#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Seri {0} sudah digunakan dalam {1}" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' -#: core/doctype/doctype_action/doctype_action.json -msgctxt "DocType Action" +#: frappe/core/doctype/doctype_action/doctype_action.json msgid "Server Action" -msgstr "Aksi Server" +msgstr "" -#: public/js/frappe/request.js:606 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "server error" -#. Label of a Data field in DocType 'Network Printer Settings' -#: printing/doctype/network_printer_settings/network_printer_settings.json -msgctxt "Network Printer Settings" +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Server IP" -msgstr "IP server" +msgstr "" +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' #. Name of a DocType -#: core/doctype/server_script/server_script.json -msgid "Server Script" -msgstr "Skrip Server" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Server Script" -msgstr "Skrip Server" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Server Script" -msgstr "Skrip Server" - -#. Label of a Link field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Server Script" -msgstr "Skrip Server" - #. Label of a Link in the Build Workspace -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json msgid "Server Script" msgstr "Skrip Server" -#: utils/safe_exec.py:90 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" -#: core/doctype/server_script/server_script.js:32 +#: frappe/core/doctype/server_script/server_script.js:39 msgid "Server Scripts feature is not available on this site." msgstr "" -#: public/js/frappe/request.js:243 public/js/frappe/request.js:251 +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 msgid "Server was too busy to process this request. Please try again." msgstr "" -#. Label of a Select field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Service" -msgstr "Jasa" - -#. Label of a Data field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json msgid "Service" msgstr "Jasa" #. Name of a DocType -#: core/doctype/session_default/session_default.json +#: frappe/core/doctype/session_default/session_default.json msgid "Session Default" msgstr "Default Sesi" #. Name of a DocType -#: core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json msgid "Session Default Settings" msgstr "Pengaturan Default Sesi" #. Label of a standard navbar item #. Type: Action -#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296 +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Default Sesi" -#. Label of a Table field in DocType 'Session Default Settings' -#: core/doctype/session_default_settings/session_default_settings.json -msgctxt "Session Default Settings" -msgid "Session Defaults" -msgstr "Default Sesi" - -#: public/js/frappe/ui/toolbar/toolbar.js:281 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Default Sesi Disimpan" -#: app.py:345 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sesi berakhir" -#. Label of a Data field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" msgstr "" -#: core/doctype/system_settings/system_settings.py:110 +#: frappe/core/doctype/system_settings/system_settings.py:120 msgid "Session Expiry must be in format {0}" msgstr "Sesi kadaluarsa harus dalam format {0}" -#: public/js/frappe/ui/filters/filter.js:562 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:295 +#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "Tetapkan" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 msgctxt "Field value is set" msgid "Set" msgstr "Tetapkan" -#. Label of a Button field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Set Banner from Image" -msgstr "Set Banner dari Image" +msgstr "" -#: public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Setel Bagan" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' -#: desk/doctype/dashboard/dashboard.json -msgctxt "Dashboard" +#: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "Tetapkan Opsi Default untuk semua bagan di Dasbor ini (Mis: "warna": ["# d1d8dd", "# ff5858"])" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: desk/doctype/number_card/number_card.js:361 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:367 msgid "Set Dynamic Filters" msgstr "Setel Filter Dinamis" -#: desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: desk/doctype/number_card/number_card.js:277 -#: website/doctype/web_form/web_form.js:260 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" msgstr "Tetapkan Filter" -#: public/js/frappe/widgets/chart_widget.js:395 -#: public/js/frappe/widgets/quick_list_widget.js:102 +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 msgid "Set Filters for {0}" msgstr "Setel Filter untuk {0}" -#: core/doctype/user_type/user_type.py:91 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 +msgid "Set Level" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:92 msgid "Set Limit" msgstr "" #. Description of the 'Setup Series for transactions' (Section Break) field in #. DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." msgstr "" -#. Label of a Password field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Set New Password" -msgstr "Set Password Baru" +msgstr "" -#: desk/page/backups/backups.js:8 +#: frappe/desk/page/backups/backups.js:8 msgid "Set Number of Backups" msgstr "Atur Jumlah Cadangan" -#: www/update-password.html:9 +#: frappe/www/update-password.html:32 msgid "Set Password" msgstr "Atur Kata Sandi" -#: custom/doctype/customize_form/customize_form.js:112 +#: frappe/custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" msgstr "set Permissions" -#: printing/page/print_format_builder/print_format_builder.js:471 +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 msgid "Set Properties" msgstr "" -#. Label of a Section Break field in DocType 'Notification' -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Set Property After Alert" -msgstr "Tetapkan Properti Setelah Pemberitahuan" +msgstr "" -#: public/js/frappe/form/link_selector.js:207 -#: public/js/frappe/form/link_selector.js:208 +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" msgstr "Set Kuantitas" -#. Label of a Select field in DocType 'Role Permission for Page and Report' -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -msgctxt "Role Permission for Page and Report" +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Set Role For" -msgstr "Set Peran Untuk" +msgstr "" -#: core/doctype/user/user.js:122 -#: core/page/permission_manager/permission_manager.js:65 +#: frappe/core/doctype/user/user.js:131 +#: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "Set User Permissions" +msgstr "" -#. Label of a Small Text field in DocType 'Property Setter' -#: custom/doctype/property_setter/property_setter.json -msgctxt "Property Setter" +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" -msgstr "Mengatur Nilai" +msgstr "" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 -#: public/js/frappe/file_uploader/file_uploader.bundle.js:124 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" msgstr "" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:72 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" msgstr "" -#: printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" msgstr "Set sebagai Default" -#: website/doctype/website_theme/website_theme.js:33 +#: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" msgstr "Tetapkan sebagai Tema Default" -#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Set by user" -msgstr "" - #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" - -#. Description of the 'Precision' (Select) field in DocType 'Customize Form -#. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" #. Description of the 'Precision' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" - +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" -msgstr "Set presisi non-standar untuk mengambang atau Mata lapangan" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Set only once" msgstr "" +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "" -"Set the filters here. For example:\n" +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" "
\n"
 "[{\n"
 "\tfieldname: \"company\",\n"
@@ -28069,11 +23498,8 @@ msgid ""
 msgstr ""
 
 #. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
 "
\n"
 "{\n"
 "\t\"value\": value,\n"
@@ -28083,9824 +23509,8140 @@ msgid ""
 "}
" msgstr "" -#: contacts/doctype/address_template/address_template.py:32 +#: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" msgstr "Mengatur Template Alamat ini sebagai default karena tidak ada standar lainnya" -#: desk/doctype/global_search_settings/global_search_settings.py:85 +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." msgstr "Menyiapkan dokumen Pencarian Global." -#: desk/page/setup_wizard/setup_wizard.js:273 +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 msgid "Setting up your system" msgstr "Menyiapkan sistem anda" -#. Label of a Card Break in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -#: public/js/frappe/ui/toolbar/toolbar.js:254 -#: public/js/frappe/views/workspace/workspace.js:515 -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'User' +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' #. Group in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Settings" -msgstr "Pengaturan" - -#. Label of a Table field in DocType 'Navbar Settings' -#: core/doctype/navbar_settings/navbar_settings.json -msgctxt "Navbar Settings" -msgid "Settings Dropdown" -msgstr "Pengaturan Dropdown" - +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' #. Label of a Card Break in the Website Workspace -#: public/js/frappe/ui/toolbar/search_utils.js:551 -#: website/workspace/website/website.json -msgid "Setup" +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" msgstr "Pengaturan" -#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Setup" -msgstr "Pengaturan" - -#. Title of an Onboarding Step -#: custom/onboarding_step/workflows/workflows.json -msgid "Setup Approval Workflows" +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" msgstr "" -#: public/js/frappe/views/reports/query_report.js:1658 -#: public/js/frappe/views/reports/report_view.js:1609 +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/blog_settings/blog_settings.json +msgid "Settings to control blog categories and interactions like comments and likes" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +msgid "Setup" +msgstr "Pengaturan" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1815 +#: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" -#: desk/page/setup_wizard/setup_wizard.js:204 +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Setup Complete" msgstr "Pengaturan Selesai" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Setup Complete" -msgstr "Pengaturan Selesai" - -#. Title of an Onboarding Step -#: custom/onboarding_step/role_permissions/role_permissions.json -msgid "Setup Limited Access for a User" -msgstr "" - -#. Title of an Onboarding Step -#: custom/onboarding_step/naming_series/naming_series.json -msgid "Setup Naming Series" -msgstr "" - -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Share" -msgstr "Bagikan" - -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Share" -msgstr "Bagikan" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Share" -msgstr "Bagikan" +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "" +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' #. Option for the 'Type' (Select) field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "Bagikan" +msgstr "" -#: public/js/frappe/form/sidebar/share.js:107 +#: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" msgstr "Dengan berbagi" -#: public/js/frappe/form/sidebar/share.js:45 +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" msgstr "Berbagi {0} dengan" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Shared" -msgstr "Bersama" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Shared" -msgstr "Bersama" - -#: desk/form/assign_to.py:127 +#: frappe/desk/form/assign_to.py:132 msgid "Shared with the following Users with Read access:{0}" msgstr "Dibagikan dengan Pengguna berikut dengan akses Baca: {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Shipping" -msgstr "pengiriman" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "Alamat Pengiriman" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Shop" -msgstr "Toko" +msgstr "" -#. Label of a Data field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#. Label of the short_name (Data) field in DocType 'Blogger' +#: frappe/website/doctype/blogger/blogger.json msgid "Short Name" -msgstr "Nama pendek" +msgstr "" -#: utils/password_strength.py:93 +#: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "pola keyboard pendek mudah ditebak" -#. Label of a Table field in DocType 'Workspace' -#. Label of a Tab Break field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "Pintasan" +msgstr "" -#: public/js/frappe/widgets/base_widget.js:46 -#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30 +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Menunjukkan" -#. Label of a Check field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Show \"Call to Action\" in Blog" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Absolute Values" msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Show Attachments" -msgstr "Tampilkan Lampiran" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "" -#: desk/doctype/calendar_view/calendar_view.js:10 +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Tampilkan Kalender" -#. Label of a Check field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the symbol_on_right (Check) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Show Currency Symbol on Right Side" msgstr "" -#: desk/doctype/dashboard/dashboard.js:6 +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" msgstr "Tampilkan Dasbor" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Show Dashboard" -msgstr "Tampilkan Dasbor" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Show Dashboard" -msgstr "Tampilkan Dasbor" - -#. Label of a Button field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "Show Document" -msgstr "Perlihatkan Dokumen" +msgstr "" -#: www/error.html:41 www/error.html:59 +#: frappe/www/error.html:42 frappe/www/error.html:65 msgid "Show Error" msgstr "" -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Show Failed Logs" -msgstr "Tampilkan Log Gagal" - -#: public/js/frappe/form/layout.js:545 +#: frappe/public/js/frappe/form/layout.js:579 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the first_document (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Show First Document Tour" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Form Tour" -msgstr "Tampilkan Tur Formulir" +msgstr "" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the allow_error_traceback (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "Tampilkan Kesalahan Lengkap dan Izinkan Pelaporan Masalah ke Pengembang" +msgstr "" -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the show_full_form (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Full Form?" -msgstr "Tunjukkan Formulir Lengkap?" +msgstr "" -#: public/js/frappe/ui/keyboard.js:228 +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" msgstr "Tampilkan Pintasan Keyboard" -#: public/js/frappe/views/kanban/kanban_settings.js:30 +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 msgid "Show Labels" msgstr "" -#. Label of a Check field in DocType 'Kanban Board' -#: desk/doctype/kanban_board/kanban_board.json -msgctxt "Kanban Board" -msgid "Show Labels" -msgstr "" - -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Line Breaks after Sections" -msgstr "Tampilkan Jalur Breaks setelah Bagian" - -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Show List" msgstr "" -#. Label of a Check field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Show Percentage Stats" -msgstr "Tampilkan Statistik Persentase" +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "" -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +#. Label of the show_failed_logs (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of the show_percentage_stats (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Percentage Stats" +msgstr "" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" msgstr "Tampilkan Perijinan" -#: public/js/form_builder/form_builder.bundle.js:31 -#: public/js/form_builder/form_builder.bundle.js:43 -#: public/js/print_format_builder/print_format_builder.bundle.js:18 -#: public/js/print_format_builder/print_format_builder.bundle.js:54 +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Show Preview" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Preview Popup" -msgstr "Tampilkan Pratinjau Popup" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Show Preview Popup" -msgstr "Tampilkan Pratinjau Popup" - -#. Label of a Check field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "Show Processlist" msgstr "" -#: core/doctype/error_log/error_log.js:9 +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" -#: core/doctype/prepared_report/prepared_report.js:43 -#: core/doctype/report/report.js:13 +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 msgid "Show Report" msgstr "Tampilkan Laporan" -#. Label of a Button field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Show Report" -msgstr "Tampilkan Laporan" - -#: public/js/frappe/list/list_filter.js:87 +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 msgid "Show Saved" msgstr "" -#. Label of a Check field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the show_section_headings (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Show Section Headings" -msgstr "Tampilkan Bagian Pos" +msgstr "" -#. Label of a Check field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" -msgstr "Tampilkan Sidebar" +msgstr "" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Show Sidebar" -msgstr "Tampilkan Sidebar" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" -#: public/js/frappe/list/list_view.js:1566 +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Tampilkan Tag" -#. Label of a Check field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Show Title" -msgstr "Tampilkan Judul" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Show Title in Link Fields" -msgstr "" - -#: public/js/frappe/views/reports/report_view.js:1453 +#: frappe/public/js/frappe/views/reports/report_view.js:1527 msgid "Show Totals" msgstr "Tampilkan Total" -#: desk/doctype/form_tour/form_tour.js:116 +#: frappe/desk/doctype/form_tour/form_tour.js:116 msgid "Show Tour" msgstr "" -#: public/js/frappe/data_import/import_preview.js:200 +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Tampilkan Peringatan" -#: public/js/frappe/views/calendar/calendar.js:184 +#: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Show Weekends" msgstr "Tunjukkan Akhir Pekan" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" msgstr "" -#: core/doctype/version/version.js:6 +#: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" msgstr "Tampilkan semua Versi" -#: website/doctype/blog_post/templates/blog_post_list.html:24 +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "" + +#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" msgstr "" -#. Label of a Small Text field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" -msgstr "Tampilkan sebagai cc" +msgstr "" -#. Label of a Check field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" msgstr "" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show full form instead of a quick entry modal" -msgstr "Tampilkan formulir lengkap, bukan modal entri cepat" +msgstr "" -#. Label of a Select field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Show in Module Section" -msgstr "Tampilkan dalam Bagian Modul" +msgstr "" -#. Label of a Check field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + +#. Label of the show_in_filter (Check) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" -msgstr "Tampilkan dalam filter" +msgstr "" -#. Label of a Check field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" +#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Show link to document" msgstr "" -#: public/js/frappe/form/layout.js:265 +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:273 +#: frappe/public/js/frappe/form/layout.js:291 msgid "Show more details" msgstr "Tampilkan lebih detail" +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "" + #. Description of the 'Stats Time Interval' (Select) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "Show percentage difference according to this time interval" -msgstr "Tunjukkan perbedaan persentase menurut interval waktu ini" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Show title in browser window as \"Prefix - title\"" -msgstr "Tampilkan judul di jendela browser sebagai "Awalan - judul"" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:475 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:501 msgid "Showing only Numeric fields from Report" msgstr "Hanya menampilkan bidang numerik dari Laporan" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Sidebar" msgstr "" -#. Label of a Table field in DocType 'Website Sidebar' -#: website/doctype/website_sidebar/website_sidebar.json -msgctxt "Website Sidebar" +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json msgid "Sidebar Items" -msgstr "Sidebar Items" +msgstr "" -#. Label of a Section Break field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the section_break_4 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Sidebar Settings" -msgstr "Pengaturan sidebar" +msgstr "" -#. Label of a Section Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the section_break_17 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "Sidebar dan Komentar" +msgstr "" -#. Label of a Section Break field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" msgstr "" -#: core/doctype/user/user.py:972 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Sign Up dinonaktifkan" -#: templates/signup.html:16 www/login.html:120 www/login.html:136 -#: www/update-password.html:35 +#: frappe/templates/signup.html:16 frappe/www/login.html:140 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Daftar" -#. Label of a Select field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the sign_ups (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Sign ups" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Signature" -msgstr "Tanda Tangan" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Signature" -msgstr "Tanda Tangan" - #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Signature" -msgstr "Tanda Tangan" - -#. Label of a Section Break field in DocType 'Email Account' -#. Label of a Text Editor field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Signature" -msgstr "Tanda Tangan" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Signature" -msgstr "Tanda Tangan" +msgstr "" -#: www/login.html:148 +#: frappe/www/login.html:168 msgid "Signup Disabled" msgstr "Pendaftaran Dinonaktifkan" -#: www/login.html:149 +#: frappe/www/login.html:169 msgid "Signups have been disabled for this website." msgstr "Pendaftaran telah dinonaktifkan untuk situs web ini." #. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Ditutup", "Dibatalkan")" +msgstr "" #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Ekspresi Python Sederhana, Contoh: Status dalam ("Tidak Valid")" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Ekspresi Python Sederhana, Contoh: status == 'Open' dan ketik == 'Bug'" +msgstr "" -#. Label of a Int field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" -msgstr "Sesi simultan" +msgstr "" -#: custom/doctype/customize_form/customize_form.py:121 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Single DocTypes cannot be customized." msgstr "Single DocTypes tidak dapat dikustomisasi." -#: core/doctype/doctype/doctype_list.js:51 -msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles" - #. Description of the 'Is Single' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles" -#: database/database.py:230 +#: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: public/js/onboarding_tours/onboarding_tours.js:18 +#: frappe/public/js/frappe/views/file/file_view.js:337 +msgid "Size" +msgstr "Ukuran" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 msgid "Skip" msgstr "Melewatkan" -#. Label of a Check field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" -msgstr "Loncat Otorisasi" +msgstr "" -#. Label of a Select field in DocType 'OAuth Provider Settings' -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -msgctxt "OAuth Provider Settings" -msgid "Skip Authorization" -msgstr "Loncat Otorisasi" - -#: public/js/frappe/widgets/onboarding_widget.js:337 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 msgid "Skip Step" msgstr "Lewati Langkah" -#. Label of a Check field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json msgid "Skipped" msgstr "" -#: core/doctype/data_import/importer.py:905 +#: frappe/core/doctype/data_import/importer.py:952 msgid "Skipping Duplicate Column {0}" msgstr "Melewati Kolom Ganda {0}" -#: core/doctype/data_import/importer.py:930 +#: frappe/core/doctype/data_import/importer.py:977 msgid "Skipping Untitled Column" msgstr "Melewati Kolom Tanpa Judul" -#: core/doctype/data_import/importer.py:916 +#: frappe/core/doctype/data_import/importer.py:963 msgid "Skipping column {0}" msgstr "Melewati kolom {0}" -#: modules/utils.py:162 +#: frappe/modules/utils.py:176 msgid "Skipping fixture syncing for doctype {0} from file {1}" msgstr "" -#: core/doctype/data_import/data_import.js:39 +#: frappe/core/doctype/data_import/data_import.js:39 msgid "Skipping {0} of {1}, {2}" msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Skype" -msgstr "Skype" +msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Slack" -msgstr "Kendur" +msgstr "" -#. Label of a Link field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Slack Channel" -msgstr "Slack Channel" +msgstr "" -#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64 +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 msgid "Slack Webhook Error" -msgstr "Slack Webhook Error" +msgstr "" #. Name of a DocType -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgid "Slack Webhook URL" -msgstr "URL Webhook Lambat" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Slack Webhook URL" +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" msgstr "URL Webhook Lambat" -#. Label of a Link field in DocType 'Web Page' +#. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json msgid "Slideshow" -msgstr "Rangkai Salindia" +msgstr "" -#. Label of a Table field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Items" -msgstr "Slideshow Items" +msgstr "" -#. Label of a Data field in DocType 'Website Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Name" -msgstr "Nama Slideshow" +msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Small Text" -msgstr "Teks Kecil" +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Small Text" -msgstr "Teks Kecil" +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Small Text" -msgstr "Teks Kecil" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Small Text" -msgstr "Teks Kecil" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Small Text" -msgstr "Teks Kecil" +msgstr "" -#. Label of a Currency field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Smallest Currency Fraction Value" -msgstr "Terkecil Mata Fraksi Nilai" +msgstr "" #. Description of the 'Smallest Currency Fraction Value' (Currency) field in #. DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" -msgstr "Terkecil Unit beredar fraksi (koin). Untuk misalnya 1 sen untuk USD dan harus dimasukkan sebagai 0,01" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" #. Name of a DocType -#: website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Settings" msgstr "Pengaturan Tautan Sosial" -#. Label of a Select field in DocType 'Social Link Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "Social Link Type" -msgstr "Jenis Tautan Sosial" +msgstr "" #. Name of a DocType -#: integrations/doctype/social_login_key/social_login_key.json -msgid "Social Login Key" -msgstr "Kunci Masuk Sosial" - #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Social Login Key" msgstr "Kunci Masuk Sosial" -#. Label of a Select field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Social Login Provider" -msgstr "Penyedia Login Sosial" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Social Logins" -msgstr "Login Sosial" +msgstr "" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Soft-Bounced" -msgstr "Soft-Terpental" +msgstr "" -#: public/js/frappe/desk.js:20 +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "" + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "" + +#: frappe/public/js/frappe/desk.js:20 msgid "Some of the features might not work in your browser. Please update your browser to the latest version." msgstr "Beberapa fitur mungkin tidak bekerja di browser anda. Perbarui browser anda ke versi terbaru." -#: public/js/frappe/views/translation_manager.js:101 +#: frappe/public/js/frappe/views/translation_manager.js:101 msgid "Something went wrong" msgstr "Ada yang salah" -#: integrations/doctype/google_calendar/google_calendar.py:116 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 msgid "Something went wrong during the token generation. Click on {0} to generate a new one." msgstr "Sesuatu yang salah terjadi selama pembuatan token. Klik pada {0} untuk menghasilkan yang baru." -#: public/js/frappe/views/pageview.js:110 +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:114 msgid "Sorry! I could not find what you were looking for." msgstr "Mohon Maaf! Saya tidak bisa menemukan apa yang Anda cari." -#: public/js/frappe/views/pageview.js:118 +#: frappe/public/js/frappe/views/pageview.js:122 msgid "Sorry! You are not permitted to view this page." msgstr "Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini." -#: public/js/frappe/utils/datatable.js:6 +#: frappe/public/js/frappe/utils/datatable.js:6 msgid "Sort Ascending" msgstr "" -#: public/js/frappe/utils/datatable.js:7 +#: frappe/public/js/frappe/utils/datatable.js:7 msgid "Sort Descending" msgstr "" -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Field" -msgstr "Urutkan Lapangan" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Sort Options" msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Sort Options" -msgstr "" - -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Sort Options" -msgstr "" - -#. Label of a Select field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Order" -msgstr "Tata Urutan" +msgstr "" -#: core/doctype/doctype/doctype.py:1501 +#: frappe/core/doctype/doctype/doctype.py:1550 msgid "Sort field {0} must be a valid fieldname" msgstr "bidang semacam {0} harus fieldname valid" -#: public/js/frappe/utils/utils.js:1705 -#: website/report/website_analytics/website_analytics.js:38 +#. Label of the source (Data) field in DocType 'Web Page View' +#. Label of the source (Small Text) field in DocType 'Website Route Redirect' +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Sumber" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Source" -msgstr "Sumber" - -#. Label of a Small Text field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" -msgid "Source" -msgstr "Sumber" - -#. Label of a Data field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" -msgstr "sumber Nama" +msgstr "" -#: public/js/frappe/views/translation_manager.js:38 +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" msgstr "sumber Teks" -#. Label of a Code field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" -msgid "Source Text" -msgstr "sumber Teks" +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Spam" -msgstr "Spam" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "SparkPost" -msgstr "SparkPost" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:83 +#: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Karakter spesial tidak diperbolehkan" -#: model/naming.py:58 +#: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" msgstr "Karakter Khusus kecuali "-", "#", ".", "/", "{{" Dan "}}" tidak diizinkan dalam rangkaian penamaan {0}" -#. Label of a Attach Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "" + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Splash Image" msgstr "" -#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44 +#: frappe/desk/reportview.py:419 +#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "sr" -#: core/doctype/recorder/recorder.js:33 +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "" + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json msgid "Stack Trace" msgstr "" -#. Label of a HTML field in DocType 'Recorder Query' -#: core/doctype/recorder_query/recorder_query.json -msgctxt "Recorder Query" -msgid "Stack Trace" -msgstr "" - -#: core/doctype/user_type/user_type_list.js:5 +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json msgid "Standard" msgstr "Standar" -#. Label of a Check field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Standard" -msgstr "Standar" - -#. Label of a Select field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Standard" -msgstr "Standar" - -#. Label of a Select field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Print Style' -#: printing/doctype/print_style/print_style.json -msgctxt "Print Style" -msgid "Standard" -msgstr "Standar" - -#. Label of a Check field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Standard" -msgstr "Standar" - -#: model/delete_doc.py:79 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" -#: core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:228 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form" -#: desk/doctype/dashboard/dashboard.py:59 +#: frappe/desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" msgstr "Standar Tidak Ditetapkan" -#: printing/doctype/print_format/print_format.py:74 +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Format Cetak Standar tidak dapat diperbarui" -#: printing/doctype/print_style/print_style.py:31 +#: frappe/printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Gaya Cetak Standar tidak dapat diubah. Silahkan duplikat untuk mengedit." -#: desk/reportview.py:316 +#: frappe/desk/reportview.py:354 msgid "Standard Reports cannot be deleted" msgstr "" -#: desk/reportview.py:287 +#: frappe/desk/reportview.py:325 msgid "Standard Reports cannot be edited" msgstr "" -#. Label of a Section Break field in DocType 'Portal Settings' -#: website/doctype/portal_settings/portal_settings.json -msgctxt "Portal Settings" +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json msgid "Standard Sidebar Menu" -msgstr "Standard Sidebar menu" +msgstr "" -#: core/doctype/role/role.py:61 +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: frappe/core/doctype/role/role.py:46 msgid "Standard roles cannot be disabled" msgstr "peran standar tidak dapat dinonaktifkan" -#: core/doctype/role/role.py:48 +#: frappe/core/doctype/role/role.py:32 msgid "Standard roles cannot be renamed" msgstr "Peran standar tidak dapat diganti" -#: core/doctype/user_type/user_type.py:60 +#: frappe/core/doctype/user_type/user_type.py:61 msgid "Standard user type {0} can not be deleted." msgstr "" -#: templates/emails/energy_points_summary.html:33 -msgid "Standings" -msgstr "Klasemen" - -#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289 -#: printing/page/print/print.js:336 +#: frappe/core/doctype/recorder/recorder_list.js:87 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 +#: frappe/printing/page/print/print.js:296 +#: frappe/printing/page/print/print.js:343 msgid "Start" msgstr "Mulai" -#: public/js/frappe/utils/common.js:409 +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json msgid "Start Date" msgstr "Tanggal Mulai" -#. Label of a Date field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Date field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Datetime field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Start Date" -msgstr "Tanggal Mulai" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the start_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Start Date Field" -msgstr "Field Tanggal Mulai" +msgstr "" -#: core/doctype/data_import/data_import.js:110 +#: frappe/core/doctype/data_import/data_import.js:110 msgid "Start Import" msgstr "Mulai Impor" -#. Label of a Datetime field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" -msgid "Start Time" -msgstr "Waktu Mulai" +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" -#: templates/includes/comments/comments.html:8 +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:8 msgid "Start a new discussion" msgstr "" -#: core/doctype/data_export/exporter.py:22 +#: frappe/core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" msgstr "Mulai memasukkan data di bawah garis ini" -#: printing/page/print_format_builder/print_format_builder.js:165 +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 msgid "Start new Format" msgstr "Mulai Format baru" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "StartTLS" -msgstr "StartTLS" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" +#: frappe/core/doctype/prepared_report/prepared_report.json msgid "Started" -msgstr "Dimulai" +msgstr "" -#. Label of a Datetime field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Started At" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:274 +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 msgid "Starting Frappe ..." msgstr "Memulai Frappé ..." -#. Label of a Datetime field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Starts on" -msgstr "Mulai dari" +msgstr "" -#. Label of a Data field in DocType 'Contact Us Settings' -#: website/doctype/contact_us_settings/contact_us_settings.json -msgctxt "Contact Us Settings" +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "State" -msgstr "Negara" +msgstr "" -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "State" -msgstr "Negara" +#: frappe/public/js/workflow_builder/components/Properties.vue:24 +msgid "State Properties" +msgstr "" -#. Label of a Link field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "State" -msgstr "Negara" - -#. Label of a Data field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "State" -msgstr "Negara" - -#. Label of a Link field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "State" -msgstr "Negara" - -#. Label of a Data field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "State/Province" -msgstr "Negara Bagian / Provinsi" +msgstr "" -#. Label of a Table field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json msgid "States" -msgstr "Negara" +msgstr "" -#. Label of a Table field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "States" -msgstr "Negara" - -#. Label of a Section Break field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" -msgid "States" -msgstr "Negara" - -#. Label of a Table field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Static Parameters" -msgstr "Parameter Statis" +msgstr "" -#. Label of a Section Break field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Statistics" msgstr "" -#: public/js/frappe/form/dashboard.js:43 +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 msgid "Stats" msgstr "Statistik" -#. Label of a Section Break field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Stats" -msgstr "Statistik" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#. Label of the stats_time_interval (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json msgid "Stats Time Interval" -msgstr "Statistik Interval Waktu" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:391 -msgid "Stats based on last month's performance (from {0} to {1})" -msgstr "Statistik berdasarkan kinerja bulan lalu (dari {0} hingga {1})" - -#: social/doctype/energy_point_log/energy_point_log.py:393 -msgid "Stats based on last week's performance (from {0} to {1})" -msgstr "Statistik berdasarkan kinerja minggu lalu (dari {0} hingga {1})" - -#: public/js/frappe/views/reports/report_view.js:911 +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:359 +#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Status" -msgstr "Status" +msgstr "" -#. Label of a Select field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Communication' -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Email Queue Recipient' -#: email/doctype/email_queue_recipient/email_queue_recipient.json -msgctxt "Email Queue Recipient" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Personal Data Deletion Request' -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgctxt "Personal Data Deletion Request" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Personal Data Deletion Step' -#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json -msgctxt "Personal Data Deletion Step" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Prepared Report' -#: core/doctype/prepared_report/prepared_report.json -msgctxt "Prepared Report" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "Status" -msgstr "Status" - -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Scheduled Job Log' -#: core/doctype/scheduled_job_log/scheduled_job_log.json -msgctxt "Scheduled Job Log" -msgid "Status" -msgstr "Status" - -#. Label of a Section Break field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Submission Queue' -#: core/doctype/submission_queue/submission_queue.json -msgctxt "Submission Queue" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'ToDo' -#: desk/doctype/todo/todo.json -msgctxt "ToDo" -msgid "Status" -msgstr "Status" - -#. Label of a Select field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Status" -msgstr "Status" - -#: www/update-password.html:161 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status Diperbarui" -#: www/message.html:40 +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "" + +#: frappe/www/message.html:24 msgid "Status: {0}" -msgstr "Status: {0}" +msgstr "" -#. Label of a Link field in DocType 'Onboarding Step Map' -#: desk/doctype/onboarding_step_map/onboarding_step_map.json -msgctxt "Onboarding Step Map" +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Step" -msgstr "Langkah" +msgstr "" -#. Label of a Table field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the steps (Table) field in DocType 'Form Tour' +#. Label of the steps (Table) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Steps" -msgstr "Langkah" +msgstr "" -#. Label of a Table field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Steps" -msgstr "Langkah" - -#: www/qrcode.html:11 +#: frappe/www/qrcode.html:11 msgid "Steps to verify your login" msgstr "Langkah untuk memverifikasi login anda" -#: core/doctype/recorder/recorder_list.js:91 -msgid "Stop" +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:438 +msgid "Sticky" msgstr "" -#. Label of a Check field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "Berhenti" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Stopped" msgstr "Terhenti" +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "" + #. Description of the 'Last Known Versions' (Text) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." -msgstr "Toko JSON dari versi terakhir yang diketahui dari berbagai aplikasi yang diinstal. Hal ini digunakan untuk menunjukkan catatan rilis." +msgstr "" #. Description of the 'Last Reset Password Key Generated On' (Datetime) field #. in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "Stores the datetime when the last reset password key was generated." msgstr "" -#: utils/password_strength.py:99 +#: frappe/utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" msgstr "baris lurus kunci yang mudah ditebak" -#. Label of a Check field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" msgstr "" -#: public/js/frappe/form/controls/password.js:90 +#: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" msgstr "" -#. Label of a Tab Break field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style" -msgstr "Gaya" +msgstr "" -#. Label of a Select field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "Style" -msgstr "Gaya" - -#. Label of a Section Break field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json msgid "Style Settings" -msgstr "Pengaturan Style" +msgstr "" #. Description of the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" -msgstr "Gaya merupakan tombol warna: Sukses - Hijau, Danger - Red, Inverse - Black, Primer - Dark Blue, Info - Light Blue, Peringatan - Jeruk" +msgstr "" -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Stylesheet" -msgstr "Stylesheet" +msgstr "" #. Description of the 'Fraction' (Data) field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#: frappe/geo/doctype/currency/currency.json msgid "Sub-currency. For e.g. \"Cent\"" -msgstr "Sub-currency. Untuk misalnya \"Cent \"" +msgstr "" #. Description of the 'Subdomain' (Small Text) field in DocType 'Website #. Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "Sub-domain provided by erpnext.com" -msgstr "Sub-domain yang disediakan oleh erpnext.com" +msgstr "" -#. Label of a Small Text field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Subdomain" -msgstr "Subdomain" +msgstr "" -#: public/js/frappe/views/communication.js:103 -#: public/js/frappe/views/inbox/inbox_view.js:63 +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Perihal" -#. Label of a Small Text field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Text field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Small Text field in DocType 'Newsletter' -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Text field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Subject" -msgstr "Perihal" - -#. Label of a Select field in DocType 'Calendar View' -#: desk/doctype/calendar_view/calendar_view.json -msgctxt "Calendar View" +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Subject Field" -msgstr "Bidang Subjek" +msgstr "" -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" -msgid "Subject Field" -msgstr "Bidang Subjek" - -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Subject Field" -msgstr "Bidang Subjek" - -#: core/doctype/doctype/doctype.py:1878 +#: frappe/core/doctype/doctype/doctype.py:1935 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Jenis Bidang Subjek harus Data, Teks, Teks Panjang, Teks Kecil, Editor Teks" #. Name of a DocType -#: core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/submission_queue/submission_queue.json msgid "Submission Queue" msgstr "" -#: core/doctype/user_permission/user_permission_list.js:138 -#: public/js/frappe/form/quick_entry.js:193 -#: public/js/frappe/form/sidebar/review.js:116 -#: public/js/frappe/ui/capture.js:299 -#: social/doctype/energy_point_log/energy_point_log.js:39 -#: social/doctype/energy_point_settings/energy_point_settings.js:47 -#: website/doctype/web_form/templates/web_form.html:44 +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 msgid "Submit" msgstr "Kirim" -#: public/js/frappe/list/list_view.js:1916 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Submit" -msgstr "Kirim" - -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Submit" -msgstr "Kirim" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Submit" -msgstr "Kirim" - -#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "Submit" -msgstr "Kirim" - -#: public/js/frappe/ui/dialog.js:60 +#: frappe/public/js/frappe/ui/dialog.js:62 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Kirim" -#: public/js/frappe/ui/messages.js:97 +#: frappe/public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" msgstr "Kirim" -#: public/js/frappe/desk.js:206 +#: frappe/public/js/frappe/desk.js:227 msgctxt "Submit password for Email Account" msgid "Submit" msgstr "Kirim" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" -msgid "Submit" -msgstr "Kirim" - -#. Label of a Check field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the submit_after_import (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Submit After Import" -msgstr "Kirim Setelah Impor" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Submit Button Label" msgstr "" -#: website/doctype/web_form/templates/web_form.html:153 +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:156 +msgctxt "Button in web form" msgid "Submit another response" msgstr "" -#. Label of a Check field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 msgid "Submit on Creation" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:400 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 msgid "Submit this document to complete this step." msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini." -#: public/js/frappe/form/form.js:1194 +#: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi" -#: public/js/frappe/list/list_view.js:1921 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Kirim {0} dokumen?" -#: public/js/frappe/model/indicator.js:95 -#: public/js/frappe/ui/filters/filter.js:494 -#: website/doctype/web_form/templates/web_form.html:133 -msgid "Submitted" -msgstr "Dikirim" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:136 msgid "Submitted" msgstr "Dikirim" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Submitted" -msgstr "Dikirim" - -#: workflow/doctype/workflow/workflow.py:106 +#: frappe/workflow/doctype/workflow/workflow.py:103 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0}" -#: public/js/workflow_builder/utils.js:176 +#: frappe/public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" msgstr "" -#: public/js/frappe/form/save.js:10 +#: frappe/public/js/frappe/form/save.js:10 msgctxt "Freeze message while submitting a document" msgid "Submitting" msgstr "Mengirimkan" -#: desk/doctype/bulk_update/bulk_update.py:91 +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 msgid "Submitting {0}" msgstr "Mengajukan {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Subsidiary" -msgstr "Anak Perusahaan" +msgstr "" -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#. Label of the subtitle (Data) field in DocType 'Blog Settings' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" -msgstr "Subtitle" - -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Subtitle" -msgstr "Subtitle" - -#: core/doctype/data_import/data_import.js:470 -#: desk/doctype/bulk_update/bulk_update.js:31 -#: desk/doctype/desktop_icon/desktop_icon.py:452 -#: public/js/frappe/form/grid.js:1133 -#: public/js/frappe/views/translation_manager.js:21 -#: templates/pages/integrations/gcalendar-success.html:9 -#: workflow/doctype/workflow_action/workflow_action.py:171 -msgid "Success" -msgstr "Keberhasilan" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "Success" -msgstr "Keberhasilan" - #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" -msgid "Success" -msgstr "Keberhasilan" - -#. Label of a Check field in DocType 'Data Import Log' -#: core/doctype/data_import_log/data_import_log.json -msgctxt "Data Import Log" -msgid "Success" -msgstr "Keberhasilan" - +#. Label of the success (Check) field in DocType 'Data Import Log' #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" msgstr "Keberhasilan" #. Name of a DocType -#: core/doctype/success_action/success_action.json +#: frappe/core/doctype/success_action/success_action.json msgid "Success Action" msgstr "Tindakan Sukses" -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Success Message" -msgstr "Sukses Pesan" - -#. Label of a Text field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Success Message" -msgstr "Sukses Pesan" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Success Title" msgstr "" -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Success URI" msgstr "" -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Success URL" -msgstr "Sukses URL" +msgstr "" -#: www/update-password.html:79 +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "" + +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Keberhasilan! Anda baik untuk pergi 👍" -#. Label of a Int field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the successful_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: model/workflow.py:306 +#: frappe/model/workflow.py:307 msgid "Successful Transactions" msgstr "Transaksi yang berhasil" -#: model/rename_doc.py:684 +#: frappe/model/rename_doc.py:699 msgid "Successful: {0} to {1}" msgstr "Sukses: {0} ke {1}" -#: social/doctype/energy_point_settings/energy_point_settings.js:41 -msgid "Successfully Done" -msgstr "Berhasil Dilakukan" - -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 msgid "Successfully Updated" msgstr "Berhasil Diperbarui" -#: core/doctype/data_import/data_import.js:434 +#: frappe/core/doctype/data_import/data_import.js:423 msgid "Successfully imported {0}" msgstr "" -#: desk/doctype/form_tour/form_tour.py:86 +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." msgstr "" -#: public/js/frappe/views/translation_manager.js:22 +#: frappe/public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" msgstr "Berhasil memperbarui terjemahan" -#: core/doctype/data_import/data_import.js:442 +#: frappe/core/doctype/data_import/data_import.js:431 msgid "Successfully updated {0}" msgstr "" -#: core/doctype/data_import/data_import.js:149 -msgid "Successfully {0} 1 record." +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." msgstr "" -#: core/doctype/data_import/data_import.js:156 -msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again." +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" msgstr "" -#: core/doctype/data_import/data_import.js:161 -msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again." +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" msgstr "" -#: core/doctype/data_import/data_import.js:151 -msgid "Successfully {0} {1} records." -msgstr "" - -#: core/doctype/user/user.py:679 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Disarankan Username: {0}" -#: public/js/frappe/ui/group_by/group_by.js:20 -msgid "Sum" -msgstr "Jumlah" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Sum" -msgstr "Jumlah" - #. Option for the 'Function' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 msgid "Sum" msgstr "Jumlah" -#: public/js/frappe/ui/group_by/group_by.js:330 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Jumlah dari {0}" -#: public/js/frappe/views/interaction.js:88 +#: frappe/public/js/frappe/views/interaction.js:88 msgid "Summary" msgstr "Ringkasan" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Sunday" -msgstr "Minggu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Sunday" -msgstr "Minggu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Sunday" -msgstr "Minggu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Sunday" -msgstr "Minggu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Sunday" -msgstr "Minggu" +msgstr "" -#: email/doctype/email_queue/email_queue_list.js:27 +#: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" msgstr "menangguhkan Mengirim" -#: public/js/frappe/ui/capture.js:268 +#: frappe/public/js/frappe/ui/capture.js:276 msgid "Switch Camera" msgstr "" -#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11 +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 msgid "Switch Theme" msgstr "" -#: templates/includes/navbar/navbar_login.html:17 +#: frappe/templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" msgstr "Switch Untuk Meja" -#: public/js/frappe/ui/capture.js:273 +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" msgstr "" -#. Label of a Data field in DocType 'Currency' -#: geo/doctype/currency/currency.json -msgctxt "Currency" +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json msgid "Symbol" -msgstr "Simbol" +msgstr "" -#. Label of a Section Break field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' +#. Label of the sync (Section Break) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Sync" -msgstr "Sinkronkan" +msgstr "" -#. Label of a Section Break field in DocType 'Google Contacts' -#: integrations/doctype/google_contacts/google_contacts.json -msgctxt "Google Contacts" -msgid "Sync" -msgstr "Sinkronkan" - -#: integrations/doctype/google_calendar/google_calendar.js:28 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" msgstr "Sinkronkan Kalender" -#: integrations/doctype/google_contacts/google_contacts.js:28 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" msgstr "Sinkronkan Kontak" -#: custom/doctype/customize_form/customize_form.js:214 +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" msgstr "Sinkronisasi di Migrasi" -#: integrations/doctype/google_calendar/google_calendar.py:295 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 msgid "Sync token was invalid and has been reset, Retry syncing." msgstr "" -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json msgid "Sync with Google Calendar" -msgstr "Sinkronkan dengan Google Kalender" +msgstr "" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "Sync with Google Contacts" -msgstr "Sinkronkan dengan Kontak Google" +msgstr "" -#: custom/doctype/doctype_layout/doctype_layout.js:46 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" msgstr "" -#: custom/doctype/doctype_layout/doctype_layout.js:100 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 msgid "Synced Fields" msgstr "" -#: integrations/doctype/google_calendar/google_calendar.js:31 -#: integrations/doctype/google_contacts/google_contacts.js:31 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" msgstr "Sinkronisasi" -#: integrations/doctype/google_calendar/google_calendar.js:19 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" msgstr "Menyinkronkan {0} dari {1}" -#: utils/data.py:2424 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "System" -msgstr "Sistem" +msgstr "" #. Name of a DocType -#: desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 msgid "System Console" msgstr "Konsol Sistem" -#: custom/doctype/custom_field/custom_field.py:358 +#: frappe/custom/doctype/custom_field/custom_field.py:408 msgid "System Generated Fields can not be renamed" msgstr "" +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "" + #. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json +#: frappe/core/workspace/build/build.json msgid "System Logs" msgstr "" #. Name of a role -#: automation/doctype/assignment_rule/assignment_rule.json -#: automation/doctype/auto_repeat/auto_repeat.json -#: automation/doctype/milestone/milestone.json -#: automation/doctype/milestone_tracker/milestone_tracker.json -#: contacts/doctype/address/address.json -#: contacts/doctype/address_template/address_template.json -#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json -#: contacts/doctype/salutation/salutation.json -#: core/doctype/access_log/access_log.json -#: core/doctype/activity_log/activity_log.json -#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json -#: core/doctype/communication/communication.json -#: core/doctype/custom_docperm/custom_docperm.json -#: core/doctype/custom_role/custom_role.json -#: core/doctype/data_export/data_export.json -#: core/doctype/data_import/data_import.json -#: core/doctype/data_import_log/data_import_log.json -#: core/doctype/deleted_document/deleted_document.json -#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json -#: core/doctype/document_naming_rule/document_naming_rule.json -#: core/doctype/document_naming_settings/document_naming_settings.json -#: core/doctype/document_share_key/document_share_key.json -#: core/doctype/domain/domain.json -#: core/doctype/domain_settings/domain_settings.json -#: core/doctype/error_log/error_log.json core/doctype/file/file.json -#: core/doctype/installed_applications/installed_applications.json -#: core/doctype/language/language.json -#: core/doctype/log_settings/log_settings.json -#: core/doctype/module_def/module_def.json -#: core/doctype/module_profile/module_profile.json -#: core/doctype/navbar_settings/navbar_settings.json -#: core/doctype/package/package.json -#: core/doctype/package_import/package_import.json -#: core/doctype/package_release/package_release.json -#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json -#: core/doctype/permission_inspector/permission_inspector.json -#: core/doctype/prepared_report/prepared_report.json -#: core/doctype/report/report.json core/doctype/role/role.json -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json -#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json -#: core/doctype/rq_worker/rq_worker.json -#: core/doctype/scheduled_job_log/scheduled_job_log.json -#: core/doctype/scheduled_job_type/scheduled_job_type.json -#: core/doctype/session_default_settings/session_default_settings.json -#: core/doctype/sms_log/sms_log.json -#: core/doctype/sms_settings/sms_settings.json -#: core/doctype/submission_queue/submission_queue.json -#: core/doctype/success_action/success_action.json -#: core/doctype/system_settings/system_settings.json -#: core/doctype/translation/translation.json core/doctype/user/user.json -#: core/doctype/user_group/user_group.json -#: core/doctype/user_permission/user_permission.json -#: core/doctype/user_type/user_type.json core/doctype/version/version.json -#: core/doctype/view_log/view_log.json -#: custom/doctype/client_script/client_script.json -#: custom/doctype/custom_field/custom_field.json -#: custom/doctype/customize_form/customize_form.json -#: custom/doctype/doctype_layout/doctype_layout.json -#: custom/doctype/property_setter/property_setter.json -#: desk/doctype/bulk_update/bulk_update.json -#: desk/doctype/calendar_view/calendar_view.json -#: desk/doctype/console_log/console_log.json -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/dashboard/dashboard.json -#: desk/doctype/dashboard_chart/dashboard_chart.json -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json -#: desk/doctype/form_tour/form_tour.json -#: desk/doctype/global_search_settings/global_search_settings.json -#: desk/doctype/kanban_board/kanban_board.json -#: desk/doctype/list_view_settings/list_view_settings.json -#: desk/doctype/module_onboarding/module_onboarding.json -#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json -#: desk/doctype/route_history/route_history.json -#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json -#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json -#: email/doctype/auto_email_report/auto_email_report.json -#: email/doctype/document_follow/document_follow.json -#: email/doctype/email_account/email_account.json -#: email/doctype/email_domain/email_domain.json -#: email/doctype/email_flag_queue/email_flag_queue.json -#: email/doctype/email_queue/email_queue.json -#: email/doctype/email_rule/email_rule.json -#: email/doctype/email_template/email_template.json -#: email/doctype/email_unsubscribe/email_unsubscribe.json -#: email/doctype/notification/notification.json -#: email/doctype/unhandled_email/unhandled_email.json -#: geo/doctype/country/country.json geo/doctype/currency/currency.json -#: integrations/doctype/connected_app/connected_app.json -#: integrations/doctype/dropbox_settings/dropbox_settings.json -#: integrations/doctype/google_calendar/google_calendar.json -#: integrations/doctype/google_contacts/google_contacts.json -#: integrations/doctype/google_drive/google_drive.json -#: integrations/doctype/google_settings/google_settings.json -#: integrations/doctype/integration_request/integration_request.json -#: integrations/doctype/ldap_settings/ldap_settings.json -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: integrations/doctype/oauth_client/oauth_client.json -#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: integrations/doctype/social_login_key/social_login_key.json -#: integrations/doctype/token_cache/token_cache.json -#: integrations/doctype/webhook/webhook.json -#: integrations/doctype/webhook_request_log/webhook_request_log.json -#: printing/doctype/letter_head/letter_head.json -#: printing/doctype/network_printer_settings/network_printer_settings.json -#: printing/doctype/print_format/print_format.json -#: printing/doctype/print_format_field_template/print_format_field_template.json -#: printing/doctype/print_heading/print_heading.json -#: printing/doctype/print_settings/print_settings.json -#: printing/doctype/print_style/print_style.json -#: social/doctype/energy_point_log/energy_point_log.json -#: social/doctype/energy_point_rule/energy_point_rule.json -#: social/doctype/energy_point_settings/energy_point_settings.json -#: website/doctype/discussion_reply/discussion_reply.json -#: website/doctype/discussion_topic/discussion_topic.json -#: website/doctype/marketing_campaign/marketing_campaign.json -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -#: website/doctype/personal_data_download_request/personal_data_download_request.json -#: website/doctype/web_page_view/web_page_view.json -#: website/doctype/web_template/web_template.json -#: website/doctype/website_route_meta/website_route_meta.json -#: workflow/doctype/workflow/workflow.json -#: workflow/doctype/workflow_action_master/workflow_action_master.json -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "System Manager" -msgstr "System Manager" +msgstr "" -#: desk/page/backups/backups.js:36 +#: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." msgstr "" #. Option for the 'Channel' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "System Notification" -msgstr "Pemberitahuan Sistem" - -#. Label of a Section Break field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "System Notifications" msgstr "" -#. Label of a Check field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "System Page" -msgstr "Sistem" +msgstr "" #. Name of a DocType -#: core/doctype/system_settings/system_settings.json -msgid "System Settings" -msgstr "Pengaturan Sistem" - -#. Label of a shortcut in the Build Workspace -#: core/workspace/build/build.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "System Settings" msgstr "Pengaturan Sistem" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" +#: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "System managers are allowed by default" -msgstr "Manajer sistem diizinkan secara default" +msgstr "" -#: public/js/frappe/utils/number_systems.js:5 +#: frappe/public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" msgid "T" msgstr "" -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Tab Break" -msgstr "" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Tab Break" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Tab Break" msgstr "" -#: core/doctype/data_export/exporter.py:23 -msgid "Table" -msgstr "Tabel" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Table" -msgstr "Tabel" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Table" -msgstr "Tabel" +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Table" -msgstr "Tabel" - +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Table" msgstr "Tabel" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Table Break" -msgstr "Tabel Istirahat" +msgstr "" -#. Label of a Data field in DocType 'DocType Link' -#: core/doctype/doctype_link/doctype_link.json -msgctxt "DocType Link" +#: frappe/core/doctype/version/version_view.html:72 +msgid "Table Field" +msgstr "" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json msgid "Table Fieldname" msgstr "" -#: core/doctype/doctype/doctype.py:1154 +#: frappe/core/doctype/doctype/doctype.py:1203 msgid "Table Fieldname Missing" msgstr "" -#. Label of a HTML field in DocType 'Version' -#: core/doctype/version/version.json -msgctxt "Version" +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json msgid "Table HTML" -msgstr "tabel HTML" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Table MultiSelect" -msgstr "Tabel Multi Pilih" +msgstr "" -#: public/js/frappe/form/grid.js:1132 +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1169 msgid "Table updated" msgstr "Tabel diperbarui" -#: model/document.py:1366 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabel {0} tidak boleh kosong" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Tabloid" msgstr "" #. Name of a DocType -#: desk/doctype/tag/tag.json +#: frappe/desk/doctype/tag/tag.json msgid "Tag" msgstr "Menandai" #. Name of a DocType -#: desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/tag_link/tag_link.json msgid "Tag Link" msgstr "Tautan Tag" -#: model/__init__.py:148 model/meta.py:52 -#: public/js/frappe/list/bulk_operations.js:365 -#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204 -#: public/js/frappe/model/model.js:123 -#: public/js/frappe/ui/toolbar/awesome_bar.js:171 +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" msgstr "Tag" -#: integrations/doctype/google_drive/google_drive.js:28 -msgid "Take Backup" -msgstr "Ambil Cadangan" - -#: integrations/doctype/dropbox_settings/dropbox_settings.js:39 -#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12 -msgid "Take Backup Now" -msgstr "Ambil Cadangan Sekarang" - -#: public/js/frappe/ui/capture.js:212 +#: frappe/public/js/frappe/ui/capture.js:220 msgid "Take Photo" msgstr "Memotret" -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Target" -msgstr "Sasaran" +msgstr "" -#. Label of a Small Text field in DocType 'Website Route Redirect' -#: website/doctype/website_route_redirect/website_route_redirect.json -msgctxt "Website Route Redirect" -msgid "Target" -msgstr "Sasaran" - -#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25 +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 msgid "Task" msgstr "Tugas" -#: www/about.html:45 +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 msgid "Team Members" msgstr "Anggota Tim" -#. Label of a Section Break field in DocType 'About Us Settings' -#. Label of a Table field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" -msgid "Team Members" -msgstr "Anggota Tim" - -#. Label of a Data field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Heading" -msgstr "Anggota Tim Pos" +msgstr "" -#. Label of a Small Text field in DocType 'About Us Settings' -#: website/doctype/about_us_settings/about_us_settings.json -msgctxt "About Us Settings" +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Subtitle" msgstr "" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Telemetry" msgstr "" -#. Label of a Code field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json msgid "Template" msgstr "Contoh" -#. Label of a Link field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Template" -msgstr "Contoh" - -#. Label of a Code field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" -msgid "Template" -msgstr "Contoh" - -#. Label of a Code field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Template" -msgstr "Contoh" - -#: core/doctype/data_import/importer.py:468 -#: core/doctype/data_import/importer.py:596 +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 msgid "Template Error" msgstr "Kesalahan Templat" -#. Label of a Data field in DocType 'Print Format Field Template' -#: printing/doctype/print_format_field_template/print_format_field_template.json -msgctxt "Print Format Field Template" +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Template File" msgstr "" -#. Label of a Code field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Template Options" -msgstr "Opsi Templat" +msgstr "" -#. Label of a Code field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json msgid "Template Warnings" -msgstr "Peringatan Templat" +msgstr "" -#: public/js/frappe/views/workspace/blocks/paragraph.js:78 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" msgstr "" -#: core/doctype/user/user.py:983 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Dinonaktifkan Sementara" -#: email/doctype/newsletter/newsletter.py:94 -msgid "Test email sent to {0}" -msgstr "Email percobaan dikirim ke {0}" +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "" -#: core/doctype/file/test_file.py:357 +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" -msgstr "Test_Folder" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Text" -msgstr "Teks" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Text" -msgstr "Teks" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Text" -msgstr "Teks" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" -msgid "Text" -msgstr "Teks" - #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' -#: website/doctype/web_template_field/web_template_field.json -msgctxt "Web Template Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Text" -msgstr "Teks" +msgstr "" -#. Label of a Select field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json msgid "Text Align" -msgstr "Teks Align" +msgstr "" -#. Label of a Link field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "Warna Teks" +msgstr "" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Text Content" -msgstr "Konten teks" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Text Editor" -msgstr "Teks Editor" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Text Editor" -msgstr "Teks Editor" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Text Editor" -msgstr "Teks Editor" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Text Editor" -msgstr "Teks Editor" +msgstr "" -#: templates/emails/password_reset.html:5 +#: frappe/templates/emails/password_reset.html:5 msgid "Thank you" msgstr "Terima kasih" -#: website/doctype/web_form/templates/web_form.html:137 +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:140 msgid "Thank you for spending your valuable time to fill this form" msgstr "" -#: templates/emails/auto_reply.html:1 +#: frappe/templates/emails/auto_reply.html:1 msgid "Thank you for your email" msgstr "Terima kasih atas email Anda" -#: website/doctype/help_article/templates/help_article.html:27 +#: frappe/website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" msgstr "Terima kasih atas tanggapan Anda!" -#: email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Terima kasih atas minat anda untuk berlangganan berita kami" +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" -#: templates/emails/new_user.html:16 +#: frappe/templates/emails/new_user.html:16 msgid "Thanks" msgstr "" -#: templates/emails/auto_repeat_fail.html:3 +#: frappe/templates/emails/auto_repeat_fail.html:3 msgid "The Auto Repeat for this document has been disabled." msgstr "Ulangi Otomatis untuk dokumen ini telah dinonaktifkan." -#: public/js/frappe/form/grid.js:1155 +#: frappe/public/js/frappe/form/grid.js:1192 msgid "The CSV format is case sensitive" msgstr "Format CSV bersifat case sensitive" #. Description of the 'Client ID' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The Client ID obtained from the Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:201 msgid "The Condition '{0}' is invalid" msgstr "Kondisi '{0}' tidak valid" -#: core/doctype/file/file.py:205 +#: frappe/core/doctype/file/file.py:208 msgid "The File URL you've entered is incorrect" msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." msgstr "" -#: public/js/frappe/desk.js:127 +#: frappe/public/js/frappe/desk.js:162 msgid "The application has been updated to a new version, please refresh this page" msgstr "Aplikasi ini telah diperbarui ke versi baru, harap perbarui halaman ini" #. Description of the 'Application Name' (Data) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "The application name will be used in the Login page." msgstr "" -#: public/js/frappe/views/interaction.js:324 +#: frappe/public/js/frappe/views/interaction.js:323 msgid "The attachments could not be correctly linked to the new document" msgstr "Lampiran tidak dapat dikaitkan dengan benar ke dokumen baru" #. Description of the 'API Key' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The browser API key obtained from the Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" msgstr "" -#: database/database.py:388 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "" -#: core/doctype/data_import/importer.py:962 +#: frappe/core/doctype/data_import/importer.py:1009 msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolom {0} memiliki {1} format tanggal yang berbeda. Secara otomatis menyetel {2} sebagai format bawaan karena ini yang paling umum. Harap ubah nilai lain di kolom ini ke format ini." -#: templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:34 msgid "The comment cannot be empty" msgstr "Komentar tidak boleh kosong" -#: public/js/frappe/views/interaction.js:301 +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:658 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" msgstr "Dokumen tidak dapat ditetapkan dengan benar" -#: public/js/frappe/views/interaction.js:295 +#: frappe/public/js/frappe/views/interaction.js:295 msgid "The document has been assigned to {0}" msgstr "Dokumen telah ditetapkan ke {0}" #. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard #. Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "The document type selected is a child table, so the parent document type is required." -msgstr "" - #. Description of the 'Parent Document Type' (Link) field in DocType 'Number #. Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json msgid "The document type selected is a child table, so the parent document type is required." msgstr "" -#: core/doctype/user_type/user_type.py:109 +#: frappe/core/doctype/user_type/user_type.py:110 msgid "The field {0} is mandatory" msgstr "" -#: core/doctype/file/file.py:143 +#: frappe/core/doctype/file/file.py:145 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" -#: core/doctype/data_import/importer.py:1035 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "" -#: core/doctype/data_import/importer.py:998 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "" -#: core/doctype/user_type/user_type.py:88 +#: frappe/core/doctype/user_type/user_type.py:89 msgid "The limit has not set for the user type {0} in the site config file." msgstr "" -#: templates/emails/login_with_email_link.html:21 +#: frappe/templates/emails/login_with_email_link.html:21 msgid "The link will expire in {0} minutes" msgstr "" -#: www/login.py:178 +#: frappe/www/login.py:194 msgid "The link you trying to login is invalid or expired." msgstr "" -#: website/doctype/web_page/web_page.js:125 +#: frappe/website/doctype/web_page/web_page.js:125 msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." msgstr "Deskripsi meta adalah atribut HTML yang memberikan ringkasan singkat dari halaman web. Mesin pencari seperti Google sering menampilkan deskripsi meta dalam hasil pencarian, yang dapat mempengaruhi rasio klik-tayang." -#: website/doctype/web_page/web_page.js:132 +#: frappe/website/doctype/web_page/web_page.js:132 msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." msgstr "Gambar meta adalah gambar unik yang mewakili konten halaman. Gambar untuk Kartu ini harus memiliki lebar minimal 280 piksel, dan tinggi minimal 150 piksel." #. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" +#: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "The name that will appear in Google Calendar" -msgstr "Nama yang akan muncul di Google Calendar" +msgstr "" #. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "The next tour will start from where the user left off." msgstr "" #. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "The number of seconds until the request expires" msgstr "" -#: www/404.html:18 -msgid "The page you are looking for has gone missing." -msgstr "" - -#: www/update-password.html:86 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Kata sandi akun Anda telah kedaluwarsa." -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 msgid "The process for deletion of {0} data associated with {1} has been initiated." msgstr "Proses penghapusan {0} data yang terkait dengan {1} telah dimulai." #. Description of the 'App ID' (Data) field in DocType 'Google Settings' -#: integrations/doctype/google_settings/google_settings.json -msgctxt "Google Settings" -msgid "" -"The project number obtained from Google Cloud Console under \n" +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" "\"IAM & Admin\" > \"Settings\"\n" "" msgstr "" -#: core/doctype/user/user.py:943 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: core/doctype/user/user.py:945 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: app.py:364 public/js/frappe/request.js:147 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Sumber daya yang Anda cari tidak tersedia" -#: core/doctype/user_type/user_type.py:113 +#: frappe/core/doctype/user_type/user_type.py:114 msgid "The role {0} should be a custom role." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:45 +#: frappe/core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." msgstr "" -#: utils/response.py:321 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" -#: public/js/frappe/form/grid_row.js:615 -msgid "The total column width cannot be more than 10." +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." msgstr "" -#: core/doctype/user_type/user_type.py:96 +#: frappe/core/doctype/user_type/user_type.py:97 msgid "The total number of user document types limit has been crossed." msgstr "" -#. Description of the 'User Field' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "The user from this field will be rewarded points" -msgstr "Pengguna dari bidang ini akan diberi poin penghargaan" - -#: public/js/frappe/form/controls/data.js:24 +#: frappe/public/js/frappe/form/controls/data.js:25 msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." msgstr "" #. Description of the 'Condition' (Small Text) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "The webhook will be triggered if this expression is true" -msgstr "Webhook akan dipicu jika ungkapan ini benar" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:168 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 msgid "The {0} is already on auto repeat {1}" msgstr "{0} sudah diulang otomatis {1}" -#. Label of a Section Break field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme" -msgstr "Tema" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#. Label of a Code field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" -msgid "Theme" -msgstr "Tema" - -#: public/js/frappe/ui/theme_switcher.js:130 +#: frappe/public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" msgstr "" -#. Label of a Tab Break field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme Configuration" -msgstr "Konfigurasi Tema" +msgstr "" -#. Label of a Data field in DocType 'Website Theme' -#: website/doctype/website_theme/website_theme.json -msgctxt "Website Theme" +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json msgid "Theme URL" -msgstr "URL tema" +msgstr "" -#: website/web_template/discussions/discussions.html:3 +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "There are no upcoming events for you." +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: website/doctype/web_form/web_form.js:72 -#: website/doctype/web_form/web_form.js:308 +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:317 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: core/doctype/doctype/doctype.py:1394 +#: frappe/core/doctype/doctype/doctype.py:1443 msgid "There can be only one Fold in a form" msgstr "Hanya ada satu Fold dalam bentuk" -#: contacts/doctype/address/address.py:185 +#: frappe/contacts/doctype/address/address.py:183 msgid "There is an error in your Address Template {0}" msgstr "Ada kesalahan dalam Template Alamat Anda {0}" -#: core/doctype/data_export/exporter.py:162 +#: frappe/core/doctype/data_export/exporter.py:162 msgid "There is no data to be exported" msgstr "Tidak ada data yang diekspor" -#: core/doctype/file/file.py:571 utils/file_manager.py:376 +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "" + +#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Ada beberapa masalah dengan url berkas: {0}" -#: core/page/permission_manager/permission_manager.py:150 +#: frappe/public/js/frappe/views/reports/query_report.js:961 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 msgid "There must be atleast one permission rule." msgstr "Harus ada minimal aturan satu izin." -#: core/doctype/user/user.py:499 -msgid "There should remain at least one System Manager" -msgstr "Ada harus tetap setidaknya satu System Manager" - -#: www/error.py:16 +#: frappe/www/error.py:17 msgid "There was an error building this page" msgstr "Terjadi kesalahan saat membangun halaman ini" -#: public/js/frappe/views/kanban/kanban_view.js:180 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 msgid "There was an error saving filters" msgstr "Terjadi kesalahan saat menyimpan filter" -#: public/js/frappe/form/sidebar/attachments.js:201 +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" msgstr "Ada kesalahan" -#: public/js/frappe/views/interaction.js:276 +#: frappe/public/js/frappe/views/interaction.js:277 msgid "There were errors while creating the document. Please try again." msgstr "Ada kesalahan saat membuat dokumen. Silakan coba lagi." -#: public/js/frappe/views/communication.js:728 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Ada kesalahan saat mengirim email. Silakan coba lagi." -#: model/naming.py:449 +#: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" msgstr "Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator" -#: www/404.html:15 -msgid "There's nothing here" +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." msgstr "" #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "These settings are required if 'Custom' LDAP Directory is used" msgstr "" #. Description of the 'Defaults' (Section Break) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/core/doctype/user/user.json msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." -msgstr "Nilai-nilai ini akan otomatis diperbarui dalam transaksi dan akan berguna jika membatasi hak akses pengguna ini terhadap transaksi-transaksi yang mengandung nilai-nilai ini." +msgstr "" -#: www/third_party_apps.html:3 www/third_party_apps.html:13 +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" msgstr "Aplikasi Pihak Ketiga" -#. Label of a Section Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json msgid "Third Party Authentication" -msgstr "Pihak Ketiga Otentikasi" +msgstr "" -#: geo/doctype/currency/currency.js:8 +#: frappe/geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi" -#: geo/utils.py:84 -msgid "This Doctype does not contain latitude and longitude fields" -msgstr "" - -#: geo/utils.py:67 -msgid "This Doctype does not contain location fields" -msgstr "" - -#: public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Papan Kanban ini akan menjadi pribadi" -#: __init__.py:917 +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "Bulan Ini" + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "Kuartal Ini" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "Minggu Ini" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "Tahun Ini" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "" + +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Tindakan ini hanya diperbolehkan untuk {}" -#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720 +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 msgid "This cannot be undone" msgstr "Ini tidak dapat dibatalkan" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" +#: frappe/desk/doctype/number_card/number_card.json msgid "This card will be available to all Users if this is set" -msgstr "Kartu ini akan tersedia untuk semua Pengguna jika ini disetel" - -#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "This chart will be available to all Users if this is set" -msgstr "Bagan ini akan tersedia untuk semua Pengguna jika ini disetel" - -#: desk/doctype/workspace/workspace.js:23 -msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page" msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:90 -msgid "This document cannot be reverted" -msgstr "Dokumen ini tidak dapat dikembalikan" +#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "This chart will be available to all Users if this is set" +msgstr "" -#: www/confirm_workflow_action.html:8 +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1054 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:113 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." msgstr "Dokumen ini telah dimodifikasi setelah email dikirim." -#: social/doctype/energy_point_log/energy_point_log.js:8 -msgid "This document has been reverted" -msgstr "Dokumen ini telah dikembalikan" +#: frappe/public/js/frappe/form/form.js:1305 +msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." +msgstr "" -#: public/js/frappe/form/form.js:1075 +#: frappe/public/js/frappe/form/form.js:1102 msgid "This document is already amended, you cannot ammend it again" msgstr "Dokumen ini sudah diubah, Anda tidak dapat mengubahnya lagi" -#: model/document.py:1518 -msgid "This document is currently queued for execution. Please try again" -msgstr "Dokumen ini saat antri untuk eksekusi. Silakan coba lagi" +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" -#: templates/emails/auto_repeat_fail.html:7 +#: frappe/templates/emails/auto_repeat_fail.html:7 msgid "This email is autogenerated" msgstr "Email ini otomatis terkirim" -#: printing/doctype/network_printer_settings/network_printer_settings.py:29 -msgid "" -"This feature can not be used as dependencies are missing.\n" +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" "\t\t\t\tPlease contact your system manager to enable this by installing pycups!" msgstr "" +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "" -"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" "myfield\n" "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" msgstr "" -#: core/doctype/file/file.js:10 +#: frappe/core/doctype/file/file.py:500 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." msgstr "" -#: public/js/frappe/form/form.js:1172 +#: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" msgstr "Formulir ini telah dimodifikasi setelah Anda dimuat" -#: public/js/frappe/form/form.js:457 +#: frappe/public/js/frappe/form/form.js:2257 msgid "This form is not editable due to a Workflow." msgstr "" #. Description of the 'Is Default' (Check) field in DocType 'Address Template' -#: contacts/doctype/address_template/address_template.json -msgctxt "Address Template" +#: frappe/contacts/doctype/address_template/address_template.json msgid "This format is used if country specific format is not found" -msgstr "Format ini digunakan jika format khusus negara tidak ditemukan" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" #. Description of the 'Header' (HTML Editor) field in DocType 'Website #. Slideshow' -#: website/doctype/website_slideshow/website_slideshow.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "This goes above the slideshow." -msgstr "Ini berjalan di atas slideshow." +msgstr "" -#: public/js/frappe/views/reports/query_report.js:1995 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ini adalah laporan latar belakang. Harap atur filter yang sesuai dan kemudian buat yang baru." -#: utils/password_strength.py:162 +#: frappe/utils/password_strength.py:158 msgid "This is a top-10 common password." msgstr "Ini adalah top-10 password yang umum." -#: utils/password_strength.py:164 +#: frappe/utils/password_strength.py:160 msgid "This is a top-100 common password." msgstr "Ini adalah sandi top-100 yang umum." -#: utils/password_strength.py:166 +#: frappe/utils/password_strength.py:162 msgid "This is a very common password." msgstr "Ini adalah password yang sangat umum." -#: core/doctype/rq_job/rq_job.js:9 +#: frappe/core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." msgstr "" -#: templates/emails/auto_reply.html:5 +#: frappe/templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" msgstr "Ini adalah balasan secara otomatis" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "This is an example Google SERP Preview." -msgstr "Ini adalah contoh Pratinjau SERP Google." +msgstr "" -#: utils/password_strength.py:168 +#: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Hal ini mirip dengan password yang umum digunakan." #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "This is the number of the last created transaction with this prefix" -msgstr "Ini adalah jumlah transaksi yang diciptakan terakhir dengan awalan ini" +msgstr "" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 msgid "This link has already been activated for verification." msgstr "Tautan ini telah diaktifkan untuk verifikasi." -#: utils/verified_command.py:49 +#: frappe/utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Link ini tidak valid atau kedaluwarsa. Pastikan Anda telah disisipkan dengan benar." -#: printing/page/print/print.js:403 +#: frappe/printing/page/print/print.js:410 msgid "This may get printed on multiple pages" msgstr "Ini dapat dicetak pada beberapa halaman" -#: utils/goal.py:109 +#: frappe/utils/goal.py:109 msgid "This month" msgstr "Bulan ini" -#: email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" +#: frappe/public/js/frappe/views/reports/query_report.js:1036 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" -#: email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: templates/emails/auto_email_report.html:57 +#: frappe/templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" msgstr "Laporan ini dibuat pada {0}" -#: public/js/frappe/views/reports/query_report.js:782 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Laporan ini dihasilkan {0}." -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." msgstr "Permintaan ini belum disetujui oleh pengguna." -#: templates/includes/navbar/navbar_items.html:95 +#: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." msgstr "" -#: core/doctype/doctype/doctype.js:76 +#: frappe/core/doctype/doctype/doctype.js:73 msgid "This site is running in developer mode. Any change made here will be updated in code." msgstr "" -#: website/doctype/web_page/web_page.js:71 +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 msgid "This title will be used as the title of the webpage as well as in meta tags" msgstr "Judul ini akan digunakan sebagai judul halaman web serta tag meta" -#: public/js/frappe/form/controls/base_input.js:120 +#: frappe/public/js/frappe/form/controls/base_input.js:129 msgid "This value is fetched from {0}'s {1} field" msgstr "" -#: website/doctype/web_page/web_page.js:85 +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view. " +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" msgstr "Ini akan dibuat secara otomatis saat Anda mempublikasikan halaman, Anda juga dapat memasukkan rute sendiri jika Anda mau" #. Description of the 'Callback Message' (Small Text) field in DocType #. 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown in a modal after routing" -msgstr "Ini akan ditampilkan dalam modal setelah perutean" +msgstr "" #. Description of the 'Report Description' (Data) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown to the user in a dialog after routing to the report" -msgstr "Ini akan ditampilkan kepada pengguna dalam dialog setelah dirutekan ke laporan" +msgstr "" -#: www/third_party_apps.html:21 +#: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" msgstr "Ini akan log out {0} dari semua perangkat lain" -#: templates/emails/delete_data_confirmation.html:3 +#: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." msgstr "Ini akan menghapus data Anda secara permanen." -#: desk/doctype/form_tour/form_tour.js:103 +#: frappe/desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" -#: core/doctype/rq_job/rq_job.js:15 +#: frappe/core/doctype/rq_job/rq_job.js:15 msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: core/doctype/user/user.py:1209 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Terhempas" -#. Label of a Small Text field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Thumbnail URL" -msgstr "URL thumbnail" +msgstr "" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Thursday" -msgstr "Kamis" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Thursday" -msgstr "Kamis" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Thursday" -msgstr "Kamis" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Thursday" -msgstr "Kamis" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Thursday" -msgstr "Kamis" - -#: email/doctype/newsletter/newsletter.js:118 -msgid "Time" -msgstr "Waktu" - -#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" -msgid "Time" -msgstr "Waktu" - -#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Time" -msgstr "Waktu" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Time" -msgstr "Waktu" - -#. Label of a Datetime field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" -msgid "Time" -msgstr "Waktu" - +#. Label of the time (Datetime) field in DocType 'Recorder' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Time" -msgstr "Waktu" - #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" -msgid "Time" -msgstr "Waktu" - +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' -#: website/doctype/web_form_field/web_form_field.json -msgctxt "Web Form Field" +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Waktu" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Time Format" -msgstr "Format waktu" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Interval" -msgstr "Jarak waktu" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series" -msgstr "Seri waktu" +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series Based On" -msgstr "Seri Waktu Berdasarkan" +msgstr "" -#. Label of a Duration field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Time Taken" msgstr "" -#. Label of a Int field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json msgid "Time Window (Seconds)" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:395 +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Autocomplete field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" -msgid "Time Zone" -msgstr "Zona Waktu: GMT +2; CET +1, dan EST (AS-Timur) +7" - -#. Label of a Text field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Time Zones" -msgstr "Zona Waktu" +msgstr "" -#. Label of a Data field in DocType 'Country' -#: geo/doctype/country/country.json -msgctxt "Country" +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json msgid "Time format" -msgstr "Format waktu" +msgstr "" -#. Label of a Float field in DocType 'Recorder' -#: core/doctype/recorder/recorder.json -msgctxt "Recorder" +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json msgid "Time in Queries" msgstr "" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Time in seconds to retain QR code image on server. Min:240" -msgstr "Waktu dalam hitungan detik untuk mempertahankan gambar QR code di server. Min: 240" +msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:413 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 msgid "Time series based on is required to create a dashboard chart" msgstr "Diperlukan seri waktu berdasarkan untuk membuat bagan dasbor" -#: public/js/frappe/form/controls/time.js:104 +#: frappe/public/js/frappe/form/controls/time.js:124 msgid "Time {0} must be in format: {1}" msgstr "Waktu {0} harus dalam format: {1}" #. Option for the 'Status' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Timed Out" msgstr "" -#: public/js/frappe/ui/theme_switcher.js:64 +#: frappe/public/js/frappe/ui/theme_switcher.js:64 msgid "Timeless Night" msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "Timeline" msgstr "" -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline DocType" -msgstr "DocType Timeline" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Timeline Field" -msgstr "Timeline Lapangan" +msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#. Label of a Table field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Timeline Links" -msgstr "Tautan Timeline" +msgstr "" -#. Label of a Dynamic Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline Name" -msgstr "Nama Timeline" +msgstr "" -#: core/doctype/doctype/doctype.py:1489 +#: frappe/core/doctype/doctype/doctype.py:1538 msgid "Timeline field must be a Link or Dynamic Link" msgstr "bidang Timeline harus Link atau Dynamic Link" -#: core/doctype/doctype/doctype.py:1485 +#: frappe/core/doctype/doctype/doctype.py:1534 msgid "Timeline field must be a valid fieldname" msgstr "bidang Timeline harus fieldname valid" -#. Label of a Duration field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json msgid "Timeout" msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart Source' -#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json -msgctxt "Dashboard Chart Source" +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Timeseries" -msgstr "Timeseries" +msgstr "" -#: desk/page/leaderboard/leaderboard.js:123 -#: public/js/frappe/ui/filters/filter.js:28 +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 msgid "Timespan" msgstr "Rentang waktu" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Timespan" -msgstr "Rentang waktu" - -#: core/report/transaction_log_report/transaction_log_report.py:112 +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/transaction_log/transaction_log.json +#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" -msgstr "Timestamp" +msgstr "" -#. Label of a Datetime field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" -msgid "Timestamp" -msgstr "Timestamp" +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" -#. Label of a Datetime field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" -msgid "Timestamp" -msgstr "Timestamp" - -#: public/js/form_builder/store.js:89 -#: public/js/frappe/views/workspace/workspace.js:599 -#: public/js/frappe/views/workspace/workspace.js:928 -#: public/js/frappe/views/workspace/workspace.js:1175 +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Blog Category' +#. Label of the title (Data) field in DocType 'Blog Post' +#. Label of the title (Data) field in DocType 'Blog Settings' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Title" msgstr "Judul" -#. Label of a Data field in DocType 'Blog Category' -#: website/doctype/blog_category/blog_category.json -msgctxt "Blog Category" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Blog Settings' -#: website/doctype/blog_settings/blog_settings.json -msgctxt "Blog Settings" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Discussion Topic' -#: website/doctype/discussion_topic/discussion_topic.json -msgctxt "Discussion Topic" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Help Article' -#: website/doctype/help_article/help_article.json -msgctxt "Help Article" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Module Onboarding' -#: desk/doctype/module_onboarding/module_onboarding.json -msgctxt "Module Onboarding" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Note' -#: desk/doctype/note/note.json -msgctxt "Note" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Portal Menu Item' -#: website/doctype/portal_menu_item/portal_menu_item.json -msgctxt "Portal Menu Item" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Website Sidebar' -#: website/doctype/website_sidebar/website_sidebar.json -msgctxt "Website Sidebar" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Website Sidebar Item' -#: website/doctype/website_sidebar_item/website_sidebar_item.json -msgctxt "Website Sidebar Item" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" -msgid "Title" -msgstr "Judul" - -#. Label of a Data field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Title Field" -msgstr "Judul Lapangan" +msgstr "" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Title Field" -msgstr "Judul Lapangan" - -#. Label of a Data field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Title Prefix" -msgstr "Judul Prefix" +msgstr "" -#: core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1475 msgid "Title field must be a valid fieldname" msgstr "Judul lapangan harus fieldname valid" -#: website/doctype/web_page/web_page.js:70 +#: frappe/website/doctype/web_page/web_page.js:70 msgid "Title of the page" msgstr "Judul halaman" -#: public/js/frappe/views/communication.js:52 -#: public/js/frappe/views/inbox/inbox_view.js:70 +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Untuk" -#. Label of a Code field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" msgid "To" msgstr "Untuk" -#. Label of a Section Break field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "To" -msgstr "Untuk" - -#: website/report/website_analytics/website_analytics.js:14 +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 msgid "To Date" msgstr "Untuk Tanggal" -#. Label of a Date field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "To Date" -msgstr "Untuk Tanggal" - -#. Label of a Select field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To Date Field" -msgstr "Bidang Tanggal" - -#: desk/doctype/todo/todo_list.js:12 -msgid "To Do" -msgstr "To Do" +msgstr "" #. Label of a Link in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "ToDo" +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "To Do" - -#: public/js/frappe/form/sidebar/review.js:50 -msgid "To User" -msgstr "Kepada Pengguna" +msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" "
New {{ doc.doctype }} #{{ doc.name }}
" msgstr "" #. Description of the 'Subject' (Data) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" -msgid "" -"To add dynamic subject, use jinja tags like\n" -"\n" +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" "
{{ doc.name }} Delivered
" msgstr "" #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "" -"To add dynamic values from the document, use jinja tags like\n" -"\n" +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" "
\n" "
{ \"id\": \"{{ doc.name }}\" }\n"
 "
\n" "
" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:101 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" -#. Label of a Section Break field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "To and CC" -msgstr "Untuk dan CC" +msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.js:35 +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." msgstr "Untuk mengonfigurasi Ulangi Otomatis, aktifkan "Izinkan Ulangi Otomatis" dari {0}." -#: www/login.html:73 +#: frappe/www/login.html:76 msgid "To enable it follow the instructions in the following link: {0}" msgstr "Untuk mengaktifkannya ikuti instruksi di tautan berikut: {0}" -#: desk/doctype/onboarding_step/onboarding_step.js:18 +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 msgid "To export this step as JSON, link it in a Onboarding document and save the document." msgstr "" -#: public/js/frappe/views/reports/query_report.js:783 +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}." -#: www/me.html:51 -msgid "To manage your authorized third party apps" +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" msgstr "" #. Description of the 'Console' (Code) field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#: frappe/desk/doctype/system_console/system_console.json msgid "To print output use print(text)" msgstr "" -#: core/doctype/user_type/user_type.py:295 +#: frappe/core/doctype/user_type/user_type.py:291 msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." msgstr "" -#: integrations/doctype/google_calendar/google_calendar.js:8 +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 msgid "To use Google Calendar, enable {0}." msgstr "Untuk menggunakan Kalender Google, aktifkan {0}." -#: integrations/doctype/google_contacts/google_contacts.js:8 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 msgid "To use Google Contacts, enable {0}." msgstr "Untuk menggunakan Kontak Google, aktifkan {0}." -#: integrations/doctype/google_drive/google_drive.js:8 -msgid "To use Google Drive, enable {0}." -msgstr "Untuk menggunakan Google Drive, aktifkan {0}." - #. Description of the 'Enable Google indexing' (Check) field in DocType #. 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json msgid "To use Google Indexing, enable Google Settings." msgstr "" #. Description of the 'Slack Channel' (Link) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "To use Slack Channel, add a Slack Webhook URL." msgstr "" -#: public/js/frappe/utils/diffview.js:43 +#: frappe/public/js/frappe/utils/diffview.js:44 msgid "To version" msgstr "" +#. Label of a shortcut in the Tools Workspace #. Name of a DocType #. Name of a report -#: desk/doctype/todo/todo.json desk/report/todo/todo.json +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json msgid "ToDo" msgstr "To Do" -#. Label of a shortcut in the Tools Workspace -#: automation/workspace/tools/tools.json -msgctxt "ToDo" -msgid "ToDo" -msgstr "To Do" - -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "ToDo" -msgstr "To Do" - -#: public/js/frappe/form/controls/date.js:58 -#: public/js/frappe/views/calendar/calendar.js:267 +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 msgid "Today" msgstr "Hari ini" -#: public/js/frappe/ui/notifications/notifications.js:55 -msgid "Today's Events" -msgstr "Acara hari ini" - -#: public/js/frappe/views/reports/report_view.js:1495 +#: frappe/public/js/frappe/views/reports/report_view.js:1570 msgid "Toggle Chart" -msgstr "Toggle Chart" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "Toggle Full Width" msgstr "" -#: public/js/frappe/views/file/file_view.js:33 +#: frappe/public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" -msgstr "Toggle Grid View" +msgstr "" -#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195 -#: public/js/frappe/views/reports/report_view.js:1499 +#: frappe/public/js/frappe/ui/page.js:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1574 msgid "Toggle Sidebar" -msgstr "Toggle Sidebar" +msgstr "" -#: public/js/frappe/list/list_view.js:1681 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "Toggle Sidebar" +msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py +#: frappe/hooks.py msgid "Toggle Theme" msgstr "" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" +#: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" -msgstr "Token" +msgstr "" #. Name of a DocType -#: integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Cache" msgstr "" -#. Linked DocType in Connected App's connections -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" -msgid "Token Cache" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" msgstr "" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "Token Cache" -msgstr "" - -#. Label of a Data field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Token URI" msgstr "" -#: utils/oauth.py:184 +#: frappe/utils/oauth.py:184 msgid "Token is missing" msgstr "Token hilang" -#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253 +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "Besok" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:254 msgid "Too Many Documents" msgstr "" -#: rate_limiter.py:88 +#: frappe/rate_limiter.py:101 msgid "Too Many Requests" msgstr "Terlalu Banyak Permintaan" -#: database/database.py:387 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" -#: core/doctype/user/user.py:984 +#: frappe/utils/background_jobs.py:730 +msgid "Too many queued background jobs ({0}). Please retry after some time." +msgstr "" + +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Terlalu banyak pengguna mendaftar baru, sehingga pendaftaran dinonaktifkan. Silakan coba kembali dalam satu jam" #. Name of a Workspace #. Label of a Card Break in the Tools Workspace -#: automation/workspace/tools/tools.json +#: frappe/automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Alat-alat" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 msgid "Top" -msgstr "Puncak" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" #. Name of a DocType -#: website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Top Bar Item" msgstr "Top Bar Barang" -#. Label of a Table field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the top_bar_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Top Bar Items" -msgstr "Top Bar Items" +msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 msgid "Top Center" msgstr "" -#. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Top Center" +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 msgid "Top Left" msgstr "" -#: templates/emails/energy_points_summary.html:3 -msgid "Top Performer" -msgstr "Performa Top" - -#: templates/emails/energy_points_summary.html:18 -msgid "Top Reviewer" -msgstr "Peninjau Teratas" - #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "Top Right" -msgstr "" - #. Option for the 'Page Number' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 msgid "Top Right" msgstr "" -#: templates/emails/energy_points_summary.html:33 -msgid "Top {0}" -msgstr "Top {0}" - -#. Label of a Link field in DocType 'Discussion Reply' -#: website/doctype/discussion_reply/discussion_reply.json -msgctxt "Discussion Reply" +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Topic" -msgstr "Tema" +msgstr "" -#: desk/query_report.py:503 +#: frappe/desk/query_report.py:546 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 +#: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" -msgstr "Total" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Total Recipients" msgstr "" -#. Label of a Int field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" -msgid "Total Subscribers" -msgstr "Jumlah Pelanggan" - -#. Label of a Read Only field in DocType 'Newsletter Email Group' -#: email/doctype/newsletter_email_group/newsletter_email_group.json -msgctxt "Newsletter Email Group" -msgid "Total Subscribers" -msgstr "Jumlah Pelanggan" - -#. Label of a Int field in DocType 'Newsletter' -#: email/doctype/newsletter/newsletter.json -msgctxt "Newsletter" -msgid "Total Views" +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" msgstr "" -#. Label of a Duration field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "" + +#. Label of the total_working_time (Duration) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Total number of emails to sync in initial sync process " -msgstr "Total jumlah email yang disinkronisasi dalam proses sinkronisasi awal" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:1181 -#: public/js/frappe/views/reports/report_view.js:1477 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1256 msgid "Totals" msgstr "Total" -#: public/js/frappe/views/reports/report_view.js:1156 +#: frappe/public/js/frappe/views/reports/report_view.js:1231 msgid "Totals Row" msgstr "Total Row" -#. Label of a Data field in DocType 'Error Log' -#: core/doctype/error_log/error_log.json -msgctxt "Error Log" +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json msgid "Trace ID" msgstr "" -#. Label of a Code field in DocType 'Patch Log' -#: core/doctype/patch_log/patch_log.json -msgctxt "Patch Log" +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json msgid "Traceback" -msgstr "Melacak kembali" +msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Changes" -msgstr "Lacak Perubahan" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Track Changes" -msgstr "Lacak Perubahan" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the track_email_status (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Track Email Status" -msgstr "Lacak Status Email" +msgstr "" -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json msgid "Track Field" -msgstr "Lacak Bidang" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Track Seen" -msgstr "track Dilihat" +msgstr "" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Track Steps" msgstr "" -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the track_views (Check) field in DocType 'DocType' +#. Label of the track_views (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Track Views" -msgstr "Tampilan Track" - -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Track Views" -msgstr "Tampilan Track" +msgstr "" #. Description of the 'Track Email Status' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "" -"Track if your email has been opened by the recipient.\n" +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" "
\n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" msgstr "" -#: public/js/frappe/utils/utils.js:1744 +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of a Small Text field in DocType 'Transaction Log' -#: core/doctype/transaction_log/transaction_log.json -msgctxt "Transaction Log" +#. Label of the transaction_hash (Small Text) field in DocType 'Transaction +#. Log' +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Hash" -msgstr "Transaksi Hash" +msgstr "" #. Name of a DocType -#: core/doctype/transaction_log/transaction_log.json +#: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" msgstr "Log Transaksi" #. Name of a report -#: core/report/transaction_log_report/transaction_log_report.json +#: frappe/core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" msgstr "Laporan Log Transaksi" -#. Label of a Section Break field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Transition Rules" -msgstr "Aturan Transisi" +msgstr "" -#. Label of a Table field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "Transisi" +msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Translatable" -msgstr "Bisa diterjemahkan" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Translatable" -msgstr "Bisa diterjemahkan" +#: frappe/public/js/frappe/views/reports/query_report.js:2233 +msgid "Translate Data" +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Translatable" -msgstr "Bisa diterjemahkan" - -#. Label of a Check field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Translate Link Fields" msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Translate Link Fields" +#: frappe/public/js/frappe/views/reports/report_view.js:1656 +msgid "Translate values" msgstr "" -#: public/js/frappe/views/translation_manager.js:11 +#: frappe/public/js/frappe/views/translation_manager.js:11 msgid "Translate {0}" msgstr "Terjemahkan {0}" -#. Label of a Code field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "diterjemahkan Teks" +msgstr "" #. Name of a DocType -#: core/doctype/translation/translation.json +#: frappe/core/doctype/translation/translation.json msgid "Translation" msgstr "Terjemahan" -#: public/js/frappe/views/translation_manager.js:46 +#: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" msgstr "Terjemahan" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#: frappe/core/doctype/communication/communication.json msgid "Trash" -msgstr "Sampah" +msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "Tree" -msgstr "Pohon" - #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Tree" -msgstr "Pohon" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" #. Description of the 'Is Tree' (Check) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "Tree structures are implemented using Nested Set" -msgstr "Struktur pohon diimplementasikan menggunakan Nested Set" +msgstr "" -#: public/js/frappe/views/treeview.js:20 +#: frappe/public/js/frappe/views/treeview.js:19 msgid "Tree view is not available for {0}" msgstr "Tampilan pohon tidak tersedia untuk {0}" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Trigger Method" -msgstr "Metode pemicu" +msgstr "" -#: public/js/frappe/ui/keyboard.js:191 +#: frappe/public/js/frappe/ui/keyboard.js:196 msgid "Trigger Primary Action" -msgstr "Trigger Primary Action" +msgstr "" -#: tests/test_translate.py:55 +#: frappe/tests/test_translate.py:55 msgid "Trigger caching" msgstr "" #. Description of the 'Trigger Method' (Data) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" -msgstr "Memicu pada metode yang valid seperti \"before_insert\", \"after_update\", dll (tergantung pada DocType yang dipilih)" +msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:323 +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 msgid "Try Again" msgstr "" -#. Label of a Data field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" msgstr "" -#: utils/password_strength.py:108 +#: frappe/printing/page/print/print.js:189 +#: frappe/printing/page/print/print.js:195 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 msgid "Try to avoid repeated words and characters" msgstr "Cobalah untuk menghindari kata-kata berulang dan karakter" -#: utils/password_strength.py:100 +#: frappe/utils/password_strength.py:98 msgid "Try to use a longer keyboard pattern with more turns" msgstr "Cobalah untuk menggunakan pola keyboard yang lebih lama dengan lebih banyak berubah" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Tuesday" -msgstr "Selasa" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Tuesday" -msgstr "Selasa" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Tuesday" -msgstr "Selasa" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Tuesday" -msgstr "Selasa" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Tuesday" -msgstr "Selasa" +msgstr "" -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication" -msgstr "Dua faktor otentikasi" +msgstr "" -#. Label of a Section Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Two Factor Authentication" -msgstr "Dua faktor otentikasi" - -#. Label of a Select field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication method" -msgstr "Metode Two Factor Authentication" +msgstr "" -#. Label of a Select field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 msgid "Type" msgstr "Jenis" -#. Label of a Data field in DocType 'Console Log' -#: desk/doctype/console_log/console_log.json -msgctxt "Console Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Notification Log' -#: desk/doctype/notification_log/notification_log.json -msgctxt "Notification Log" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Web Template' -#: website/doctype/web_template/web_template.json -msgctxt "Web Template" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Workspace Link' -#: desk/doctype/workspace_link/workspace_link.json -msgctxt "Workspace Link" -msgid "Type" -msgstr "Jenis" - -#. Label of a Select field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" -msgid "Type" -msgstr "Jenis" - -#: public/js/frappe/form/controls/comment.js:78 +#: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" msgstr "" -#: templates/includes/search_template.html:51 +#: frappe/templates/includes/search_template.html:51 msgid "Type something in the search box to search" msgstr "Ketik sesuatu di kotak pencarian untuk mencari" -#: templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 msgid "Type title" msgstr "" -#: templates/discussions/discussions.js:341 +#: frappe/templates/discussions/discussions.js:341 msgid "Type your reply here..." msgstr "" -#: core/doctype/data_export/exporter.py:143 +#: frappe/core/doctype/data_export/exporter.py:143 msgid "Type:" msgstr "Jenis:" -#. Label of a Check field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "UI Tour" msgstr "" -#. Label of a Check field in DocType 'Form Tour Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" -msgid "UI Tour" +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" msgstr "" -#. Label of a Int field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "UID" -msgstr "UID" - -#. Label of a Data field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" -msgid "UID" -msgstr "UID" - -#. Label of a Data field in DocType 'Unhandled Email' -#: email/doctype/unhandled_email/unhandled_email.json -msgctxt "Unhandled Email" -msgid "UID" -msgstr "UID" - -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "UIDNEXT" +msgstr "" -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "UIDNEXT" -msgstr "UIDNEXT" - -#. Label of a Data field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" - -#. Label of a Data field in DocType 'IMAP Folder' -#: email/doctype/imap_folder/imap_folder.json -msgctxt "IMAP Folder" -msgid "UIDVALIDITY" -msgstr "UIDVALIDITY" +msgstr "" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "UNSEEN" -msgstr "TAK TERLIHAT" +msgstr "" #. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "" -"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" "
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" msgstr "" -#. Label of a Small Text field in DocType 'Integration Request' -#: integrations/doctype/integration_request/integration_request.json -msgctxt "Integration Request" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Top Bar Item' -#: website/doctype/top_bar_item/top_bar_item.json -msgctxt "Top Bar Item" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "URL" -msgstr "URL" - -#. Label of a Data field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "URL" -msgstr "URL" - +#. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' -#. Label of a Data field in DocType 'Workspace Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "URL" +msgstr "" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" -msgstr "URL untuk dokumentasi atau bantuan" +msgstr "" -#: core/doctype/file/file.py:216 +#: frappe/core/doctype/file/file.py:219 msgid "URL must start with http:// or https://" msgstr "" -#: website/doctype/web_page/web_page.js:84 +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL halaman" -#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' -#: website/doctype/website_slideshow_item/website_slideshow_item.json -msgctxt "Website Slideshow Item" -msgid "URL to go to on clicking the slideshow image" -msgstr "URL tujuan saat mengklik gambar slideshow" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.py:68 +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" msgstr "Tidak dapat menemukan DocType {0}" -#: public/js/frappe/ui/capture.js:330 +#: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." msgstr "Tidak dapat memuat kamera." -#: public/js/frappe/model/model.js:258 +#: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" msgstr "Tidak dapat beban: {0}" -#: utils/csvutils.py:35 +#: frappe/utils/csvutils.py:37 msgid "Unable to open attached file. Did you export it as CSV?" msgstr "Tidak dapat membuka file terlampir. Apakah Anda ekspor sebagai CSV?" -#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128 +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" msgstr "Tidak dapat membaca format file untuk {0}" -#: core/doctype/communication/email.py:173 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:439 +#: frappe/public/js/frappe/views/calendar/calendar.js:450 msgid "Unable to update event" msgstr "Tidak dapat memperbarui acara" -#: core/doctype/file/file.py:458 +#: frappe/core/doctype/file/file.py:464 msgid "Unable to write file format for {0}" msgstr "Tidak dapat menulis format file untuk {0}" -#. Label of a Code field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Unassign Condition" -msgstr "Kondisi tidak ditetapkan" +msgstr "" -#: www/error.py:15 -msgid "Uncaught Server Exception" -msgstr "Pengecualian Server Tidak Tertangkap" +#: frappe/app.py:396 +msgid "Uncaught Exception" +msgstr "" -#: public/js/frappe/form/toolbar.js:93 +#: frappe/public/js/frappe/form/toolbar.js:103 msgid "Unchanged" msgstr "Tidak berubah" -#: public/js/frappe/form/toolbar.js:450 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: public/js/frappe/form/toolbar.js:458 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar.js:232 +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Berhenti mengikuti" #. Name of a DocType -#: email/doctype/unhandled_email/unhandled_email.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" msgstr "Email Tak Tertangani" -#: public/js/frappe/views/workspace/workspace.js:556 -msgid "Unhide Workspace" +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" msgstr "" -#. Label of a Check field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Unique" -msgstr "Unik" +msgstr "" -#. Label of a Check field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Unique" -msgstr "Unik" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Unique" -msgstr "Unik" +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "tidak diketahui" -#: public/js/frappe/model/model.js:199 +#: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" msgstr "Kolom diketahui: {0}" -#: utils/data.py:1215 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" -#: auth.py:299 +#: frappe/auth.py:316 msgid "Unknown User" msgstr "Pengguna tidak dikenal" -#: utils/csvutils.py:52 -msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252." -msgstr "Diketahui encoding berkas. Mencoba utf-8, windows-1250, windows-1252." +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" -#: core/doctype/submission_queue/submission_queue.js:7 +#: frappe/core/doctype/submission_queue/submission_queue.js:7 msgid "Unlock Reference Document" msgstr "" -#: website/doctype/blog_post/blog_post.js:36 -#: website/doctype/web_form/web_form.js:77 +#: frappe/public/js/frappe/form/footer/form_timeline.js:632 +#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' -#: email/doctype/email_flag_queue/email_flag_queue.json -msgctxt "Email Flag Queue" +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Unread" -msgstr "belum dibaca" +msgstr "" -#. Label of a Check field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "Unread Notification Sent" -msgstr "Pemberitahuan belum dibaca Sent" +msgstr "" -#: utils/safe_exec.py:438 +#: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" msgstr "" +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#: frappe/core/doctype/comment/comment.json msgid "Unshared" -msgstr "unshared" +msgstr "" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Unshared" -msgstr "unshared" - -#: email/queue.py:68 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Berhenti berlangganan" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json msgid "Unsubscribe Method" -msgstr "Metode berhenti berlangganan" +msgstr "" -#. Label of a Data field in DocType 'Email Queue' -#: email/doctype/email_queue/email_queue.json -msgctxt "Email Queue" -msgid "Unsubscribe Param" -msgstr "Unsubscribe Param" +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" -#: email/queue.py:126 +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Berhenti berlangganan" -#. Label of a Check field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" -#. Label of a Check field in DocType 'Email Group Member' -#: email/doctype/email_group_member/email_group_member.json -msgctxt "Email Group Member" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" - -#. Label of a Check field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Unsubscribed" -msgstr "Berhenti berlangganan" - -#: public/js/frappe/data_import/import_preview.js:72 +#: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Kolom Tanpa Judul" -#: core/doctype/file/file.js:28 +#: frappe/core/doctype/file/file.js:38 msgid "Unzip" msgstr "membuka ritsleting" -#: public/js/frappe/views/file/file_view.js:132 +#: frappe/public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" msgstr "Buka file {0}" -#: public/js/frappe/views/file/file_view.js:125 +#: frappe/public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." msgstr "Membuka ritsleting file ..." -#: desk/doctype/event/event.py:258 +#: frappe/desk/doctype/event/event.py:269 msgid "Upcoming Events for Today" msgstr "Acara Mendatang untuk Hari Ini" -#: core/doctype/data_import/data_import_list.js:40 -#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 -#: custom/doctype/customize_form/customize_form.js:370 -#: desk/doctype/bulk_update/bulk_update.js:15 -#: printing/page/print_format_builder/print_format_builder.js:447 -#: printing/page/print_format_builder/print_format_builder.js:501 -#: printing/page/print_format_builder/print_format_builder.js:670 -#: printing/page/print_format_builder/print_format_builder.js:757 -#: public/js/frappe/form/grid_row.js:402 -#: public/js/frappe/views/workspace/workspace.js:647 +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" msgstr "Perbaruan" -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" -msgid "Update" -msgstr "Perbaruan" - -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:596 -msgid "Update Details" -msgstr "Perbarui Rincian" - #. Option for the 'Import Type' (Select) field in DocType 'Data Import' -#: core/doctype/data_import/data_import.json -msgctxt "Data Import" +#: frappe/core/doctype/data_import/data_import.json msgid "Update Existing Records" -msgstr "Perbarui Catatan yang Ada" +msgstr "" -#. Label of a Select field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Field" -msgstr "Perbarui Kolom" +msgstr "" -#: core/doctype/installed_applications/installed_applications.js:6 -#: core/doctype/installed_applications/installed_applications.js:13 +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 msgid "Update Hooks Resolution Order" msgstr "" -#: core/doctype/installed_applications/installed_applications.js:45 +#: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" msgstr "" -#. Label of a Section Break field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" msgstr "" -#. Label of a Button field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "Perbarui Nomor Seri" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Update Settings" -msgstr "Perbarui Pengaturan" +msgstr "" -#: public/js/frappe/views/translation_manager.js:13 +#: frappe/public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" msgstr "Perbarui Terjemahan" -#. Label of a Small Text field in DocType 'Bulk Update' -#: desk/doctype/bulk_update/bulk_update.json -msgctxt "Bulk Update" +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Value" -msgstr "Perbarui Nilai" +msgstr "" -#. Label of a Data field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" -msgid "Update Value" -msgstr "Perbarui Nilai" +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" -#: public/js/frappe/list/bulk_operations.js:310 +#: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" msgstr "" -#: desk/doctype/desktop_icon/desktop_icon.py:452 -#: public/js/frappe/web_form/web_form.js:423 -msgid "Updated" -msgstr "Diperbarui" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:427 msgid "Updated" msgstr "Diperbarui" -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Updated" -msgstr "Diperbarui" - -#: desk/doctype/bulk_update/bulk_update.js:32 +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 msgid "Updated Successfully" msgstr "Berhasil Diperbarui" -#: public/js/frappe/desk.js:420 +#: frappe/public/js/frappe/desk.js:452 msgid "Updated To A New Version 🎉" msgstr "Diperbarui Ke Versi Baru 🎉" -#: public/js/frappe/list/bulk_operations.js:307 +#: frappe/public/js/frappe/list/bulk_operations.js:372 msgid "Updated successfully" msgstr "Berhasil diperbarui" -#. Label of a Tab Break field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Updates" -msgstr "" - -#: utils/response.py:320 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Memperbarui" -#: public/js/frappe/form/save.js:11 +#: frappe/public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" msgid "Updating" msgstr "Memperbarui" -#: email/doctype/email_queue/email_queue.py:406 +#: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." msgstr "" -#: core/doctype/document_naming_rule/document_naming_rule.js:17 +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" msgstr "" -#: desk/page/setup_wizard/setup_wizard.py:23 +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" msgstr "" -#: core/doctype/document_naming_settings/document_naming_settings.js:59 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" msgstr "" -#: public/js/frappe/form/toolbar.js:126 +#: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." msgstr "" -#: desk/doctype/bulk_update/bulk_update.py:98 +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" msgstr "Memperbarui {0}" -#: core/doctype/data_import/data_import.js:36 +#: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" msgstr "Memperbarui {0} dari {1}, {2}" -#: public/js/frappe/file_uploader/file_uploader.bundle.js:121 -#: public/js/frappe/file_uploader/file_uploader.bundle.js:122 +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" msgstr "Mengunggah" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" -msgid "Uploaded To Dropbox" -msgstr "Diunggah Ke Dropbox" +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" -#. Label of a Check field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "Uploaded To Google Drive" -msgstr "Diunggah ke Google Drive" +msgstr "" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' -#: desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json #, python-format -msgctxt "Onboarding Step" msgid "Use % for any non empty value." msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "Gunakan pengkodean ASCII untuk kata sandi" +msgstr "" -#. Label of a Check field in DocType 'Email Template' -#: email/doctype/email_template/email_template.json -msgctxt "Email Template" +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use IMAP" -msgstr "Gunakan IMAP" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use IMAP" -msgstr "Gunakan IMAP" +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" -#. Label of a Check field in DocType 'SMS Settings' -#: core/doctype/sms_settings/sms_settings.json -msgctxt "SMS Settings" +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json msgid "Use POST" -msgstr "Gunakan POST" +msgstr "" -#. Label of a Check field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Use Report Chart" -msgstr "Gunakan Diagram Laporan" +msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use SSL" -msgstr "Gunakan SSL" +msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use SSL" -msgstr "Gunakan SSL" - -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" msgstr "" -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use STARTTLS" +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" msgstr "" -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "Use TLS" -msgstr "Gunakan TLS" - -#. Label of a Check field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" -msgid "Use TLS" -msgstr "Gunakan TLS" - -#: utils/password_strength.py:44 +#: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." msgstr "Gunakan beberapa kata, hindari frasa umum." -#. Label of a Check field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "Use different Email ID" msgstr "" -#: model/db_query.py:434 +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:435 msgid "Use of function {0} in field is restricted" msgstr "" -#: model/db_query.py:413 +#: frappe/model/db_query.py:412 msgid "Use of sub-query or function is restricted" msgstr "Penggunaan sub-query atau fungsi dibatasi" -#: printing/page/print/print.js:272 +#: frappe/printing/page/print/print.js:279 msgid "Use the new Print Format Builder" msgstr "" #. Description of the 'Title Field' (Data) field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Use this fieldname to generate title" -msgstr "Gunakan fieldname ini untuk menghasilkan judul" +msgstr "" -#. Label of a Check field in DocType 'User Email' -#: core/doctype/user_email/user_email.json -msgctxt "User Email" +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" msgstr "" +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType -#: core/doctype/user/user.json -#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 -#: desk/page/user_profile/user_profile_controller.js:65 -#: templates/emails/energy_points_summary.html:38 -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Activity Log' -#: core/doctype/activity_log/activity_log.json -msgctxt "Activity Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Assignment Rule User' -#: automation/doctype/assignment_rule_user/assignment_rule_user.json -msgctxt "Assignment Rule User" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Dashboard Settings' -#: desk/doctype/dashboard_settings/dashboard_settings.json -msgctxt "Dashboard Settings" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Document Follow' -#: email/doctype/document_follow/document_follow.json -msgctxt "Document Follow" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Energy Point Log' -#: social/doctype/energy_point_log/energy_point_log.json -msgctxt "Energy Point Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Google Calendar' -#: integrations/doctype/google_calendar/google_calendar.json -msgctxt "Google Calendar" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Log Setting User' -#: core/doctype/log_setting_user/log_setting_user.json -msgctxt "Log Setting User" -msgid "User" -msgstr "Pengguna" - -#. Linked DocType in Module Profile's connections -#: core/doctype/module_profile/module_profile.json -msgctxt "Module Profile" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Note Seen By' -#: desk/doctype/note_seen_by/note_seen_by.json -msgctxt "Note Seen By" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Notification Settings' -#: desk/doctype/notification_settings/notification_settings.json -msgctxt "Notification Settings" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Bearer Token' -#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -msgctxt "OAuth Bearer Token" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'OAuth Client' -#: integrations/doctype/oauth_client/oauth_client.json -msgctxt "OAuth Client" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Permission Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "User" -msgstr "pengguna" - -#. Label of a Link field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" -msgid "User" -msgstr "Pengguna" - -#. Linked DocType in Role Profile's connections -#: core/doctype/role_profile/role_profile.json -msgctxt "Role Profile" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Route History' -#: desk/doctype/route_history/route_history.json -msgctxt "Route History" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Token Cache' -#: integrations/doctype/token_cache/token_cache.json -msgctxt "Token Cache" -msgid "User" -msgstr "Pengguna" - +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User Permission' #. Label of a Link in the Users Workspace #. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User" +#. Label of the user (Link) field in DocType 'Dashboard Settings' +#. Label of the user (Link) field in DocType 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Blogger' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Pengguna" -#. Label of a Link field in DocType 'User Group Member' -#: core/doctype/user_group_member/user_group_member.json -msgctxt "User Group Member" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'User Permission' -#: core/doctype/user_permission/user_permission.json -msgctxt "User Permission" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "User" -msgstr "Pengguna" - -#. Label of a Link field in DocType 'Access Log' -#: core/doctype/access_log/access_log.json -msgctxt "Access Log" +#. Label of the user (Link) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json msgid "User " -msgstr "Pengguna" +msgstr "" -#: core/doctype/has_role/has_role.py:24 +#: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Pengguna {0} 'sudah memiliki peran' {1} '" #. Name of a DocType -#: core/doctype/report/user_activity_report.json +#: frappe/core/doctype/report/user_activity_report.json msgid "User Activity Report" msgstr "" #. Name of a DocType -#: core/doctype/report/user_activity_report_without_sort.json +#: frappe/core/doctype/report/user_activity_report_without_sort.json msgid "User Activity Report Without Sort" msgstr "" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "User Agent" -msgstr "Agen pengguna" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Create" -msgstr "Pengguna Tidak dapat Buat" +msgstr "" -#. Label of a Check field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Search" -msgstr "Pengguna tidak bisa Cari" +msgstr "" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#: frappe/public/js/frappe/desk.js:556 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "Default Pengguna" +msgstr "" -#. Label of a Tab Break field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Details" msgstr "" +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + #. Name of a DocType -#: core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "User Document Type" msgstr "" -#: core/doctype/user_type/user_type.py:97 +#: frappe/core/doctype/user_type/user_type.py:98 msgid "User Document Types Limit Exceeded" msgstr "" #. Name of a DocType -#: core/doctype/user_email/user_email.json +#: frappe/core/doctype/user_email/user_email.json msgid "User Email" msgstr "Email Pengguna" -#. Label of a Table field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Emails" -msgstr "Email Pengguna" - -#. Label of a Select field in DocType 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "User Field" -msgstr "Bidang Pengguna" +msgstr "" #. Name of a DocType -#: core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_group/user_group.json msgid "User Group" msgstr "" #. Name of a DocType -#: core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_group_member/user_group_member.json msgid "User Group Member" msgstr "" -#. Label of a Table MultiSelect field in DocType 'User Group' -#: core/doctype/user_group/user_group.json -msgctxt "User Group" +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json msgid "User Group Members" msgstr "" -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json msgid "User ID" -msgstr "ID Pengguna" +msgstr "" -#. Label of a Data field in DocType 'Social Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "User ID Property" -msgstr "Properti ID Pengguna" +msgstr "" -#. Label of a Link field in DocType 'Contact' -#: contacts/doctype/contact/contact.json -msgctxt "Contact" +#. Description of a DocType +#: frappe/website/doctype/blogger/blogger.json +msgid "User ID of a Blogger" +msgstr "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json msgid "User Id" -msgstr "Identitas pengguna" +msgstr "" -#. Label of a Select field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json msgid "User Id Field" msgstr "" -#: core/doctype/user_type/user_type.py:287 +#: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" msgstr "" -#. Label of a Attach Image field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "User Image" -msgstr "KOSONG" +msgstr "" -#. Label of a Data field in DocType 'Personal Data Download Request' -#: website/doctype/personal_data_download_request/personal_data_download_request.json -msgctxt "Personal Data Download Request" +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "User Name" -msgstr "Nama pengguna" +msgstr "" #. Name of a DocType -#: core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" msgstr "Pengguna Izin" -#. Linked DocType in User's connections -#: core/doctype/user/user.json -msgctxt "User" -msgid "User Permission" -msgstr "Pengguna Izin" - -#: public/js/frappe/views/reports/query_report.js:1772 -#: public/js/frappe/views/reports/report_view.js:1657 +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1933 +#: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Permissions Pengguna" -#: public/js/frappe/list/list_view.js:1639 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permissions Pengguna" -#. Label of a Link in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User Permission" -msgid "User Permissions" -msgstr "Permissions Pengguna" +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" -#: core/doctype/user_permission/user_permission_list.js:124 -msgid "User Permissions created sucessfully" -msgstr "Izin Pengguna dibuat dengan sukses" +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" -#. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgid "User Profile" -msgstr "Profil pengguna" - -#. Label of a Link field in DocType 'LDAP Group Mapping' -#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json -msgctxt "LDAP Group Mapping" +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" #. Name of a DocType -#: core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" msgstr "" +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + #. Name of a DocType -#: core/doctype/user_social_login/user_social_login.json +#: frappe/core/doctype/user_social_login/user_social_login.json msgid "User Social Login" msgstr "Login Sosial Pengguna" -#. Label of a Data field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json msgid "User Tags" -msgstr "Pengguna Tags" - -#. Name of a DocType -#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82 -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Label of a Link field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Label of a shortcut in the Users Workspace -#: core/workspace/users/users.json -msgctxt "User Type" -msgid "User Type" -msgstr "Tipe Pengguna" - -#. Name of a DocType -#: core/doctype/user_type_module/user_type_module.json -msgid "User Type Module" msgstr "" -#. Label of a Table field in DocType 'User Type' -#: core/doctype/user_type/user_type.json -msgctxt "User Type" +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "Tipe Pengguna" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json msgid "User Type Module" msgstr "" #. Description of the 'Allow Login using Mobile Number' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or Mobile number" -msgstr "Pengguna dapat login menggunakan id email atau nomor ponsel" +msgstr "" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or User Name" -msgstr "Pengguna bisa login menggunakan ID Email atau User Name" +msgstr "" -#: desk/page/user_profile/user_profile_controller.js:26 -msgid "User does not exist" -msgstr "pengguna tidak ada" +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" -#: core/doctype/user_type/user_type.py:82 +#: frappe/core/doctype/user_type/user_type.py:83 msgid "User does not have permission to create the new {0}" msgstr "" -#: core/doctype/docshare/docshare.py:55 +#: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Pengguna wajib untuk Berbagi" -#. Label of a Check field in DocType 'Document Naming Settings' -#: core/doctype/document_naming_settings/document_naming_settings.json -msgctxt "Document Naming Settings" +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "User must always select" -msgstr "Pengguna harus selalu pilih" +msgstr "" -#: model/delete_doc.py:224 -msgid "User not allowed to delete {0}: {1}" -msgstr "Pengguna tidak diperbolehkan untuk menghapus {0}: {1}" - -#: core/doctype/user_permission/user_permission.py:59 +#: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" msgstr "Izin pengguna sudah ada" -#: www/login.py:153 +#: frappe/www/login.py:171 msgid "User with email address {0} does not exist" msgstr "" -#: integrations/doctype/ldap_settings/ldap_settings.py:224 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: core/doctype/user/user.py:504 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Pengguna {0} tidak dapat dihapus" -#: core/doctype/user/user.py:242 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Pengguna {0} tidak dapat dinonaktifkan" -#: core/doctype/user/user.py:564 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Pengguna {0} tidak dapat diganti" -#: permissions.py:139 +#: frappe/permissions.py:139 msgid "User {0} does not have access to this document" msgstr "Pengguna {0} tidak memiliki akses ke dokumen ini" -#: permissions.py:162 +#: frappe/permissions.py:162 msgid "User {0} does not have doctype access via role permission for document {1}" msgstr "Pengguna {0} tidak memiliki akses doctype melalui izin peran untuk dokumen {1}" -#: templates/emails/data_deletion_approval.html:1 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108 +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 msgid "User {0} has requested for data deletion" msgstr "Pengguna {0} telah meminta penghapusan data" -#: utils/oauth.py:272 +#: frappe/core/doctype/user/user.py:1375 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 msgid "User {0} is disabled" msgstr "Pengguna {0} dinonaktifkan" -#: desk/form/assign_to.py:101 +#: frappe/sessions.py:242 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 msgid "User {0} is not permitted to access this document." msgstr "" -#. Label of a Data field in DocType 'Connected App' -#: integrations/doctype/connected_app/connected_app.json -msgctxt "Connected App" +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json msgid "Userinfo URI" msgstr "" -#: www/login.py:99 +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 msgid "Username" msgstr "Nama pengguna" -#. Label of a Data field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" -msgid "Username" -msgstr "Nama pengguna" - -#. Label of a Data field in DocType 'User Social Login' -#: core/doctype/user_social_login/user_social_login.json -msgctxt "User Social Login" -msgid "Username" -msgstr "Nama pengguna" - -#: core/doctype/user/user.py:644 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Nama pengguna {0} sudah ada" +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' #. Name of a Workspace #. Label of a Card Break in the Users Workspace -#: core/workspace/users/users.json +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Users" msgstr "Pengguna" -#. Label of a Table MultiSelect field in DocType 'Assignment Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" -msgid "Users" -msgstr "Pengguna" +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" -#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType -#. 'Energy Point Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Users assigned to the reference document will get points." -msgstr "Pengguna yang ditugaskan ke dokumen referensi akan mendapatkan poin." - -#: core/page/permission_manager/permission_manager.js:345 +#: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" msgstr "Pengguna dengan peran {0}:" -#: public/js/frappe/ui/theme_switcher.js:70 +#: frappe/public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" msgstr "" -#: public/js/frappe/desk.js:112 +#: frappe/public/js/frappe/desk.js:154 msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." msgstr "Menggunakan konsol ini dapat memungkinkan penyerang meniru identitas Anda dan mencuri informasi Anda. Jangan masukkan atau tempel kode yang tidak Anda mengerti." -#. Label of a Percent field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Utilization %" msgstr "" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Valid" -msgstr "Sah" +msgstr "" -#. Label of a Check field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Validate Field" -msgstr "Validasi Field" +msgstr "" -#: public/js/frappe/web_form/web_form.js:356 +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:360 msgid "Validation Error" msgstr "Kesalahan Validasi" -#. Label of a Select field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Validity" -msgstr "Keabsahan" +msgstr "" -#: email/doctype/auto_email_report/auto_email_report.js:92 -#: public/js/frappe/list/bulk_operations.js:271 -#: public/js/frappe/list/bulk_operations.js:333 +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:205 +#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Value" msgstr "Nilai" -#. Label of a Text field in DocType 'DefaultValue' -#: core/doctype/defaultvalue/defaultvalue.json -msgctxt "DefaultValue" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Document Naming Rule Condition' -#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json -msgctxt "Document Naming Rule Condition" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Milestone' -#: automation/doctype/milestone/milestone.json -msgctxt "Milestone" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'Query Parameters' -#: integrations/doctype/query_parameters/query_parameters.json -msgctxt "Query Parameters" -msgid "Value" -msgstr "Nilai" - -#. Label of a Data field in DocType 'SMS Parameter' -#: core/doctype/sms_parameter/sms_parameter.json -msgctxt "SMS Parameter" -msgid "Value" -msgstr "Nilai" - -#. Label of a Small Text field in DocType 'Webhook Header' -#: integrations/doctype/webhook_header/webhook_header.json -msgctxt "Webhook Header" -msgid "Value" -msgstr "Nilai" - -#. Label of a Text field in DocType 'Website Meta Tag' -#: website/doctype/website_meta_tag/website_meta_tag.json -msgctxt "Website Meta Tag" -msgid "Value" -msgstr "Nilai" - -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Value Based On" -msgstr "Nilai Berdasarkan" - -#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point -#. Rule' -#: social/doctype/energy_point_rule/energy_point_rule.json -msgctxt "Energy Point Rule" -msgid "Value Change" -msgstr "Nilai Perubahan" +msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#: frappe/email/doctype/notification/notification.json msgid "Value Change" -msgstr "Nilai Perubahan" +msgstr "" -#. Label of a Select field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Value Changed" -msgstr "Nilai Berubah" +msgstr "" -#. Label of a Data field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "Value To Be Set" -msgstr "Nilai yang Akan Ditetapkan" +msgstr "" -#: model/base_document.py:930 model/document.py:648 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Nilai tidak dapat diubah untuk {0}" -#: model/document.py:593 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Nilai tidak boleh negatif untuk" -#: model/document.py:597 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Nilai tidak boleh negatif untuk {0}: {1}" -#: custom/doctype/property_setter/property_setter.js:7 +#: frappe/custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1" -#: custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:611 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Nilai untuk bidang {0} terlalu panjang di {1}. Panjang harus kurang dari {2} karakter" -#: model/base_document.py:360 +#: frappe/model/base_document.py:445 msgid "Value for {0} cannot be a list" msgstr "Nilai untuk {0} tidak bisa daftar" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' -#: automation/doctype/assignment_rule/assignment_rule.json -msgctxt "Assignment Rule" +#: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Value from this field will be set as the due date in the ToDo" -msgstr "Nilai dari bidang ini akan ditetapkan sebagai tanggal jatuh tempo di ToDo" +msgstr "" -#: model/base_document.py:712 -msgid "Value missing for" -msgstr "Nilai hilang untuk" - -#: core/doctype/data_import/importer.py:698 +#: frappe/core/doctype/data_import/importer.py:714 msgid "Value must be one of {0}" msgstr "Nilai harus salah satu dari {0}" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Value to Validate" -msgstr "Nilai untuk Divalidasi" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" -#: model/base_document.py:997 +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1124 msgid "Value too big" msgstr "Nilai terlalu besar" -#: core/doctype/data_import/importer.py:711 +#: frappe/core/doctype/data_import/importer.py:727 msgid "Value {0} missing for {1}" msgstr "Nilai {0} hilang untuk {1}" -#: core/doctype/data_import/importer.py:742 utils/data.py:877 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Nilai {0} harus dalam format durasi yang valid: dhms" -#: core/doctype/data_import/importer.py:729 +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 msgid "Value {0} must in {1} format" msgstr "Nilai {0} harus dalam format {1}" +#: frappe/core/doctype/version/version_view.html:8 +msgid "Values Changed" +msgstr "Nilai Berubah" + #. Option for the 'Font' (Select) field in DocType 'Print Settings' -#: printing/doctype/print_settings/print_settings.json -msgctxt "Print Settings" +#: frappe/printing/doctype/print_settings/print_settings.json msgid "Verdana" -msgstr "Verdana" +msgstr "" -#: twofactor.py:362 -msgid "Verfication Code" -msgstr "Kode Verifikasi" +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" -#: templates/emails/delete_data_confirmation.html:10 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 msgid "Verification Link" msgstr "Tautan verifikasi" -#: twofactor.py:251 +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." msgstr "Kode verifikasi telah dikirim ke alamat email Anda yang terdaftar." #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' -#: core/doctype/translation/translation.json -msgctxt "Translation" +#: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "Diverifikasi" +msgstr "" -#: public/js/frappe/ui/messages.js:352 +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 msgid "Verify" msgstr "Memeriksa" -#: public/js/frappe/ui/messages.js:351 +#: frappe/public/js/frappe/ui/messages.js:358 msgid "Verify Password" msgstr "Verifikasi Kata Sandi" +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + #. Name of a DocType -#: core/doctype/version/version.json +#: frappe/core/doctype/version/version.json msgid "Version" msgstr "Versi" -#: public/js/frappe/desk.js:131 +#: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" msgstr "Versi Diperbarui" -#. Label of a Data field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Video URL" -msgstr "URL Video" - -#. Label of a Select field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" -msgid "View" msgstr "" -#: core/doctype/success_action/success_action.js:58 -#: public/js/frappe/form/success_action.js:89 +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "Melihat" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 msgid "View All" msgstr "Lihat semua" -#: public/js/frappe/form/toolbar.js:507 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" -#: templates/includes/likes/likes.py:34 +#: frappe/templates/includes/likes/likes.py:34 msgid "View Blog Post" msgstr "" -#: templates/includes/comments/comments.py:58 +#: frappe/templates/includes/comments/comments.py:56 msgid "View Comment" msgstr "Lihat Komentar" -#: public/js/frappe/views/treeview.js:467 +#: frappe/core/doctype/user/user.js:151 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Lihat Daftar" #. Name of a DocType -#: core/doctype/view_log/view_log.json +#: frappe/core/doctype/view_log/view_log.json msgid "View Log" msgstr "Melihat log" -#: core/doctype/user/user.js:133 -#: core/doctype/user_permission/user_permission.js:24 +#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Lihat Dokumen yang Diizinkan" -#. Label of a Button field in DocType 'Notification' -#: email/doctype/notification/notification.json -msgctxt "Notification" +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json msgid "View Properties (via Customize Form)" -msgstr "Listing (melalui Customize Form)" - -#: social/doctype/energy_point_log/energy_point_log_list.js:20 -msgid "View Ref" -msgstr "Lihat referensi" +msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" +#: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "View Report" -msgstr "Melihat laporan" +msgstr "" -#. Label of a Section Break field in DocType 'Customize Form' -#: custom/doctype/customize_form/customize_form.json -msgctxt "Customize Form" +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "View Settings" -msgstr "Lihat Pengaturan" +msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "View Settings" -msgstr "Lihat Pengaturan" - -#. Label of a Check field in DocType 'Role' -#: core/doctype/role/role.json -msgctxt "Role" +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json msgid "View Switcher" msgstr "" #. Label of a standard navbar item #. Type: Action -#: hooks.py website/doctype/website_settings/website_settings.js:16 +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 msgid "View Website" msgstr "Lihat Situs Web" -#: www/confirm_workflow_action.html:12 +#: frappe/www/confirm_workflow_action.html:12 msgid "View document" msgstr "Lihat dokumen" -#: core/doctype/file/file.js:31 -msgid "View file" -msgstr "" - -#: templates/emails/auto_email_report.html:60 +#: frappe/templates/emails/auto_email_report.html:60 msgid "View report in your browser" msgstr "Lihat laporan di browser Anda" -#: templates/emails/print_link.html:2 +#: frappe/templates/emails/print_link.html:2 msgid "View this in your browser" msgstr "Lihat ini dalam browser Anda" -#: automation/doctype/auto_repeat/auto_repeat.js:43 -#: desk/doctype/calendar_view/calendar_view_list.js:10 -#: desk/doctype/dashboard/dashboard_list.js:10 +#: frappe/public/js/frappe/web_form/web_form.js:454 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" msgstr "Lihat {0}" -#. Label of a Data field in DocType 'View Log' -#: core/doctype/view_log/view_log.json -msgctxt "View Log" +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json msgid "Viewed By" -msgstr "Dilihat oleh" - -#. Label of a Card Break in the Build Workspace -#: core/workspace/build/build.json -msgid "Views" msgstr "" #. Group in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "Tampilan" -#. Label of a Check field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Virtual" msgstr "" -#: model/virtual_doctype.py:78 +#: frappe/model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" msgstr "" -#: model/virtual_doctype.py:91 +#: frappe/model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" msgstr "" -#. Label of a Section Break field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json msgid "Visibility" msgstr "" -#. Option for the 'Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Visit" -msgstr "Kunjungan" +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" -#: website/doctype/website_route_meta/website_route_meta.js:7 +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" msgstr "Kunjungi Halaman Web" -#. Label of a Data field in DocType 'Web Page View' -#: website/doctype/web_page_view/web_page_view.json -msgctxt "Web Page View" +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Visitor ID" msgstr "" -#: templates/discussions/reply_section.html:38 +#: frappe/templates/discussions/reply_section.html:39 msgid "Want to discuss?" msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' -#: contacts/doctype/address/address.json -msgctxt "Address" +#: frappe/contacts/doctype/address/address.json msgid "Warehouse" msgstr "Gudang" #. Option for the 'Style' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Peringatan" -#: public/js/frappe/model/meta.js:179 +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1125 +msgid "Warning: Naming is not set" +msgstr "" + +#: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" msgstr "Peringatan: Tidak dapat menemukan {0} dalam tabel mana pun yang terkait dengan {1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' -#: core/doctype/document_naming_rule/document_naming_rule.json -msgctxt "Document Naming Rule" +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" msgstr "" -#: website/doctype/help_article/templates/help_article.html:24 +#: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" msgstr "Apakah artikel ini berguna?" -#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' -#: desk/doctype/onboarding_step/onboarding_step.json -msgctxt "Onboarding Step" -msgid "Watch Video" -msgstr "Menonton video" +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" -#: desk/doctype/workspace/workspace.js:38 +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" msgstr "" -#: templates/emails/delete_data_confirmation.html:2 +#: frappe/templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" msgstr "Kami telah menerima permintaan penghapusan {0} data yang terkait dengan: {1}" -#: templates/emails/download_data.html:2 +#: frappe/templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" msgstr "Kami telah menerima permintaan dari Anda untuk mengunduh {0} data Anda yang terkait dengan: {1}" -#: public/js/frappe/form/controls/password.js:88 +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 msgid "Weak" msgstr "" #. Name of a DocType -#: website/doctype/web_form/web_form.json -msgid "Web Form" -msgstr "Formulir web" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Web Form" -msgstr "Formulir web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Form" -msgstr "Formulir web" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Web Form" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json msgid "Web Form" msgstr "Formulir web" #. Name of a DocType -#: website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json msgid "Web Form Field" msgstr "Formulir web Lapangan" -#. Label of a Table field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json msgid "Web Form Fields" -msgstr "Formulir web Fields" +msgstr "" #. Name of a DocType -#: website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Web Form List Column" msgstr "" #. Name of a DocType -#: website/doctype/web_page/web_page.json -msgid "Web Page" -msgstr "Halaman web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Page" -msgstr "Halaman web" - #. Label of a Link in the Website Workspace #. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Web Page" +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json msgid "Web Page" msgstr "Halaman web" #. Name of a DocType -#: website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" msgstr "Blok Halaman Web" -#: public/js/frappe/utils/utils.js:1697 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" #. Name of a DocType -#: website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_page_view/web_page_view.json msgid "Web Page View" msgstr "Tampilan Halaman Web" #. Label of a Card Break in the Website Workspace -#: website/workspace/website/website.json +#: frappe/website/workspace/website/website.json msgid "Web Site" msgstr "Situs web" +#. Label of the web_template (Link) field in DocType 'Web Page Block' #. Name of a DocType -#: website/doctype/web_template/web_template.json -msgid "Web Template" -msgstr "Template Web" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Web Template" -msgstr "Template Web" - -#. Label of a Link field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json msgid "Web Template" msgstr "Template Web" #. Name of a DocType -#: website/doctype/web_template_field/web_template_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json msgid "Web Template Field" msgstr "Bidang Template Web" -#. Label of a Code field in DocType 'Web Page Block' -#: website/doctype/web_page_block/web_page_block.json -msgctxt "Web Page Block" +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Template Values" -msgstr "Nilai Template Web" +msgstr "" -#: utils/jinja_globals.py:48 +#: frappe/utils/jinja_globals.py:48 msgid "Web Template is not specified" msgstr "" -#. Label of a Section Break field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Web View" -msgstr "web View" +msgstr "" #. Name of a DocType -#: integrations/doctype/webhook/webhook.json -msgid "Webhook" -msgstr "Webhook" - -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Webhook" -msgstr "Webhook" - +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace -#: integrations/workspace/integrations/integrations.json -msgctxt "Webhook" +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json msgid "Webhook" -msgstr "Webhook" - -#. Label of a Link field in DocType 'Webhook Request Log' -#: integrations/doctype/webhook_request_log/webhook_request_log.json -msgctxt "Webhook Request Log" -msgid "Webhook" -msgstr "Webhook" +msgstr "" +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' #. Name of a DocType -#: integrations/doctype/webhook_data/webhook_data.json -msgid "Webhook Data" -msgstr "Data Webhook" - -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json msgid "Webhook Data" msgstr "Data Webhook" #. Name of a DocType -#: integrations/doctype/webhook_header/webhook_header.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" msgstr "Header Webhook" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Headers" -msgstr "Header Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Request" -msgstr "Permintaan Webhook" +msgstr "" +#. Label of a Link in the Build Workspace #. Name of a DocType -#: integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" msgstr "" -#. Linked DocType in Webhook's connections -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" -msgid "Webhook Request Log" -msgstr "" - -#. Label of a Password field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Secret" -msgstr "Rahasia Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Security" -msgstr "Keamanan Webhook" +msgstr "" -#. Label of a Section Break field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "Webhook Trigger" +msgstr "" -#. Label of a Data field in DocType 'Slack Webhook URL' -#: integrations/doctype/slack_webhook_url/slack_webhook_url.json -msgctxt "Slack Webhook URL" +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Webhook URL" -msgstr "URL Webhook" - -#. Name of a Workspace -#: email/doctype/newsletter/newsletter.py:451 -#: website/workspace/website/website.json -msgid "Website" -msgstr "Situs Web" +msgstr "" #. Group in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/website/workspace/website/website.json msgid "Website" msgstr "Situs Web" #. Name of a report -#: website/report/website_analytics/website_analytics.json +#: frappe/website/report/website_analytics/website_analytics.json msgid "Website Analytics" msgstr "Analisis Situs Web" #. Name of a role -#: core/doctype/comment/comment.json -#: website/doctype/about_us_settings/about_us_settings.json -#: website/doctype/blog_category/blog_category.json -#: website/doctype/blog_post/blog_post.json -#: website/doctype/blog_settings/blog_settings.json -#: website/doctype/blogger/blogger.json website/doctype/color/color.json -#: website/doctype/contact_us_settings/contact_us_settings.json -#: website/doctype/help_category/help_category.json -#: website/doctype/portal_settings/portal_settings.json -#: website/doctype/web_form/web_form.json -#: website/doctype/web_page/web_page.json -#: website/doctype/website_script/website_script.json -#: website/doctype/website_settings/website_settings.json -#: website/doctype/website_sidebar/website_sidebar.json -#: website/doctype/website_slideshow/website_slideshow.json -#: website/doctype/website_theme/website_theme.json +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/blog_category/blog_category.json +#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/website/doctype/blog_settings/blog_settings.json +#: frappe/website/doctype/blogger/blogger.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json msgid "Website Manager" -msgstr "Website Manager" +msgstr "" #. Name of a DocType -#: website/doctype/website_meta_tag/website_meta_tag.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" msgstr "Meta Tag situs web" #. Name of a DocType -#: website/doctype/website_route_meta/website_route_meta.json -msgid "Website Route Meta" -msgstr "Rute Situs Web Meta" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Route Meta" +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json msgid "Website Route Meta" msgstr "Rute Situs Web Meta" #. Name of a DocType -#: website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" msgstr "Pengalihan Rute Situs Web" #. Name of a DocType -#: website/doctype/website_script/website_script.json -msgid "Website Script" -msgstr "Script Website" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Script" +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json msgid "Website Script" msgstr "Script Website" -#. Label of a Data field in DocType 'DocType' -#: core/doctype/doctype/doctype.json -msgctxt "DocType" +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json msgid "Website Search Field" msgstr "" -#: core/doctype/doctype/doctype.py:1473 +#: frappe/core/doctype/doctype/doctype.py:1522 msgid "Website Search Field must be a valid fieldname" msgstr "" #. Name of a DocType -#: website/doctype/website_settings/website_settings.json -msgid "Website Settings" -msgstr "Pengaturan situs web" - #. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Settings" +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json msgid "Website Settings" msgstr "Pengaturan situs web" +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' #. Name of a DocType -#: website/doctype/website_sidebar/website_sidebar.json -msgid "Website Sidebar" -msgstr "Sidebar situs" - -#. Label of a Link field in DocType 'Web Form' -#: website/doctype/web_form/web_form.json -msgctxt "Web Form" -msgid "Website Sidebar" -msgstr "Sidebar situs" - -#. Label of a Link field in DocType 'Web Page' -#: website/doctype/web_page/web_page.json -msgctxt "Web Page" -msgid "Website Sidebar" -msgstr "Sidebar situs" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Sidebar" +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json msgid "Website Sidebar" msgstr "Sidebar situs" #. Name of a DocType -#: website/doctype/website_sidebar_item/website_sidebar_item.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" msgstr "Website Barang Sidebar" #. Name of a DocType -#: website/doctype/website_slideshow/website_slideshow.json -msgid "Website Slideshow" -msgstr "Situs Slideshow" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Slideshow" +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json msgid "Website Slideshow" msgstr "Situs Slideshow" #. Name of a DocType -#: website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" msgstr "Situs web Slideshow Barang" +#. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType -#: website/doctype/website_theme/website_theme.json -msgid "Website Theme" -msgstr "Situs Tema" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Website Theme" -msgstr "Situs Tema" - -#. Label of a Link field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" -msgid "Website Theme" -msgstr "Situs Tema" - #. Label of a Link in the Website Workspace -#: website/workspace/website/website.json -msgctxt "Website Theme" +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json msgid "Website Theme" msgstr "Situs Tema" #. Name of a DocType -#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" msgstr "Tema Situs Web Abaikan Aplikasi" -#. Label of a Image field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme Image" -msgstr "Situs Tema Gambar" +msgstr "" -#. Label of a Code field in DocType 'Website Settings' -#: website/doctype/website_settings/website_settings.json -msgctxt "Website Settings" +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme image link" msgstr "" +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' -#: automation/doctype/assignment_rule_day/assignment_rule_day.json -msgctxt "Assignment Rule Day" -msgid "Wednesday" -msgstr "Rabu" - -#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Wednesday" -msgstr "Rabu" - #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' -#: automation/doctype/auto_repeat_day/auto_repeat_day.json -msgctxt "Auto Repeat Day" -msgid "Wednesday" -msgstr "Rabu" - -#. Label of a Check field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Wednesday" -msgstr "Rabu" - +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' #. Option for the 'First Day of the Week' (Select) field in DocType 'System #. Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Wednesday" -msgstr "Rabu" +msgstr "" -#: public/js/frappe/views/calendar/calendar.js:269 +#: frappe/public/js/frappe/views/calendar/calendar.js:276 msgid "Week" msgstr "Minggu" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Weekdays" -msgstr "Hari kerja" - -#: public/js/frappe/utils/common.js:399 -#: website/report/website_analytics/website_analytics.js:24 -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Weekly" -msgstr "Mingguan" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox -#. Settings' -#: integrations/doctype/dropbox_settings/dropbox_settings.json -msgctxt "Dropbox Settings" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Point Allocation Periodicity' (Select) field in DocType -#. 'Energy Point Settings' -#: social/doctype/energy_point_settings/energy_point_settings.json -msgctxt "Energy Point Settings" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Frequency' (Select) field in DocType 'Google Drive' -#: integrations/doctype/google_drive/google_drive.json -msgctxt "Google Drive" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Weekly" -msgstr "Mingguan" - -#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup -#. Settings' -#: integrations/doctype/s3_backup_settings/s3_backup_settings.json -msgctxt "S3 Backup Settings" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" -msgid "Weekly" -msgstr "Mingguan" - #. Option for the 'Frequency' (Select) field in DocType 'User' -#: core/doctype/user/user.json -msgctxt "User" +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 msgid "Weekly" msgstr "Mingguan" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Weekly Long" -msgstr "Panjang Mingguan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json msgid "Weekly Long" -msgstr "Panjang Mingguan" +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:372 +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 msgid "Welcome" msgstr "" -#. Label of a Link field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json msgid "Welcome Email Template" -msgstr "Template Email Selamat Datang" +msgstr "" -#. Label of a Link field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Welcome Email Template" -msgstr "Template Email Selamat Datang" - -#. Label of a Data field in DocType 'Email Group' -#: email/doctype/email_group/email_group.json -msgctxt "Email Group" +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" msgstr "" #. Name of a Workspace -#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468 +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Welcome Workspace" msgstr "" -#: core/doctype/user/user.py:361 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Email Selamat Datang telah dikirim" -#: core/doctype/user/user.py:436 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Selamat Datang di {0}" +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "Ketika diaktifkan ini akan memungkinkan para tamu untuk mengunggah file ke aplikasi Anda, Anda dapat mengaktifkan ini jika Anda ingin mengumpulkan file dari pengguna tanpa harus mereka masuk, misalnya dalam formulir web aplikasi pekerjaan." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:440 -msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?" +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' -#: desk/doctype/workspace_shortcut/workspace_shortcut.json -msgctxt "Workspace Shortcut" +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 msgid "Which view of the associated DocType should this shortcut take you to?" msgstr "Tampilan DocType terkait mana yang harus dibawa oleh pintasan ini?" -#. Label of a Data field in DocType 'Custom Field' -#: custom/doctype/custom_field/custom_field.json -msgctxt "Custom Field" +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 msgid "Width" -msgstr "Lebar" +msgstr "" -#. Label of a Data field in DocType 'Customize Form Field' -#: custom/doctype/customize_form_field/customize_form_field.json -msgctxt "Customize Form Field" -msgid "Width" -msgstr "Lebar" +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" -#. Label of a Select field in DocType 'Dashboard Chart Link' -#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json -msgctxt "Dashboard Chart Link" -msgid "Width" -msgstr "Lebar" - -#. Label of a Data field in DocType 'DocField' -#: core/doctype/docfield/docfield.json -msgctxt "DocField" -msgid "Width" -msgstr "Lebar" - -#. Label of a Int field in DocType 'Report Column' -#: core/doctype/report_column/report_column.json -msgctxt "Report Column" -msgid "Width" -msgstr "Lebar" - -#. Label of a Check field in DocType 'Report Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json msgid "Wildcard Filter" -msgstr "Filter Karakter Pengganti" +msgstr "" #. Description of the 'Wildcard Filter' (Check) field in DocType 'Report #. Filter' -#: core/doctype/report_filter/report_filter.json -msgctxt "Report Filter" +#: frappe/core/doctype/report_filter/report_filter.json msgid "Will add \"%\" before and after the query" msgstr "" #. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: website/doctype/blogger/blogger.json -msgctxt "Blogger" +#: frappe/website/doctype/blogger/blogger.json msgid "Will be used in url (usually first name)." -msgstr "Akan digunakan dalam url (biasanya nama depan)." +msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:470 +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Akan menjadi ID login anda" -#: printing/page/print_format_builder/print_format_builder.js:424 +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" msgstr "Hanya akan ditampilkan jika judul bagian diaktifkan" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0." -msgstr "Akan menjalankan pekerjaan terjadwal hanya sekali sehari untuk situs tidak aktif. Default 4 hari jika diatur ke 0." +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" -#: public/js/frappe/form/print_utils.js:13 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Dengan kepala Surat" -#: workflow/doctype/workflow/workflow.js:140 -msgid "Worflow States Don't Exist" -msgstr "Status Worflow Tidak Ada" - -#. Label of a Section Break field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" msgstr "" -#. Label of a Data field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" msgstr "" -#. Name of a DocType -#: workflow/doctype/workflow/workflow.json -msgid "Workflow" -msgstr "Alur Kerja" - #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#: core/doctype/comment/comment.json -msgctxt "Comment" -msgid "Workflow" -msgstr "Alur Kerja" - -#. Option for the 'Comment Type' (Select) field in DocType 'Communication' -#: core/doctype/communication/communication.json -msgctxt "Communication" -msgid "Workflow" -msgstr "Alur Kerja" - #. Group in DocType's connections -#. Linked DocType in DocType's connections -#: core/doctype/doctype/doctype.json -msgctxt "DocType" -msgid "Workflow" -msgstr "Alur Kerja" - -#. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Workflow" +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow" msgstr "Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_action/workflow_action.json -#: workflow/doctype/workflow_action/workflow_action.py:486 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" msgstr "Tindakan Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_action_master/workflow_action_master.json +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" msgstr "Induk Tindakan Alur Kerja" -#. Label of a Data field in DocType 'Workflow Action Master' -#: workflow/doctype/workflow_action_master/workflow_action_master.json -msgctxt "Workflow Action Master" +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Name" -msgstr "Nama Tindakan Alur Kerja" +msgstr "" #. Name of a DocType -#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" msgstr "" #. Description of the 'Is Optional State' (Check) field in DocType 'Workflow #. Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Action is not created for optional states" -msgstr "Tindakan Alur Kerja tidak dibuat untuk status opsional" +msgstr "" -#: workflow/page/workflow_builder/workflow_builder.js:4 +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" msgstr "" -#. Label of a Data field in DocType 'Workflow Document State' -#: workflow/doctype/workflow_document_state/workflow_document_state.json -msgctxt "Workflow Document State" +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Builder ID" msgstr "" -#. Label of a Data field in DocType 'Workflow Transition' -#: workflow/doctype/workflow_transition/workflow_transition.json -msgctxt "Workflow Transition" -msgid "Workflow Builder ID" -msgstr "" - -#: workflow/doctype/workflow/workflow.js:11 +#: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." msgstr "" -#. Label of a JSON field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" msgstr "" +#: frappe/public/js/workflow_builder/components/Properties.vue:42 +msgid "Workflow Details" +msgstr "" + #. Name of a DocType -#: workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" msgstr "Status Dokumen Alur Kerja" -#. Label of a Data field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" -msgstr "Nama Alur Kerja" +msgstr "" +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' #. Name of a DocType -#: workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow State" msgstr "Status Alur Kerja" -#. Label of a Data field in DocType 'Workflow Action' -#: workflow/doctype/workflow_action/workflow_action.json -msgctxt "Workflow Action" -msgid "Workflow State" -msgstr "Status Alur Kerja" - -#. Label of a Data field in DocType 'Workflow' -#: workflow/doctype/workflow/workflow.json -msgctxt "Workflow" +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow State Field" -msgstr "Kolom Status Alur Kerja" +msgstr "" -#: model/workflow.py:63 +#: frappe/model/workflow.py:61 msgid "Workflow State not set" msgstr "Negara Alur Kerja tidak diatur" -#: model/workflow.py:201 model/workflow.py:209 +#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}" -#: model/workflow.py:327 +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:328 msgid "Workflow Status" msgstr "Status Alur Kerja" #. Name of a DocType -#: workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Transisi Alur Kerja" -#. Description of the Onboarding Step 'Setup Approval Workflows' -#: custom/onboarding_step/workflows/workflows.json -msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions." +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." msgstr "" -#. Name of a DocType -#: desk/doctype/workspace/workspace.json -#: public/js/frappe/ui/toolbar/search_utils.js:541 -#: public/js/frappe/views/workspace/workspace.js:10 -msgid "Workspace" -msgstr "" - -#. Linked DocType in Module Def's connections -#: core/doctype/module_def/module_def.json -msgctxt "Module Def" -msgid "Workspace" +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" msgstr "" +#. Label of the workspace_section (Section Break) field in DocType 'User' #. Label of a Link in the Build Workspace -#: core/workspace/build/build.json -msgctxt "Workspace" +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: public/js/frappe/router.js:194 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json msgid "Workspace Chart" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Workspace Link" msgstr "" #. Name of a role -#: desk/doctype/custom_html_block/custom_html_block.json -#: desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Manager" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Workspace Number Card" msgstr "" #. Name of a DocType -#: desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Workspace Quick List" msgstr "" +#. Label of a standard navbar item +#. Type: Action #. Name of a DocType -#: desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Workspace Shortcut" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:1265 -msgid "Workspace {0} Created Successfully" +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" msgstr "" -#: public/js/frappe/views/workspace/workspace.js:894 -msgid "Workspace {0} Deleted Successfully" -msgstr "" - -#: public/js/frappe/views/workspace/workspace.js:672 -msgid "Workspace {0} Edited Successfully" +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' -#: desk/doctype/form_tour/form_tour.json -msgctxt "Form Tour" +#: frappe/desk/doctype/form_tour/form_tour.json msgid "Workspaces" msgstr "" -#. Label of a Check field in DocType 'Custom DocPerm' -#: core/doctype/custom_docperm/custom_docperm.json -msgctxt "Custom DocPerm" -msgid "Write" -msgstr "Menulis" +#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" -#. Label of a Check field in DocType 'DocPerm' -#: core/doctype/docperm/docperm.json -msgctxt "DocPerm" -msgid "Write" -msgstr "Menulis" +#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" -#. Label of a Check field in DocType 'DocShare' -#: core/doctype/docshare/docshare.json -msgctxt "DocShare" -msgid "Write" -msgstr "Menulis" +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "Membungkus" -#. Label of a Check field in DocType 'User Document Type' -#: core/doctype/user_document_type/user_document_type.json -msgctxt "User Document Type" +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "Menulis" +msgstr "" -#: model/base_document.py:840 +#: frappe/model/base_document.py:954 msgid "Wrong Fetch From value" msgstr "Nilai Ambil Dari Salah" -#: public/js/frappe/views/reports/report_view.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:490 msgid "X Axis Field" msgstr "Bidang Axis X" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "X Field" -msgstr "X Field" +msgstr "" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "XLSX" -msgstr "XLSX" +msgstr "" -#. Label of a Table field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" -msgstr "Y Axis" +msgstr "" -#: public/js/frappe/views/reports/report_view.js:471 +#: frappe/public/js/frappe/views/reports/report_view.js:497 msgid "Y Axis Fields" msgstr "Bidang Sumbu Y" -#: public/js/frappe/views/reports/query_report.js:1132 +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" -msgstr "Y Field" - -#. Label of a Select field in DocType 'Dashboard Chart Field' -#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json -msgctxt "Dashboard Chart Field" -msgid "Y Field" -msgstr "Y Field" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Yahoo Mail" -msgstr "Surat Yahoo" +msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "Yandex.Mail" +msgstr "" -#. Label of a Data field in DocType 'Company History' -#: website/doctype/company_history/company_history.json -msgctxt "Company History" +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json msgid "Year" msgstr "Tahun" -#. Label of a Select field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Year" -msgstr "Tahun" - -#: public/js/frappe/utils/common.js:403 -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' -#: automation/doctype/auto_repeat/auto_repeat.json -msgctxt "Auto Repeat" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' -#: desk/doctype/dashboard_chart/dashboard_chart.json -msgctxt "Dashboard Chart" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Repeat On' (Select) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" -msgid "Yearly" -msgstr "Tahunan" - -#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' -#: desk/doctype/number_card/number_card.json -msgctxt "Number Card" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' -#: core/doctype/scheduled_job_type/scheduled_job_type.json -msgctxt "Scheduled Job Type" -msgid "Yearly" -msgstr "Tahunan" - #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' -#: core/doctype/server_script/server_script.json -msgctxt "Server Script" +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 msgid "Yearly" msgstr "Tahunan" #. Option for the 'Color' (Select) field in DocType 'DocType State' -#: core/doctype/doctype_state/doctype_state.json -msgctxt "DocType State" -msgid "Yellow" -msgstr "" - #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' -#: desk/doctype/kanban_board_column/kanban_board_column.json -msgctxt "Kanban Board Column" +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Yellow" msgstr "" -#: integrations/doctype/webhook/webhook.py:127 -#: integrations/doctype/webhook/webhook.py:137 -#: public/js/form_builder/utils.js:336 -#: public/js/frappe/form/controls/link.js:471 -#: public/js/frappe/list/list_sidebar_group_by.js:223 -#: public/js/frappe/views/reports/query_report.js:1513 -#: website/doctype/help_article/templates/help_article.html:25 +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:92 +#: frappe/email/doctype/notification/notification.py:96 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:121 +#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/form_builder/utils.js:336 +#: frappe/public/js/frappe/form/controls/link.js:494 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ya" -#: public/js/frappe/ui/messages.js:32 +#: frappe/public/js/frappe/ui/messages.js:32 msgctxt "Approve confirmation dialog" msgid "Yes" msgstr "Ya" -#: public/js/frappe/ui/filters/filter.js:500 +#: frappe/public/js/frappe/ui/filters/filter.js:545 msgctxt "Checkbox is checked" msgid "Yes" msgstr "Ya" -#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP -#. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" -msgid "Yes" -msgstr "Ya" +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "Kemarin" -#. Option for the 'Standard' (Select) field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" -msgid "Yes" -msgstr "Ya" - -#. Option for the 'Standard' (Select) field in DocType 'Print Format' -#: printing/doctype/print_format/print_format.json -msgctxt "Print Format" -msgid "Yes" -msgstr "Ya" - -#. Option for the 'Is Standard' (Select) field in DocType 'Report' -#: core/doctype/report/report.json -msgctxt "Report" -msgid "Yes" -msgstr "Ya" - -#: public/js/frappe/utils/user.js:33 +#: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." msgid "You" msgstr "Anda" -#: public/js/frappe/form/footer/form_timeline.js:462 +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 msgid "You Liked" msgstr "" -#: public/js/frappe/dom.js:425 +#: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Anda terhubung ke internet." -#: permissions.py:417 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3}" -#: permissions.py:406 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" -#: public/js/frappe/views/kanban/kanban_board.bundle.js:69 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" msgstr "Anda tidak diizinkan untuk membuat kolom" -#: core/doctype/report/report.py:93 +#: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" msgstr "Anda tidak diizinkan untuk menghapus Laporan Standar" -#: website/doctype/website_theme/website_theme.py:74 +#: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" msgstr "Anda tidak diizinkan menghapus Tema Website standar" -#: core/doctype/report/report.py:380 +#: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." msgstr "" -#: permissions.py:614 +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Anda tidak diizinkan mengekspor {} doctype" -#: public/js/frappe/views/treeview.js:431 +#: frappe/public/js/frappe/views/treeview.js:448 msgid "You are not allowed to print this report" msgstr "Anda tidak diizinkan untuk mencetak laporan ini" -#: public/js/frappe/views/communication.js:673 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini" -#: website/doctype/web_form/web_form.py:463 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini" -#: public/js/frappe/request.js:35 +#: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." msgstr "Anda tidak terhubung ke Internet. Coba lagi setelah beberapa saat." -#: public/js/frappe/web_form/webform_script.js:22 +#: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." msgstr "" -#: www/app.py:25 +#: frappe/www/app.py:27 msgid "You are not permitted to access this page." msgstr "Anda tidak diizinkan mengakses halaman ini." -#: __init__.py:834 -msgid "You are not permitted to access this resource." +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" msgstr "" -#: public/js/frappe/form/sidebar/document_follow.js:131 +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Anda sekarang mengikuti dokumen ini. Anda akan menerima pembaruan harian melalui email. Anda dapat mengubahnya di Pengaturan Pengguna." -#: core/doctype/installed_applications/installed_applications.py:59 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" -#: email/doctype/email_account/email_account.js:221 +#: frappe/email/doctype/email_account/email_account.js:284 msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:413 +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "You attached {0}" msgstr "" -#: printing/page/print_format_builder/print_format_builder.js:741 +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 msgid "You can add dynamic properties from the document by using Jinja templating." msgstr "Anda dapat menambahkan properti dinamis dari dokumen dengan menggunakan template Jinja." -#: templates/emails/new_user.html:22 +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 msgid "You can also copy-paste following link in your browser" msgstr "" -#: templates/emails/download_data.html:9 +#: frappe/templates/emails/download_data.html:9 msgid "You can also copy-paste this " msgstr "Anda juga dapat menyalin-menempel ini" -#: templates/emails/delete_data_confirmation.html:11 +#: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Anda juga dapat menyalin-menempel ini {0} ke peramban Anda" -#: public/js/frappe/logtypes.js:21 +#: frappe/core/page/permission_manager/permission_manager_help.html:17 +msgid "You can change Submitted documents by cancelling them and then, amending them." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:199 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: core/doctype/file/file.py:684 +#: frappe/model/delete_doc.py:137 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:736 msgid "You can increase the limit from System Settings." msgstr "" -#: utils/synchronization.py:48 +#: frappe/utils/synchronization.py:48 msgid "You can manually remove the lock if you think it's safe: {}" msgstr "" -#: public/js/frappe/form/controls/markdown_editor.js:74 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" msgstr "" -#: core/doctype/user_type/user_type.py:103 +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: handler.py:226 -msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents." +#: frappe/handler.py:182 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" -#: core/doctype/data_export/exporter.py:201 +#: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" msgstr "Anda hanya dapat mengunggah hingga 5000 data sekaligus. (Mungkin kurang dalam beberapa kasus)" -#: desk/query_report.py:336 +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Anda dapat mencoba mengubah filter laporan Anda." -#: public/js/frappe/form/link_selector.js:30 +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" msgstr "" -#: custom/doctype/customize_form/customize_form.py:387 +#: frappe/custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Options' for field {0}" msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}" -#: custom/doctype/customize_form/customize_form.py:391 +#: frappe/custom/doctype/customize_form/customize_form.py:393 msgid "You can't set 'Translatable' for field {0}" msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:74 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" msgid "You cancelled this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:61 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 msgctxt "Form timeline" msgid "You cancelled this document {1}" msgstr "" -#: desk/doctype/dashboard_chart/dashboard_chart.py:417 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes" -#: social/doctype/energy_point_log/energy_point_log.py:44 -msgid "You cannot give review points to yourself" -msgstr "Anda tidak dapat memberikan poin ulasan untuk diri sendiri" - -#: custom/doctype/customize_form/customize_form.py:383 +#: frappe/custom/doctype/customize_form/customize_form.py:385 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Anda tidak bisa unset 'Read Only' untuk bidang {0}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:121 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:110 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:183 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:172 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:442 +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "You changed {0} to {1}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:138 -#: public/js/frappe/form/sidebar/form_sidebar.js:106 +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 msgid "You created this" msgstr "" -#: client.py:430 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" msgstr "" -#: public/js/frappe/request.js:174 +#: frappe/public/js/frappe/request.js:177 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Anda tidak memiliki izin yang cukup untuk mengakses sumber ini. Silahkan hubungi manajer Anda untuk mendapatkan akses." -#: app.py:355 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan" -#: public/js/frappe/form/sidebar/review.js:91 -msgid "You do not have enough points" -msgstr "Anda tidak memiliki poin yang cukup" - -#: social/doctype/energy_point_log/energy_point_log.py:296 -msgid "You do not have enough review points" -msgstr "Anda tidak memiliki poin ulasan yang cukup" - -#: www/printview.py:369 -msgid "You do not have permission to view this document" +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" msgstr "" -#: public/js/frappe/form/form.js:979 +#: frappe/desk/query_report.py:873 +msgid "You do not have permission to access {0}: {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan." -#: desk/query_report.py:39 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Anda tidak memiliki akses ke Laporan: {0}" -#: website/doctype/web_form/web_form.py:699 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: utils/response.py:278 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Anda tidak memiliki izin untuk mengakses file ini" -#: desk/query_report.py:45 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Anda tidak memiliki izin untuk mendapatkan laporan tentang: {0}" -#: website/doctype/web_form/web_form.py:167 +#: frappe/website/doctype/web_form/web_form.py:172 msgid "You don't have the permissions to access this document" msgstr "Anda tidak memiliki izin untuk mengakses dokumen ini" -#: social/doctype/energy_point_log/energy_point_log.py:156 -msgid "You gained {0} point" -msgstr "Anda mendapatkan poin {0}" - -#: social/doctype/energy_point_log/energy_point_log.py:158 -msgid "You gained {0} points" -msgstr "Anda mendapatkan {0} poin" - -#: templates/emails/new_message.html:1 +#: frappe/templates/emails/new_message.html:1 msgid "You have a new message from: " msgstr "Anda memiliki pesan baru dari:" -#: handler.py:123 +#: frappe/handler.py:118 msgid "You have been successfully logged out" msgstr "Anda telah berhasil keluar" -#: custom/doctype/customize_form/customize_form.py:240 +#: frappe/custom/doctype/customize_form/customize_form.py:244 msgid "You have hit the row size limit on database table: {0}" msgstr "" -#: public/js/frappe/list/bulk_operations.js:347 +#: frappe/public/js/frappe/list/bulk_operations.js:412 msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: templates/includes/likes/likes.py:31 +#: frappe/templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" msgstr "" -#: twofactor.py:455 +#: frappe/twofactor.py:432 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" -#: public/js/frappe/model/create_new.js:332 +#: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." msgstr "Anda belum menyimpan perubahan pada formulir ini. Silakan simpan sebelum Anda melanjutkan." -#: core/doctype/log_settings/log_settings.py:127 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" msgstr "Anda memiliki {0} yang tak terlihat" -#: public/js/frappe/list/list_view.js:468 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:498 msgid "You haven't created a {0} yet" msgstr "" -#: rate_limiter.py:150 +#: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:149 -#: public/js/frappe/form/sidebar/form_sidebar.js:95 +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 msgid "You last edited this" msgstr "" -#: public/js/frappe/widgets/widget_dialog.js:308 +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." msgstr "" -#: website/doctype/web_form/web_form.py:669 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: website/doctype/web_form/web_form.py:503 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Anda harus login untuk mengirimkan formulir ini" -#: desk/doctype/workspace/workspace.py:69 +#: frappe/model/document.py:358 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" msgstr "" -#: website/doctype/web_form/web_form.py:90 +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Anda perlu berada dalam mode developer untuk mengedit Formulir Web Standar" -#: utils/response.py:259 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up." -#: www/me.py:13 www/third_party_apps.py:10 +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 msgid "You need to be logged in to access this page" msgstr "Anda harus login untuk mengakses halaman ini" -#: website/doctype/web_form/web_form.py:158 +#: frappe/website/doctype/web_form/web_form.py:161 msgid "You need to be logged in to access this {0}." msgstr "Anda harus login untuk mengakses ini {0}." -#: www/login.html:73 +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first: " +msgstr "" + +#: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." msgstr "Anda harus mengaktifkan JavaScript agar aplikasi Anda berfungsi." -#: core/doctype/docshare/docshare.py:62 +#: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" msgstr "Anda harus memiliki izin \"Berbagi\"" -#: utils/print_format.py:156 +#: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" msgstr "Anda harus menginstal pycup untuk menggunakan fitur ini!" -#: email/doctype/email_account/email_account.py:140 +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 msgid "You need to set one IMAP folder for {0}" msgstr "" -#: model/rename_doc.py:385 -msgid "You need write permission to rename" -msgstr "Anda memerlukan izin tulis untuk mengubah nama" +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" -#: client.py:458 +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:418 +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" -#: public/js/frappe/widgets/onboarding_widget.js:525 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Tampaknya Anda baik untuk pergi!" -#: public/js/frappe/list/bulk_operations.js:29 +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 msgid "You selected Draft or Cancelled documents" msgstr "Anda memilih dokumen yang masih bersifat Rancangan atau yang telah Dibatalkan" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:48 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" msgid "You submitted this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:35 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 msgctxt "Form timeline" msgid "You submitted this document {0}" msgstr "" -#: public/js/frappe/form/sidebar/document_follow.js:144 +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" msgstr "Anda berhenti mengikuti dokumen ini" -#: public/js/frappe/form/footer/form_timeline.js:182 +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:385 +#: frappe/public/js/frappe/desk.js:553 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" msgstr "Negara Anda" -#: desk/page/setup_wizard/setup_wizard.js:377 +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" msgstr "Bahasa Anda" -#: templates/includes/comments/comments.html:21 +#: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" msgstr "Nama Anda" -#: patches/v14_0/update_workspace2.py:34 +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" msgstr "Pintasan Anda" -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141 -#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 msgid "Your account has been deleted" msgstr "" -#: auth.py:465 +#: frappe/auth.py:514 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik" -#: desk/form/assign_to.py:268 +#: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Tugas Anda pada {0} {1} telah dihapus oleh {2}" -#: templates/pages/integrations/gcalendar-success.html:11 +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "" + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" msgstr "Permintaan koneksi Anda ke Google Kalender berhasil diterima" -#: www/contact.html:35 +#: frappe/www/contact.html:35 msgid "Your email address" msgstr "Alamat email anda" -#: public/js/frappe/web_form/web_form.js:424 +#: frappe/public/js/frappe/web_form/web_form.js:428 msgid "Your form has been successfully updated" msgstr "" -#: templates/emails/new_user.html:6 +#: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Id login Anda" -#: www/update-password.html:165 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: www/update-password.html:145 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "Nama dan alamat organisasi Anda untuk footer email." +msgstr "" -#: templates/emails/auto_reply.html:2 +#: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda memiliki informasi tambahan, silakan balas email ini." -#: app.py:346 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan" -#: templates/emails/verification_code.html:1 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" msgstr "" -#. Success message of the Module Onboarding 'Website' -#: website/module_onboarding/website/website.json -msgid "Your website is all set up!" -msgstr "" - -#: utils/data.py:1518 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Nol" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' -#: email/doctype/auto_email_report/auto_email_report.json -msgctxt "Auto Email Report" +#: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Zero means send records updated at anytime" -msgstr "Nol berarti mengirim pembaruan data kapan saja" +msgstr "" -#. Label of a Link field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "_doctype" +msgstr "" -#. Label of a Link field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_report" -msgstr "_laporan" +msgstr "" -#: utils/background_jobs.py:94 +#: frappe/database/database.py:360 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: frappe/utils/background_jobs.py:120 msgid "`job_id` paramater is required for deduplication." msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:219 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 msgid "added rows for {0}" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "adjust" -msgstr "penyesuaian" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "after_insert" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-center" -msgstr "rata-tengah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-justify" -msgstr "rata-kanan-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-left" -msgstr "rata-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "align-right" -msgstr "rata-kanan" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "amend" -msgstr "Merubah" +msgstr "" -#: public/js/frappe/utils/utils.js:396 utils/data.py:1528 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "dan" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-down" -msgstr "panah-bawah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-left" -msgstr "panah-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-right" -msgstr "panah-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "arrow-up" -msgstr "panah-atas" - -#: public/js/frappe/ui/sort_selector.js:48 +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "ascending" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "asterisk" -msgstr "asterisk" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "backward" -msgstr "mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ban-circle" -msgstr "lingkaran-larangan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "barcode" -msgstr "barcode" - -#: model/document.py:1337 -msgid "beginning with" -msgstr "dimulai dengan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bell" -msgstr "bel" - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "blue" -msgstr "biru" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bold" -msgstr "tebal" +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "book" -msgstr "buku" +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bookmark" -msgstr "penanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "briefcase" -msgstr "tas kantor" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "bullhorn" -msgstr "pengeras suara" - -#: public/js/frappe/ui/toolbar/search_utils.js:270 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 msgid "calendar" msgstr "kalender" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "calendar" -msgstr "kalender" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "camera" -msgstr "kamera" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "cancel" -msgstr "Batalkan" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "certificate" -msgstr "sertifikat" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "check" -msgstr "Check" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-down" -msgstr "chevron-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-left" -msgstr "chevron-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-right" -msgstr "chevron-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "chevron-up" -msgstr "chevron-up" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-down" -msgstr "lingkaran-panah-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-left" -msgstr "lingkaran-panah-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-right" -msgstr "lingkaran-panah-kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "circle-arrow-up" -msgstr "lingkaran-panah-up" - -#: templates/includes/list/filters.html:19 +#: frappe/templates/includes/list/filters.html:19 msgid "clear" msgstr "jelas" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "cog" -msgstr "gigi" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "comment" -msgstr "komentar" +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "create" -msgstr "Buat" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "cyan" msgstr "" -#: public/js/frappe/utils/utils.js:1113 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "d" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "darkgrey" -msgstr "Abu-abu gelap" +msgstr "" -#: core/page/dashboard_view/dashboard_view.js:65 +#: frappe/core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" msgstr "dasbor" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "dd-mm-yyyy" -msgstr "dd-mm-yyyy" - -#. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "dd.mm.yyyy" -msgstr "dd.mm.yyyy" - -#. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" -msgid "dd/mm/yyyy" -msgstr "hh / bb / tttt" - -#. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "default" msgstr "" +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "default" msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "Hapus" +msgstr "" -#: public/js/frappe/ui/sort_selector.js:48 +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "descending" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:163 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" msgstr "tipe dokumen ..., misalnya pelanggan" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "download" -msgstr "unduh" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "download-alt" -msgstr "mengunduh-alt" - #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "misalnya \"Support \",\" Penjualan \",\" Jerry Yang \"" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:183 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." msgstr "misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ..." #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "misalnya pop.gmail.com / imap.gmail.com" - #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "misalnya pop.gmail.com / imap.gmail.com" +msgstr "" #. Description of the 'Default Incoming' (Check) field in DocType 'Email #. Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#: frappe/email/doctype/email_account/email_account.json msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "misalnya replies@yourcomany.com. Semua balasan akan datang ke inbox ini." +msgstr "" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" -msgid "e.g. smtp.gmail.com" -msgstr "misalnya smtp.gmail.com" - #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' -#: email/doctype/email_domain/email_domain.json -msgctxt "Email Domain" +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. smtp.gmail.com" -msgstr "misalnya smtp.gmail.com" +msgstr "" -#: custom/doctype/custom_field/custom_field.js:98 +#: frappe/custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" msgstr "misalnya:" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "edit" -msgstr "Ubah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eject" -msgstr "mengeluarkan" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" -msgid "email" -msgstr "surel" - #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "email" -msgstr "surel" +msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:289 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "email inbox" msgstr "Kotak Masuk Surel" -#: permissions.py:411 permissions.py:422 -#: public/js/frappe/form/controls/link.js:479 +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "kosong" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "envelope" -msgstr "amplop" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "exclamation-sign" -msgstr "seru-sign" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "Ekspor" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eye-close" -msgstr "eye-close" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "eye-open" -msgstr "eye-terbuka" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "facebook" -msgstr "facebook" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "facetime-video" -msgstr "facetime video" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "failed" msgstr "" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' -#: integrations/doctype/social_login_key/social_login_key.json -msgctxt "Social Login Key" +#: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "fairlogin" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fast-backward" -msgstr "cepat mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fast-forward" -msgstr "fast-forward" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "file" -msgstr "berkas" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "film" -msgstr "film" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "filter" -msgstr "Filter" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "finished" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fire" -msgstr "api" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "flag" -msgstr "tanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "folder-close" -msgstr "folder-close" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "folder-open" -msgstr "folder terbuka" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "font" -msgstr "fon" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "forward" -msgstr "depan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "fullscreen" -msgstr "fullscreen" - -#: public/js/frappe/utils/energy_point_utils.js:61 -msgid "gained by {0} via automatic rule {1}" -msgstr "diperoleh sebesar {0} melalui aturan otomatis {1}" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "gift" -msgstr "hadiah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "glass" -msgstr "kaca" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "globe" -msgstr "di seluruh dunia." - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "gray" msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "green" -msgstr "hijau" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "grey" msgstr "" -#: utils/backups.py:375 +#: frappe/utils/backups.py:399 msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: public/js/frappe/utils/utils.js:1117 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "h" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-down" -msgstr "tangan-ke bawah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-left" -msgstr "tangan kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-right" -msgstr "tangan kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hand-up" -msgstr "tangan-ke atas" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "hdd" -msgstr "hdd" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "headphones" -msgstr "headphone" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "heart" -msgstr "isinya dihati" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "home" -msgstr "rumah" - -#: public/js/frappe/ui/toolbar/search_utils.js:280 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" msgstr "pusat" -#. Label of a Data field in DocType 'Page' -#: core/doctype/page/page.json -msgctxt "Page" +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json msgid "icon" -msgstr "icon" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "Impor" +msgstr "" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: website/doctype/blog_post/blog_post.json -msgctxt "Blog Post" +#: frappe/website/doctype/blog_post/blog_post.json msgid "in minutes" -msgstr "dalam menit" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "inbox" -msgstr "Kotak Masuk" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "indent-left" -msgstr "indent-kiri" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "indent-right" -msgstr "indent kanan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "info-sign" -msgstr "info-tanda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "italic" -msgstr "italic" - -#: templates/signup.html:11 www/login.html:10 +#: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" -#: public/js/frappe/utils/pretty_date.js:46 +#: frappe/public/js/frappe/utils/pretty_date.js:46 msgid "just now" msgstr "baru saja" -#: desk/desktop.py:254 desk/query_report.py:279 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "leaf" -msgstr "cuti" - #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "light-blue" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "link" -msgstr "Link" +msgstr "" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "linkedin" -msgstr "linkedin" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "list" -msgstr "daftar" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "list" -msgstr "daftar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "list-alt" -msgstr "daftar-alt" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "lock" -msgstr "mengunci" - -#: www/third_party_apps.html:41 +#: frappe/www/third_party_apps.html:43 msgid "logged in" msgstr "Login" +#: frappe/website/doctype/web_form/web_form.js:362 +msgid "login_required" +msgstr "" + #. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "long" -msgstr "" - #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "long" msgstr "" -#: public/js/frappe/utils/utils.js:1121 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "m" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "magnet" -msgstr "magnet" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "map-marker" -msgstr "peta-penanda" - -#: model/rename_doc.py:214 +#: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" msgstr "digabung {0} ke {1}" -#: website/doctype/blog_post/templates/blog_post.html:25 -#: website/doctype/blog_post/templates/blog_post_row.html:36 +#: frappe/website/doctype/blog_post/templates/blog_post.html:25 +#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 msgid "min read" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "minus" -msgstr "kurang" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "minus-sign" -msgstr "minus tanda" - +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "mm-dd-yyyy" -msgstr "mm-dd-yyyy" +msgstr "" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "mm/dd/yyyy" -msgstr "hh / bb / tttt" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "module" -msgstr "modul" +msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:178 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." msgstr "nama modul ..." -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "move" -msgstr "pindah" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "music" -msgstr "musik" - -#: public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 msgid "new" msgstr "baru" -#: public/js/frappe/ui/toolbar/awesome_bar.js:158 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" msgstr "jenis baru dokumen" -#. Label of a Int field in DocType 'Email Account' -#: email/doctype/email_account/email_account.json -msgctxt "Email Account" +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json msgid "no failed attempts" -msgstr "upaya tidak gagal" +msgstr "" -#. Label of a Data field in DocType 'OAuth Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" msgstr "" -#: model/document.py:1336 -msgid "none of" -msgstr "tidak ada" - -#. Label of a Check field in DocType 'Reminder' -#: automation/doctype/reminder/reminder.json -msgctxt "Reminder" +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json msgid "notified" msgstr "" -#: public/js/frappe/utils/pretty_date.js:25 +#: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" msgstr "sekarang" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "off" -msgstr "lepas" +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok" -msgstr "ok" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok-circle" -msgstr "ok-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "ok-sign" -msgstr "ok-tanda" - -#. Label of a Data field in DocType 'File' -#: core/doctype/file/file.json -msgctxt "File" +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "old_parent" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "on_cancel" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "dalam perubahan" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "on_submit" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "on_trash" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "on_update" +msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' -#: integrations/doctype/webhook/webhook.json -msgctxt "Webhook" +#: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "on_update_after_submit" +msgstr "" -#: model/document.py:1335 -msgid "one of" -msgstr "Salah satu" - -#: utils/data.py:1535 -msgid "only." -msgstr "saja." - -#: public/js/frappe/utils/utils.js:393 www/login.html:87 +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 msgid "or" msgstr "atau" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "orange" -msgstr "jeruk" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "page" -msgstr "halaman" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "pause" -msgstr "jeda" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "pencil" -msgstr "pensil" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "picture" -msgstr "gambar" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "pink" msgstr "" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "plain" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plane" -msgstr "pesawat" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "play" -msgstr "bermain" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "play-circle" -msgstr "bermain-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plus" -msgstr "plus" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "plus-sign" -msgstr "tanda plus" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "print" -msgstr "mencetak" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "print" -msgstr "mencetak" - -#. Label of a HTML field in DocType 'System Console' -#: desk/doctype/system_console/system_console.json -msgctxt "System Console" +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json msgid "processlist" msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "purple" -msgstr "ungu" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "qrcode" -msgstr "kode qr" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' -#: desk/doctype/desktop_icon/desktop_icon.json -msgctxt "Desktop Icon" +#: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "query-report" -msgstr "laporan-query" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "question-sign" -msgstr "tanda tanya" +msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "queued" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "random" -msgstr "acak" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "Membaca" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "red" -msgstr "merah" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "refresh" -msgstr "menyegarkan" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove" -msgstr "menghapus" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove-circle" -msgstr "hapus-lingkaran" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "remove-sign" -msgstr "hapus-tanda" - -#: public/js/frappe/form/footer/version_timeline_content_builder.js:221 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 msgid "removed rows for {0}" msgstr "" -#: model/rename_doc.py:217 +#: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "berganti nama dari {0} ke {1}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "repeat" -msgstr "ulangi" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "report" -msgstr "Laporan" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-full" -msgstr "mengubah ukuran-penuh" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-horizontal" -msgstr "resize-horisontal" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-small" -msgstr "resize-kecil" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "resize-vertical" -msgstr "resize-vertikal" - -#. Label of a HTML field in DocType 'Custom Role' -#: core/doctype/custom_role/custom_role.json -msgctxt "Custom Role" +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json msgid "response" -msgstr "tanggapan" +msgstr "" -#: core/doctype/deleted_document/deleted_document.py:60 +#: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" msgstr "dipulihkan {0} sebagai {1}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "retweet" -msgstr "-retweet" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "road" -msgstr "jalan" - -#: public/js/frappe/utils/utils.js:1125 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "s" +msgstr "" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' -#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json -msgctxt "OAuth Authorization Code" +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "screenshot" -msgstr "screenshot" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "search" -msgstr "Pencarian" - #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "Pilih" +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "share" -msgstr "saham" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "share" -msgstr "saham" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "share-alt" -msgstr "share-alt" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "shopping-cart" -msgstr "shopping-cart" +msgstr "" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" -msgid "short" -msgstr "" - #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' -#: core/doctype/rq_worker/rq_worker.json -msgctxt "RQ Worker" +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json msgid "short" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "signal" -msgstr "sinyal" - -#: public/js/frappe/widgets/number_card_widget.js:265 +#: frappe/public/js/frappe/widgets/number_card_widget.js:298 msgid "since last month" msgstr "sejak bulan lalu" -#: public/js/frappe/widgets/number_card_widget.js:264 +#: frappe/public/js/frappe/widgets/number_card_widget.js:297 msgid "since last week" msgstr "sejak minggu lalu" -#: public/js/frappe/widgets/number_card_widget.js:266 +#: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since last year" msgstr "sejak tahun lalu" -#: public/js/frappe/widgets/number_card_widget.js:263 +#: frappe/public/js/frappe/widgets/number_card_widget.js:296 msgid "since yesterday" msgstr "Dari Kemarin" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "star" -msgstr "bintang" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "star-empty" -msgstr "Bintang-kosong" - #. Option for the 'Status' (Select) field in DocType 'RQ Job' -#: core/doctype/rq_job/rq_job.json -msgctxt "RQ Job" +#: frappe/core/doctype/rq_job/rq_job.json msgid "started" msgstr "" -#: desk/page/setup_wizard/setup_wizard.js:194 +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "step-backward" -msgstr "langkah-mundur" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "step-forward" -msgstr "langkah-maju" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "stop" -msgstr "berhenti" - #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. group" msgstr "" #. Description of the 'LDAP Group Member attribute' (Data) field in DocType #. 'LDAP Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. member" msgstr "" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' -#: integrations/doctype/ldap_settings/ldap_settings.json -msgctxt "LDAP Settings" +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "submit" -msgstr "Kirim" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tag" -msgstr "Label" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:173 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" msgstr "nama tag ..., misalnya #tag" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tags" -msgstr "tag" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tasks" -msgstr "tugas" - -#: public/js/frappe/ui/toolbar/awesome_bar.js:168 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" msgstr "teks dalam tipe dokumen" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "text-height" -msgstr "text-height" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "text-width" -msgstr "text-width" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th" -msgstr "th" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th-large" -msgstr "th-besar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "th-list" -msgstr "th-list" - -#: public/js/frappe/form/controls/data.js:35 +#: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" msgstr "" -#: tests/test_translate.py:158 +#: frappe/tests/test_translate.py:174 msgid "this shouldn't break" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "thumbs-down" -msgstr "thumbs-down" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "thumbs-up" -msgstr "thumbs-up" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "time" -msgstr "Durasi" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "tint" -msgstr "warna" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "trash" -msgstr "sampah" - #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' -#: website/doctype/social_link_settings/social_link_settings.json -msgctxt "Social Link Settings" +#: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "twitter" -msgstr "Indonesia" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "upload" -msgstr "unggah" +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" -#: public/js/frappe/ui/filters/filter.js:340 +#: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "user" -msgstr "pengguna" - -#: public/js/frappe/ui/filters/filter.js:339 +#: frappe/public/js/frappe/ui/filters/filter.js:360 msgid "values separated by commas" msgstr "nilai-nilai dipisahkan oleh koma" -#. Label of a HTML field in DocType 'Audit Trail' -#: core/doctype/audit_trail/audit_trail.json -msgctxt "Audit Trail" +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json msgid "version_table" msgstr "" -#: automation/doctype/assignment_rule/assignment_rule.py:386 +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" msgstr "melalui Aturan Penugasan" -#: core/doctype/data_import/importer.py:259 -#: core/doctype/data_import/importer.py:280 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "via Auto Repeat" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 msgid "via Data Import" msgstr "melalui Impor Data" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' -#: desk/doctype/event/event.json -msgctxt "Event" +#: frappe/desk/doctype/event/event.json msgid "via Google Meet" msgstr "" -#: email/doctype/notification/notification.py:214 +#: frappe/email/doctype/notification/notification.py:361 msgid "via Notification" msgstr "melalui Notifikasi" -#: public/js/frappe/utils/energy_point_utils.js:46 -msgid "via automatic rule {0} on {1}" -msgstr "via aturan otomatis {0} pada {1}" - -#: public/js/frappe/form/footer/version_timeline_content_builder.js:17 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" msgstr "melalui {0}" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-down" -msgstr "Volume-down" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-off" -msgstr "Volume-off" +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "volume-up" -msgstr "volume-up" - -#: templates/includes/oauth_confirmation.html:5 +#: frappe/templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "warning-sign" -msgstr "sinyal-peringatan" - #. Description of the 'Popover Element' (Check) field in DocType 'Form Tour #. Step' -#: desk/doctype/form_tour_step/form_tour_step.json -msgctxt "Form Tour Step" +#: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "when clicked on element it will focus popover if present." msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "wrench" -msgstr "kunci" +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:622 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' -#: core/doctype/permission_inspector/permission_inspector.json -#, fuzzy -msgctxt "Permission Inspector" +#: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "Menulis" +msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' -#: desk/doctype/workspace/workspace.json -msgctxt "Workspace" +#: frappe/desk/doctype/workspace/workspace.json msgid "yellow" -msgstr "kuning" +msgstr "" -#: public/js/frappe/utils/pretty_date.js:58 +#: frappe/public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" msgstr "kemarin" +#. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' -#: core/doctype/system_settings/system_settings.json -msgctxt "System Settings" +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" +msgstr "" -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "zoom-in" -msgstr "perbesar" - -#. Option for the 'Icon' (Select) field in DocType 'Workflow State' -#: workflow/doctype/workflow_state/workflow_state.json -msgctxt "Workflow State" -msgid "zoom-out" -msgstr "perkecil" - -#: desk/doctype/event/event.js:83 -#: integrations/doctype/google_drive/google_drive.js:19 +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 msgid "{0}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:81 -#: public/js/frappe/ui/toolbar/search_utils.js:82 -msgid "{0} ${label}" -msgstr "" - -#: public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: public/js/frappe/ui/toolbar/search_utils.js:182 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 msgid "{0} ${type}" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:77 -#: public/js/frappe/views/gantt/gantt_view.js:54 +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 msgid "{0} ({1})" msgstr "" -#: public/js/frappe/data_import/data_exporter.js:76 +#: frappe/public/js/frappe/data_import/data_exporter.js:77 msgid "{0} ({1}) (1 row mandatory)" msgstr "{0} ({1}) (1 baris wajib)" -#: public/js/frappe/views/gantt/gantt_view.js:53 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 msgid "{0} ({1}) - {2}%" msgstr "" -#: public/js/frappe/ui/toolbar/awesome_bar.js:346 -#: public/js/frappe/ui/toolbar/awesome_bar.js:349 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 msgid "{0} = {1}" msgstr "" -#: public/js/frappe/views/calendar/calendar.js:29 +#: frappe/public/js/frappe/views/calendar/calendar.js:30 msgid "{0} Calendar" msgstr "{0} Kalender" -#: public/js/frappe/views/reports/report_view.js:544 +#: frappe/public/js/frappe/views/reports/report_view.js:570 msgid "{0} Chart" msgstr "{0} Bagan" -#: core/page/dashboard_view/dashboard_view.js:67 -#: public/js/frappe/ui/toolbar/search_utils.js:331 -#: public/js/frappe/ui/toolbar/search_utils.js:332 -#: public/js/frappe/utils/utils.js:929 -#: public/js/frappe/views/dashboard/dashboard_view.js:10 +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Dasbor" -#: public/js/frappe/form/grid_row.js:456 -#: public/js/frappe/list/list_settings.js:224 -#: public/js/frappe/views/kanban/kanban_settings.js:178 +#: frappe/public/js/frappe/form/grid_row.js:470 +#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Bidang" -#: integrations/doctype/google_calendar/google_calendar.py:360 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 msgid "{0} Google Calendar Events synced." msgstr "{0} Acara Kalender Google disinkronkan." -#: integrations/doctype/google_contacts/google_contacts.py:190 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." msgstr "{0} Kontak Google disinkronkan." -#: public/js/frappe/form/footer/form_timeline.js:463 +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" msgstr "" -#: public/js/frappe/utils/utils.js:923 -#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 msgid "{0} List" msgstr "{0} Daftar" -#: public/js/frappe/utils/pretty_date.js:37 +#: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" -msgstr "{0} M" +msgstr "" -#: public/js/frappe/views/map/map_view.js:14 +#: frappe/public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" msgstr "" -#: public/js/frappe/utils/utils.js:926 -msgid "{0} Modules" -msgstr "{0} Modul" - -#: public/js/frappe/form/quick_entry.js:113 +#: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" msgstr "{0} Nama" -#: model/base_document.py:1027 +#: frappe/model/base_document.py:1154 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" -#: public/js/frappe/utils/utils.js:920 -#: public/js/frappe/widgets/chart_widget.js:325 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 msgid "{0} Report" msgstr "{0} Laporan" -#: public/js/frappe/list/list_settings.js:32 -#: public/js/frappe/views/kanban/kanban_settings.js:26 +#: frappe/public/js/frappe/views/reports/query_report.js:955 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:32 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Pengaturan" -#: public/js/frappe/views/treeview.js:139 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 msgid "{0} Tree" -msgstr "{0} Tree" - -#: public/js/frappe/list/base_list.js:206 -msgid "{0} View" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:126 -#: public/js/frappe/form/sidebar/form_sidebar.js:86 +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 msgid "{0} Web page views" msgstr "{0} Tampilan Halaman" -#: public/js/frappe/form/link_selector.js:225 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 msgid "{0} added" msgstr "{0} ditambahkan" -#: public/js/frappe/form/controls/data.js:203 +#: frappe/public/js/frappe/form/controls/data.js:204 msgid "{0} already exists. Select another name" msgstr "{0} sudah ada. Pilih nama lain" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:37 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" msgstr "{0} sudah berhenti berlangganan" -#: email/doctype/email_unsubscribe/email_unsubscribe.py:50 +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} sudah berhenti berlangganan untuk {1} {2}" -#: utils/data.py:1715 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} dan {1}" -#: public/js/frappe/utils/energy_point_utils.js:38 -msgid "{0} appreciated on {1}" -msgstr "{0} dihargai pada {1}" - -#: social/doctype/energy_point_log/energy_point_log.py:126 -#: social/doctype/energy_point_log/energy_point_log.py:163 -msgid "{0} appreciated your work on {1} with {2} point" -msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin" - -#: social/doctype/energy_point_log/energy_point_log.py:128 -#: social/doctype/energy_point_log/energy_point_log.py:165 -msgid "{0} appreciated your work on {1} with {2} points" -msgstr "{0} menghargai karya Anda pada {1} dengan {2} poin" - -#: public/js/frappe/utils/energy_point_utils.js:53 -msgid "{0} appreciated {1}" -msgstr "{0} dihargai {1}" - -#: public/js/frappe/form/sidebar/review.js:148 -msgid "{0} appreciation point for {1}" -msgstr "" - -#: public/js/frappe/form/sidebar/review.js:150 -msgid "{0} appreciation points for {1}" -msgstr "" - -#: public/js/frappe/form/sidebar/form_sidebar_users.js:72 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" msgstr "{0} saat ini {1}" -#: printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} wajib diisi" -#: desk/form/assign_to.py:275 +#: frappe/desk/form/assign_to.py:286 msgid "{0} assigned a new task {1} {2} to you" msgstr "{0} menetapkan tugas baru {1} {2} untuk Anda" -#: desk/doctype/todo/todo.py:48 +#: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" msgstr "{0} ditugaskan {1}: {2}" -#: public/js/frappe/form/footer/form_timeline.js:414 +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:77 +#: frappe/core/doctype/system_settings/system_settings.py:150 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:68 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: public/js/form_builder/store.js:185 +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "" + +#: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:124 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:115 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:186 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:177 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" msgstr "" -#: public/js/frappe/form/footer/form_timeline.js:443 +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: website/doctype/blog_post/blog_post.py:380 +#: frappe/website/doctype/blog_post/blog_post.py:382 msgid "{0} comments" msgstr "{0} komentar" -#: public/js/frappe/views/interaction.js:261 +#: frappe/core/doctype/doctype/doctype.py:1605 +msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" msgstr "{0} berhasil dibuat" -#: public/js/frappe/form/footer/form_timeline.js:139 -#: public/js/frappe/form/sidebar/form_sidebar.js:107 +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" msgstr "" -#: public/js/frappe/form/sidebar/review.js:154 -msgid "{0} criticism point for {1}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +msgctxt "Form timeline" +msgid "{0} created this document {1}" msgstr "" -#: public/js/frappe/form/sidebar/review.js:156 -msgid "{0} criticism points for {1}" -msgstr "" - -#: public/js/frappe/utils/energy_point_utils.js:41 -msgid "{0} criticized on {1}" -msgstr "{0} dikritik pada {1}" - -#: social/doctype/energy_point_log/energy_point_log.py:132 -#: social/doctype/energy_point_log/energy_point_log.py:170 -msgid "{0} criticized your work on {1} with {2} point" -msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin" - -#: social/doctype/energy_point_log/energy_point_log.py:134 -#: social/doctype/energy_point_log/energy_point_log.py:172 -msgid "{0} criticized your work on {1} with {2} points" -msgstr "{0} mengkritik karya Anda pada {1} dengan {2} poin" - -#: public/js/frappe/utils/energy_point_utils.js:56 -msgid "{0} criticized {1}" -msgstr "{0} dikritik {1}" - -#: public/js/frappe/utils/pretty_date.js:33 +#: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" msgstr "{0} h" -#: public/js/frappe/utils/pretty_date.js:60 +#: frappe/public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" msgstr "{0} hari yang lalu" -#: website/doctype/website_settings/website_settings.py:96 -#: website/doctype/website_settings/website_settings.py:116 +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" msgstr "{0} tidak ada di baris {1}" -#: database/mariadb/schema.py:131 database/postgres/schema.py:184 +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} field tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang non-unik" -#: core/doctype/data_import/importer.py:1017 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:97 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:157 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:120 -msgid "{0} gained {1} point for {2} {3}" -msgstr "{0} diperoleh {1} poin untuk {2} {3}" - -#: templates/emails/energy_points_summary.html:8 -msgid "{0} gained {1} points" -msgstr "" - -#: social/doctype/energy_point_log/energy_point_log.py:122 -msgid "{0} gained {1} points for {2} {3}" -msgstr "{0} diperoleh {1} poin untuk {2} {3}" - -#: templates/emails/energy_points_summary.html:23 -msgid "{0} gave {1} points" -msgstr "" - -#: public/js/frappe/utils/pretty_date.js:29 +#: frappe/public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" msgstr "{0} j" -#: core/doctype/user_permission/user_permission.py:76 +#: frappe/core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." msgstr "{0} telah menetapkan nilai default untuk {1}." -#: email/doctype/newsletter/newsletter.py:382 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} telah berhasil ditambahkan ke Kelompok Email." - -#: email/queue.py:127 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} telah meninggalkan percakapan di {1} {2}" -#: __init__.py:2373 -msgid "{0} has no versions tracked." -msgstr "{0} tidak memiliki versi yang dilacak." - -#: public/js/frappe/utils/pretty_date.js:54 +#: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" msgstr "{0} jam yang lalu" -#: website/doctype/web_form/templates/web_form.html:145 +#: frappe/website/doctype/web_form/templates/web_form.html:148 msgid "{0} if you are not redirected within {1} seconds" msgstr "" -#: website/doctype/website_settings/website_settings.py:102 -#: website/doctype/website_settings/website_settings.py:122 +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} di baris {1} tidak dapat memiliki URL dan item turunan" -#: core/doctype/doctype/doctype.py:916 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "{0} is a mandatory field" msgstr "{0} adalah kolom wajib" -#: core/doctype/file/file.py:503 +#: frappe/core/doctype/file/file.py:544 msgid "{0} is a not a valid zip file" msgstr "" -#: core/doctype/doctype/doctype.py:1559 +#: frappe/core/doctype/doctype/doctype.py:1618 msgid "{0} is an invalid Data field." msgstr "{0} adalah bidang Data yang tidak valid." -#: automation/doctype/auto_repeat/auto_repeat.py:147 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} adalah alamat email yang tidak valid di 'Penerima'" -#: public/js/frappe/views/reports/report_view.js:1394 +#: frappe/public/js/frappe/views/reports/report_view.js:1468 msgid "{0} is between {1} and {2}" msgstr "" -#: public/js/frappe/form/sidebar/form_sidebar_users.js:41 -#: public/js/frappe/form/sidebar/form_sidebar_users.js:69 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 msgid "{0} is currently {1}" msgstr "{0} saat ini {1}" -#: public/js/frappe/views/reports/report_view.js:1363 +#: frappe/public/js/frappe/views/reports/report_view.js:1437 msgid "{0} is equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1383 +#: frappe/public/js/frappe/views/reports/report_view.js:1457 msgid "{0} is greater than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1373 +#: frappe/public/js/frappe/views/reports/report_view.js:1447 msgid "{0} is greater than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1388 +#: frappe/public/js/frappe/views/reports/report_view.js:1462 msgid "{0} is less than or equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1378 +#: frappe/public/js/frappe/views/reports/report_view.js:1452 msgid "{0} is less than {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1413 +#: frappe/public/js/frappe/views/reports/report_view.js:1487 msgid "{0} is like {1}" msgstr "" -#: email/doctype/email_account/email_account.py:169 +#: frappe/email/doctype/email_account/email_account.py:193 msgid "{0} is mandatory" msgstr "{0} wajib diisi" -#: core/doctype/document_naming_rule/document_naming_rule.py:49 +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" -#: www/printview.py:350 +#: frappe/www/printview.py:384 msgid "{0} is not a raw printing format." msgstr "{0} bukan format pencetakan mentah." -#: public/js/frappe/views/calendar/calendar.js:81 +#: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." msgstr "" -#: public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} bukan DocType untuk Dynamic Link yang valid" -#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189 +#: frappe/email/doctype/email_group/email_group.py:131 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} bukan Alamat Email valid" -#: utils/__init__.py:157 +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} bukanlah Nama yang valid" -#: utils/__init__.py:136 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} bukan Nomor Telepon yang valid" -#: model/workflow.py:186 +#: frappe/model/workflow.py:189 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} bukan Status Alur Kerja yang valid. Perbarui Alur Kerja anda dan coba lagi." -#: permissions.py:795 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: permissions.py:815 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: email/doctype/auto_email_report/auto_email_report.py:109 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}" -#: core/doctype/file/file.py:483 +#: frappe/core/doctype/file/file.py:524 msgid "{0} is not a zip file" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1368 +#: frappe/public/js/frappe/views/reports/report_view.js:1442 msgid "{0} is not equal to {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1415 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is not like {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1409 +#: frappe/public/js/frappe/views/reports/report_view.js:1483 msgid "{0} is not one of {1}" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1419 +#: frappe/public/js/frappe/views/reports/report_view.js:1493 msgid "{0} is not set" msgstr "" -#: printing/doctype/print_format/print_format.py:166 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}" -#: public/js/frappe/views/reports/report_view.js:1402 +#: frappe/public/js/frappe/views/reports/report_view.js:1476 msgid "{0} is one of {1}" msgstr "" -#: email/doctype/email_account/email_account.py:263 model/naming.py:201 -#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131 +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:218 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} diperlukan" -#: public/js/frappe/views/reports/report_view.js:1418 +#: frappe/public/js/frappe/views/reports/report_view.js:1492 msgid "{0} is set" msgstr "" -#: public/js/frappe/views/reports/report_view.js:1397 +#: frappe/public/js/frappe/views/reports/report_view.js:1471 msgid "{0} is within {1}" msgstr "" -#: public/js/frappe/list/list_view.js:1556 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} item dipilih" -#: public/js/frappe/form/footer/form_timeline.js:150 -#: public/js/frappe/form/sidebar/form_sidebar.js:96 +#: frappe/core/doctype/user/user.py:1384 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:152 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" msgstr "" -#: core/doctype/activity_log/feed.py:13 +#: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" msgstr "{0} Telah login" -#: core/doctype/activity_log/feed.py:19 +#: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" msgstr "{0} log out: {1}" -#: public/js/frappe/utils/pretty_date.js:27 +#: frappe/public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "{0} m" +msgstr "" -#: desk/notifications.py:373 +#: frappe/desk/notifications.py:408 msgid "{0} mentioned you in a comment in {1} {2}" msgstr "{0} menyebut Anda dalam komentar di {1} {2}" -#: public/js/frappe/utils/pretty_date.js:50 +#: frappe/public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" msgstr "{0} menit yang lalu" -#: public/js/frappe/utils/pretty_date.js:68 +#: frappe/public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" msgstr "{0} bulan yang lalu" -#: model/document.py:1564 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} harus setelah {1}" -#: utils/csvutils.py:136 +#: frappe/model/document.py:1560 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1558 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} harus merupakan salah satu {1}" -#: model/base_document.py:771 +#: frappe/model/base_document.py:876 msgid "{0} must be set first" msgstr "{0} harus diatur terlebih dahulu" -#: model/base_document.py:629 +#: frappe/model/base_document.py:729 msgid "{0} must be unique" msgstr "{0} harus merupakan kode unik" -#: core/doctype/language/language.py:42 -msgid "" -"{0} must begin and end with a letter and can only contain letters,\n" -"\t\t\t\thyphen or underscore." +#: frappe/model/document.py:1564 +msgid "{0} must be {1} {2}" msgstr "" -#: workflow/doctype/workflow/workflow.py:93 +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:90 msgid "{0} not a valid State" msgstr "{0} bukan Keadaan yang berlaku" -#: model/rename_doc.py:388 +#: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" msgstr "{0} tidak dapat dinamakan kembali" -#: desk/doctype/desktop_icon/desktop_icon.py:371 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" msgstr "{0} tidak ditemukan" -#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956 +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1068 msgid "{0} of {1}" msgstr "{0} dari {1}" -#: public/js/frappe/list/list_view.js:958 +#: frappe/public/js/frappe/list/list_view.js:1070 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} dari {1} ({2} baris dengan anak-anak)" -#: email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." msgstr "" -#: utils/data.py:1705 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} atau {1}" -#: core/doctype/user_permission/user_permission_list.js:177 +#: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" msgstr "{0} catatan dihapus" -#: public/js/frappe/logtypes.js:22 +#: frappe/public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." msgstr "" -#: public/js/frappe/logtypes.js:29 +#: frappe/public/js/frappe/logtypes.js:29 msgid "{0} records are retained for {1} days." msgstr "" -#: core/doctype/user_permission/user_permission_list.js:179 +#: frappe/core/doctype/user_permission/user_permission_list.js:179 msgid "{0} records deleted" msgstr "{0} catatan dihapus" -#: public/js/frappe/data_import/data_exporter.js:225 +#: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" msgstr "{0} catatan akan diekspor" -#: public/js/frappe/form/footer/form_timeline.js:419 +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" msgstr "" -#: desk/doctype/todo/todo.py:58 +#: frappe/desk/doctype/todo/todo.py:58 msgid "{0} removed their assignment." msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:139 -#: social/doctype/energy_point_log/energy_point_log.py:178 -msgid "{0} reverted your point on {1}" -msgstr "{0} mengembalikan poin Anda pada {1}" +#: frappe/public/js/frappe/roles_editor.js:62 +msgid "{0} role does not have permission on any doctype" +msgstr "" -#: social/doctype/energy_point_log/energy_point_log.py:141 -#: social/doctype/energy_point_log/energy_point_log.py:180 -msgid "{0} reverted your points on {1}" -msgstr "{0} mengembalikan poin Anda pada {1}" +#: frappe/model/document.py:1794 +msgid "{0} row #{1}: " +msgstr "" -#: public/js/frappe/utils/energy_point_utils.js:44 -#: public/js/frappe/utils/energy_point_utils.js:59 -msgid "{0} reverted {1}" -msgstr "{0} dikembalikan {1}" - -#: desk/query_report.py:583 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} berhasil disimpan" -#: desk/doctype/todo/todo.py:44 +#: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" msgstr "{0} penugasan sendiri tugas ini: {1}" -#: share.py:238 +#: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" msgstr "{0} berbagi dokumen {1} {2} dengan Anda" -#: core/doctype/docshare/docshare.py:79 +#: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" msgstr "{0} berbagi dokumen ini dengan semua orang" -#: core/doctype/docshare/docshare.py:82 +#: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" msgstr "{0} berbagi dokumen ini dengan {1}" -#: core/doctype/doctype/doctype.py:320 +#: frappe/core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: automation/doctype/auto_repeat/auto_repeat.py:136 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 msgid "{0} should not be same as {1}" msgstr "{0} tidak boleh sama dengan {1}" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:51 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" msgstr "" -#: public/js/frappe/form/footer/version_timeline_content_builder.js:42 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: email/doctype/email_group/email_group.py:61 -#: email/doctype/email_group/email_group.py:132 +#: frappe/email/doctype/email_group/email_group.py:62 +#: frappe/email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" msgstr "{0} Pelanggan telah ditambahkan" -#: email/queue.py:70 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} untuk berhenti menerima email jenis ini" -#: public/js/frappe/form/controls/date_range.js:46 -#: public/js/frappe/form/controls/date_range.js:62 -#: public/js/frappe/form/formatters.js:218 +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" msgstr "{0} sampai {1}" -#: core/doctype/docshare/docshare.py:91 +#: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" msgstr "{0} berhenti berbagi dokumen ini dengan {1}" -#: custom/doctype/customize_form/customize_form.py:249 +#: frappe/custom/doctype/customize_form/customize_form.py:253 msgid "{0} updated" msgstr "{0} diperbarui" -#: public/js/frappe/form/controls/multiselect_list.js:162 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 msgid "{0} values selected" msgstr "{0} nilai dipilih" -#: public/js/frappe/form/footer/form_timeline.js:183 +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 msgid "{0} viewed this" msgstr "" -#: public/js/frappe/utils/pretty_date.js:35 +#: frappe/public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "{0} w" +msgstr "" -#: public/js/frappe/utils/pretty_date.js:64 +#: frappe/public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" msgstr "{0} minggu yang lalu" -#: public/js/frappe/utils/pretty_date.js:39 +#: frappe/public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" -msgstr "{0} t" +msgstr "" -#: public/js/frappe/utils/pretty_date.js:72 +#: frappe/public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" msgstr "{0} tahun lalu" -#: public/js/frappe/form/link_selector.js:219 +#: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" msgstr "{0} {1} ditambahkan" -#: public/js/frappe/utils/dashboard_utils.js:270 +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} ditambahkan ke Dasbor {2}" -#: model/base_document.py:562 model/rename_doc.py:112 +#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} sudah ada" -#: model/base_document.py:873 +#: frappe/model/base_document.py:987 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\"" -#: utils/nestedset.py:343 +#: frappe/utils/nestedset.py:340 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} tidak bisa menjadi node tumpuan karena memiliki node anak" -#: model/rename_doc.py:377 +#: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" msgstr "{0} {1} belum ada, pilih target baru untuk menggabungkan" -#: public/js/frappe/form/form.js:970 +#: frappe/public/js/frappe/form/form.js:951 msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}" -#: model/document.py:170 permissions.py:566 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} tidak ditemukan" -#: model/delete_doc.py:231 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu." -#: model/base_document.py:988 +#: frappe/model/base_document.py:1115 msgid "{0}, Row {1}" msgstr "{0}, Baris {1}" -#: model/base_document.py:993 +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1120 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) akan terpotong, karena karakter maksimum yang diizinkan adalah {2}" -#: core/doctype/doctype/doctype.py:1741 +#: frappe/core/doctype/doctype/doctype.py:1800 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu" -#: core/doctype/doctype/doctype.py:1759 +#: frappe/core/doctype/doctype/doctype.py:1818 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan" -#: core/doctype/doctype/doctype.py:1757 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable" -#: core/doctype/doctype/doctype.py:1736 +#: frappe/core/doctype/doctype/doctype.py:1795 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan" -#: core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1802 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu" -#: core/doctype/doctype/doctype.py:1739 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan" -#: core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1822 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor" -#: automation/doctype/auto_repeat/auto_repeat.py:393 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "{0}: Gagal melampirkan dokumen berulang baru. Untuk mengaktifkan melampirkan dokumen di email pemberitahuan ulangi otomatis, aktifkan {1} di Pengaturan Cetak" -#: core/doctype/doctype/doctype.py:1377 +#: frappe/core/doctype/doctype/doctype.py:1426 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Field '{1}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik" -#: core/doctype/doctype/doctype.py:1285 +#: frappe/core/doctype/doctype/doctype.py:1334 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Bidang {1} berturut-turut {2} tidak dapat disembunyikan dan wajib tanpa default" -#: core/doctype/doctype/doctype.py:1244 +#: frappe/core/doctype/doctype/doctype.py:1293 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Bidang {1} dari tipe {2} tidak boleh wajib" -#: core/doctype/doctype/doctype.py:1232 +#: frappe/core/doctype/doctype/doctype.py:1281 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Fieldname {1} muncul beberapa kali dalam baris {2}" -#: core/doctype/doctype/doctype.py:1362 +#: frappe/core/doctype/doctype/doctype.py:1413 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik" -#: core/doctype/doctype/doctype.py:1698 +#: frappe/core/doctype/doctype/doctype.py:1755 msgid "{0}: No basic permissions set" msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan" -#: core/doctype/doctype/doctype.py:1712 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}" -#: core/doctype/doctype/doctype.py:1266 +#: frappe/core/doctype/doctype/doctype.py:1315 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Opsi harus berupa DocType yang valid untuk bidang {1} di baris {2}" -#: core/doctype/doctype/doctype.py:1255 +#: frappe/core/doctype/doctype/doctype.py:1304 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Opsi yang diperlukan untuk bidang jenis Tautan atau jenis tabel {1} di baris {2}" -#: core/doctype/doctype/doctype.py:1273 +#: frappe/core/doctype/doctype/doctype.py:1322 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Opsi {1} harus sama dengan nama doctype {2} untuk isian {3}" -#: core/doctype/doctype/doctype.py:1727 +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1784 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan" -#: public/js/frappe/form/controls/data.js:50 +#: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: core/doctype/doctype/doctype.py:1219 +#: frappe/core/doctype/doctype/doctype.py:1268 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" -#: contacts/doctype/address/address.js:35 -#: contacts/doctype/contact/contact.js:78 -#: public/js/frappe/views/workspace/workspace.js:169 +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 msgid "{0}: {1}" msgstr "" -#: workflow/doctype/workflow_action/workflow_action.py:172 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} diatur untuk menyatakan {2}" -#: public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" -msgstr "{0}: {1} vs {2}" +msgstr "" -#: core/doctype/doctype/doctype.py:1385 +#: frappe/core/doctype/doctype/doctype.py:1434 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: Fieldtype {1} untuk {2} tidak dapat diindeks" -#: public/js/frappe/utils/datatable.js:12 +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" msgstr "" -#: public/js/frappe/utils/datatable.js:13 +#: frappe/public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" msgstr "" -#: public/js/frappe/utils/datatable.js:16 +#: frappe/public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" msgstr "" -#: public/js/frappe/utils/datatable.js:17 +#: frappe/public/js/frappe/utils/datatable.js:17 msgid "{count} rows selected" msgstr "" -#: core/doctype/doctype/doctype.py:1439 +#: frappe/core/doctype/doctype/doctype.py:1488 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}." -#: public/js/frappe/form/form.js:553 +#: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" msgstr "{} Selesai" -#: utils/data.py:2418 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: utils/data.py:2427 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" -#: core/doctype/log_settings/log_settings.py:54 +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 msgid "{} does not support automated log clearing." msgstr "" -#: core/doctype/audit_trail/audit_trail.py:40 +#: frappe/core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." msgstr "" -#: email/doctype/email_account/email_account.py:193 -#: email/doctype/email_account/email_account.py:200 +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: utils/data.py:123 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} bukan string tanggal yang valid." -#: commands/utils.py:519 +#: frappe/commands/utils.py:562 msgid "{} not found in PATH! This is required to access the console." msgstr "" -#: database/db_manager.py:81 +#: frappe/database/db_manager.py:99 msgid "{} not found in PATH! This is required to restore the database." msgstr "" -#: utils/backups.py:441 +#: frappe/utils/backups.py:466 msgid "{} not found in PATH! This is required to take a backup." msgstr "" +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/it.po b/frappe/locale/it.po index 0628d32a08..6d0fd6c7dd 100644 --- a/frappe/locale/it.po +++ b/frappe/locale/it.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Nessuna" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "
" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index 869d395b0c..b7dd8d302f 100644 --- a/frappe/locale/main.pot +++ b/frappe/locale/main.pot @@ -1,14 +1,14 @@ -# Translations template for Framework. +# Translations template for Frappe Framework. # Copyright (C) 2025 Frappe Technologies -# This file is distributed under the same license as the Framework project. +# This file is distributed under the same license as the Frappe Framework project. # FIRST AUTHOR , 2025. # msgid "" msgstr "" -"Project-Id-Version: Framework VERSION\n" +"Project-Id-Version: Frappe Framework VERSION\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 09:34+0000\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-20 09:35+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -147,7 +147,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -156,17 +156,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -178,37 +178,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -224,7 +224,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -559,11 +559,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -590,6 +585,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -624,6 +624,14 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "" +"A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -868,7 +876,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -885,7 +892,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -934,10 +941,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -999,8 +1006,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -1017,7 +1024,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1041,7 +1048,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1050,8 +1057,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1087,7 +1094,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1112,7 +1119,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1122,7 +1129,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1145,12 +1152,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1257,7 +1264,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1412,11 +1419,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1524,6 +1531,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1564,7 +1579,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1896,6 +1910,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1912,7 +1932,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -2003,7 +2059,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -2011,7 +2067,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2092,16 +2148,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2115,21 +2161,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2194,7 +2243,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2275,7 +2324,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2307,7 +2356,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2343,10 +2392,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2379,16 +2424,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2540,7 +2585,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2600,9 +2645,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2629,20 +2672,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2650,11 +2690,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2699,6 +2734,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2933,7 +2973,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3038,7 +3078,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3081,7 +3121,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3687,7 +3727,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3810,10 +3850,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3880,7 +3918,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3898,11 +3936,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3969,11 +4003,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4001,7 +4035,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4056,7 +4090,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4093,7 +4127,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4138,7 +4172,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4164,7 +4198,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4195,10 +4229,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4308,7 +4338,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4365,10 +4395,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4392,10 +4418,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4442,6 +4464,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4481,15 +4507,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4515,7 +4545,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4531,10 +4561,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4614,8 +4640,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4631,6 +4659,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4643,13 +4677,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4734,7 +4787,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4789,7 +4842,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4876,11 +4929,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -5039,7 +5092,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5129,6 +5182,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5168,7 +5227,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5177,7 +5236,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5190,7 +5249,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5199,17 +5258,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5236,8 +5290,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5329,6 +5383,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5340,8 +5399,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5349,8 +5406,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5374,10 +5430,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5434,7 +5488,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5450,7 +5504,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5475,7 +5529,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5483,6 +5537,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5499,7 +5557,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5538,7 +5596,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5570,7 +5628,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5584,13 +5642,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5669,11 +5727,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -6022,6 +6075,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6055,12 +6112,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6079,7 +6136,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6205,7 +6262,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6372,7 +6429,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6436,6 +6492,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6700,15 +6761,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6744,7 +6806,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6786,12 +6848,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -7015,6 +7077,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7198,8 +7261,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7208,7 +7271,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7367,6 +7430,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7612,7 +7676,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7769,7 +7833,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7906,7 +7970,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7960,7 +8024,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8044,7 +8108,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8159,9 +8223,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8173,7 +8237,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8208,11 +8272,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8387,10 +8451,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8425,7 +8488,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8481,11 +8544,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8534,7 +8595,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8558,18 +8619,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8605,7 +8659,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8637,7 +8691,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8663,7 +8717,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8676,10 +8730,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8715,6 +8777,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8875,8 +8943,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -9003,7 +9071,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9106,7 +9174,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9144,6 +9212,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9309,7 +9385,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9335,11 +9411,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9392,13 +9472,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9756,8 +9836,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9828,7 +9908,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9871,7 +9951,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9887,7 +9967,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9939,6 +10019,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10104,6 +10188,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10315,7 +10407,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10323,7 +10415,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10347,10 +10439,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10512,7 +10600,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10768,15 +10856,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10792,7 +10878,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10843,7 +10929,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10852,10 +10938,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10917,7 +11007,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10925,8 +11015,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -11041,7 +11131,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11205,8 +11295,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11243,6 +11331,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11337,6 +11426,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11351,7 +11444,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11385,7 +11478,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11399,11 +11491,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11632,7 +11723,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11668,12 +11759,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11780,7 +11876,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11835,7 +11931,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11908,20 +12004,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12326,7 +12432,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12374,7 +12480,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12602,11 +12708,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12673,11 +12783,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12764,7 +12874,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12829,11 +12939,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12955,7 +13065,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12983,7 +13093,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12991,7 +13101,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -13003,6 +13113,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -13015,7 +13130,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13049,7 +13164,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13061,13 +13176,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13111,11 +13226,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13127,10 +13270,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13139,11 +13302,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13165,10 +13343,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13576,8 +13766,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13610,11 +13800,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13902,7 +14092,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14198,7 +14388,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14326,6 +14516,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14508,7 +14702,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14538,7 +14732,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14589,6 +14783,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14609,7 +14804,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14821,6 +15016,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15007,7 +15207,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15107,11 +15307,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15232,7 +15430,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15300,7 +15498,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15313,11 +15510,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15328,16 +15524,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15364,7 +15550,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15442,6 +15628,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15461,7 +15653,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15511,6 +15703,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15550,7 +15747,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15558,7 +15755,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15624,7 +15821,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15906,7 +16103,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15924,7 +16121,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16067,12 +16264,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16091,10 +16288,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16177,7 +16378,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16200,10 +16401,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16216,7 +16413,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16261,7 +16458,27 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "" +"New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16285,7 +16502,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16293,19 +16510,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16317,52 +16534,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16479,7 +16661,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16508,7 +16690,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16620,11 +16802,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16652,10 +16834,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16692,7 +16870,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16712,7 +16890,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16771,7 +16949,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16864,6 +17042,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16878,7 +17062,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16899,7 +17083,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16925,16 +17109,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16944,8 +17128,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16962,7 +17146,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16979,7 +17162,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16995,7 +17178,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -17036,7 +17219,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17214,7 +17397,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17357,6 +17540,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17429,6 +17617,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17500,7 +17692,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17576,7 +17768,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17602,7 +17794,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17633,7 +17825,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17641,7 +17833,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17729,7 +17921,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17774,7 +17966,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17784,7 +17976,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17873,6 +18065,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17885,7 +18081,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17967,9 +18163,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18264,11 +18462,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18328,11 +18526,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18366,11 +18564,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18378,11 +18576,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18390,10 +18588,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18539,7 +18733,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18691,11 +18885,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18753,7 +18947,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18769,7 +18963,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18801,7 +18995,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18866,7 +19060,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18883,23 +19077,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18907,7 +19101,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18919,7 +19113,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18932,11 +19126,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18952,7 +19146,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18964,10 +19158,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18996,11 +19186,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -19016,7 +19206,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -19024,7 +19214,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19054,11 +19244,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19082,7 +19272,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19094,7 +19284,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19131,14 +19321,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19184,7 +19379,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19228,6 +19423,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19287,15 +19486,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19316,8 +19515,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19362,7 +19559,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19433,16 +19630,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19497,6 +19694,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19507,6 +19709,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19538,11 +19744,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19560,7 +19766,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19670,6 +19876,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19680,7 +19890,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19705,7 +19915,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19792,6 +20002,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19800,14 +20014,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19815,7 +20022,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19939,7 +20145,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -20036,7 +20242,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20059,19 +20264,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20161,7 +20358,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20196,7 +20393,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20272,7 +20469,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20292,7 +20489,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20438,12 +20635,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20657,11 +20854,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20700,7 +20897,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20749,7 +20946,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20780,7 +20977,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20862,7 +21059,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20890,7 +21087,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20990,6 +21187,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21005,8 +21204,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21075,7 +21277,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21127,11 +21329,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21139,7 +21341,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21147,7 +21349,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21160,7 +21362,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21183,7 +21385,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21368,6 +21570,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21493,10 +21720,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21599,7 +21824,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21633,7 +21858,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21707,7 +21932,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21721,7 +21945,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21748,7 +21971,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21839,7 +22062,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -22028,12 +22251,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22060,7 +22283,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22079,7 +22302,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22124,32 +22347,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22183,17 +22391,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22262,6 +22459,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22405,6 +22607,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22452,7 +22659,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22520,8 +22727,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22537,7 +22744,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22587,7 +22794,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22658,7 +22865,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22750,13 +22957,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22794,9 +23001,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22827,11 +23032,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22879,7 +23079,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22889,38 +23089,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22964,14 +23142,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22987,19 +23161,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -23016,9 +23186,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -23038,18 +23206,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23057,8 +23216,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23128,7 +23285,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23147,7 +23304,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23186,15 +23343,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23226,7 +23383,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23252,7 +23409,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23427,7 +23584,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23473,7 +23630,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23562,6 +23719,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23588,6 +23747,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23668,7 +23833,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23705,6 +23870,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23731,8 +23902,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23761,6 +23938,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23814,6 +23997,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23894,12 +24083,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23985,8 +24174,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24150,6 +24341,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24217,7 +24418,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24307,7 +24508,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24323,7 +24524,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24510,7 +24711,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24535,7 +24735,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24546,7 +24745,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24676,8 +24875,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24686,10 +24883,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24728,7 +24924,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24786,7 +24982,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24880,7 +25076,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24935,7 +25131,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24948,7 +25144,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25057,7 +25253,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25235,6 +25431,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25294,6 +25491,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25364,7 +25566,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25472,7 +25674,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25491,10 +25693,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25564,10 +25762,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25634,7 +25828,7 @@ msgid "" "" msgstr "" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "" @@ -25692,11 +25886,11 @@ msgstr "" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "" @@ -25735,7 +25929,7 @@ msgstr "" msgid "The number of seconds until the request expires" msgstr "" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "" @@ -25751,15 +25945,15 @@ msgid "" "" msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25771,7 +25965,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25832,7 +26026,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25861,7 +26055,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25885,7 +26079,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25899,6 +26093,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25924,7 +26124,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25948,7 +26148,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25975,7 +26175,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25991,7 +26191,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -26054,7 +26254,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26110,15 +26310,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26126,7 +26318,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26192,7 +26384,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26230,7 +26422,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26456,10 +26647,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26513,7 +26702,7 @@ msgid "" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26549,7 +26738,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26624,7 +26813,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26645,6 +26834,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26672,7 +26867,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26680,7 +26875,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26742,9 +26937,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26770,16 +26965,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26788,11 +26975,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26879,7 +27061,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26926,7 +27108,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26959,6 +27141,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27181,33 +27368,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27240,7 +27459,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27257,7 +27476,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27265,16 +27484,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27297,6 +27520,14 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "" +"Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27305,7 +27536,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27352,7 +27583,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27372,10 +27603,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27498,7 +27734,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27776,7 +28012,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27882,12 +28118,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27988,15 +28224,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -28017,7 +28253,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -28046,7 +28282,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28186,15 +28422,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28220,6 +28456,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28233,7 +28475,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28313,7 +28555,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28557,7 +28799,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28600,6 +28842,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28658,7 +28901,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28666,9 +28908,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28868,11 +29108,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28958,7 +29198,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29099,12 +29339,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29226,7 +29466,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29287,7 +29527,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29327,11 +29567,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29354,7 +29594,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29362,11 +29602,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29382,7 +29622,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29390,7 +29630,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29435,7 +29675,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29477,7 +29717,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29554,11 +29794,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29566,19 +29810,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29643,15 +29887,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29671,7 +29915,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29754,7 +29998,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29795,11 +30039,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29819,11 +30063,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29837,7 +30081,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29849,7 +30093,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29873,7 +30117,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29896,7 +30140,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29953,8 +30197,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30068,7 +30312,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30120,8 +30364,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30154,7 +30398,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30194,8 +30438,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30384,8 +30628,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30678,7 +30922,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30719,7 +30963,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30727,7 +30971,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30757,7 +31001,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30825,7 +31069,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30845,11 +31093,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30919,6 +31163,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30940,7 +31188,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30948,11 +31196,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30960,15 +31208,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30992,7 +31240,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -31002,7 +31250,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -31015,11 +31264,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31052,23 +31301,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31080,7 +31329,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31109,16 +31358,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31155,11 +31400,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31201,7 +31446,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31271,11 +31516,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31388,7 +31633,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31424,11 +31669,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31450,7 +31695,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po index 51c022ecde..b50ba1409f 100644 --- a/frappe/locale/nl.po +++ b/frappe/locale/nl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" #: frappe/templates/emails/download_data.html:9 msgid " to your browser" -msgstr "naar uw browser" +msgstr " naar uw browser" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' @@ -32,7 +32,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "" +msgstr "Bedrijfsgeschiedenis" #: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" @@ -50,7 +50,7 @@ msgstr "" #: frappe/utils/csvutils.py:246 msgid "\"{0}\" is not a valid Google Sheets URL" -msgstr "" +msgstr ""{0}" is geen geldige Google Spreadsheets-URL" #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 @@ -59,16 +59,16 @@ msgstr "" #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 msgid "${values.doctype_name} has been added to queue for optimization" -msgstr "" +msgstr "${values.doctype_name} is toegevoegd aan de wachtrij voor optimalisatie" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "© Frappe Technologies Pvt. Ltd. and contributors" -msgstr "" +msgstr "© Frappe Technologies Pvt. Ltd. en bijdragers" #. Label of the head_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "<head> HTML" -msgstr "" +msgstr "<head> HTML" #: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" @@ -76,7 +76,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1354 msgid "'In Global Search' not allowed for type {0} in row {1}" -msgstr "" +msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}" #: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" @@ -88,23 +88,23 @@ msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" -msgstr "" +msgstr "'Ontvangers' niet gespecificeerd" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" #: frappe/core/doctype/doctype/doctype.py:1348 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "" +msgstr "'{0}' niet toegestaan voor type {1} in rij {2}" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" -msgstr "" +msgstr "(Verplicht)" #: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" -msgstr "" +msgstr "** Mislukt: {0} tot {1}: {2}" #: frappe/public/js/frappe/list/list_settings.js:135 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 @@ -120,11 +120,11 @@ msgstr "" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "" +msgstr "0 is het hoogst" #: frappe/public/js/frappe/form/grid_row.js:876 msgid "1 = True & 0 = False" -msgstr "" +msgstr "1 = Waar & 0 = Onwaar" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -134,100 +134,100 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 dag" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." msgstr "1 Google Agenda-evenement gesynchroniseerd." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" -msgstr "" +msgstr "1 rapport" #: frappe/website/doctype/blog_post/blog_post.py:380 msgid "1 comment" msgstr "1 reactie" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" -msgstr "" +msgstr "1 dag geleden" #: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 uur" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 uur geleden" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 minuut geleden" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 maand geleden" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 van 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" msgstr "1 record wordt geëxporteerd" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" -msgstr "" +msgstr "1 seconde geleden" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 week geleden" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 jaar geleden" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" -msgstr "" +msgstr "2 uur geleden" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" -msgstr "" +msgstr "2 maanden geleden" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" -msgstr "" +msgstr "2 weken geleden" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" -msgstr "" +msgstr "2 jaren geleden" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" -msgstr "" +msgstr "3 minuten geleden" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 minuten" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 uren" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "5 records" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" -msgstr "" +msgstr "5 dagen geleden" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" @@ -237,17 +237,17 @@ msgstr "; niet toegelaten in conditie" #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<" -msgstr "" +msgstr "<" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<=" -msgstr "" +msgstr "<=" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} is geen geldige URL" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Een uitgelicht bericht moet een omslagafbeelding hebben" @@ -578,7 +578,7 @@ msgstr "Een nieuw account is aangemaakt voor u op {0}" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." -msgstr "" +msgstr "Er is een terugkerende {0} {1} voor u gemaakt via Auto Repeat {2}." #. Description of the 'Symbol' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Een vrijstaand woord is gemakkelijk te raden." @@ -771,7 +778,7 @@ msgstr "" #: frappe/core/doctype/access_log/access_log.json #: frappe/core/workspace/users/users.json msgid "Access Log" -msgstr "" +msgstr "Toegangslogboek" #. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' #. Label of the access_token (Password) field in DocType 'Token Cache' @@ -787,13 +794,13 @@ msgstr "" #: frappe/auth.py:491 msgid "Access not allowed from this IP Address" -msgstr "" +msgstr "Toegang niet toegestaan vanaf dit IP-adres" #. Label of the account_section (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Account" -msgstr "" +msgstr "Rekening" #. Label of the account_deletion_settings_section (Section Break) field in #. DocType 'Website Settings' @@ -814,7 +821,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Accounts User" -msgstr "" +msgstr "Gebruikersaccounts" #: frappe/public/js/frappe/form/dashboard.js:510 msgid "Accurate count can not be fetched, click here to view all documents" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Actie is mislukt" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Acties" @@ -939,7 +945,7 @@ msgstr "" #: frappe/desk/doctype/system_health_report/system_health_report.json #: frappe/www/third_party_apps.html:34 msgid "Active Sessions" -msgstr "" +msgstr "Actieve Sessies" #. Group in User's connections #: frappe/core/doctype/user/user.json @@ -964,8 +970,8 @@ msgstr "Activiteitenlogboek" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Toevoegen" @@ -982,7 +988,7 @@ msgstr "Toevoegen / bijwerken" msgid "Add A New Rule" msgstr "Voeg een nieuwe regel toe" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Voeg bijlage toe" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Grafiek toevoegen aan dashboard" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "Onderliggende toevoegen" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Groep toevoegen" @@ -1077,7 +1083,7 @@ msgstr "Voeg deelnemers toe" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Handtekening toevoegen" @@ -1110,12 +1116,12 @@ msgstr "Abonnees toevoegen" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,17 +1228,17 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" -msgstr "" +msgstr "Toevoegen aan dashboard" #: frappe/public/js/frappe/form/sidebar/assign_to.js:99 msgid "Add to ToDo" -msgstr "" +msgstr "Toevoegen aan taak" #: frappe/website/doctype/website_slideshow/website_slideshow.js:32 msgid "Add to table" -msgstr "" +msgstr "Voeg toe aan tabel" #: frappe/public/js/frappe/form/footer/form_timeline.js:99 msgid "Add to this activity by mailing to {0}" @@ -1265,7 +1271,7 @@ msgstr "" #: frappe/public/js/frappe/form/link_selector.js:180 #: frappe/public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" -msgstr "" +msgstr "Toegevoegd {0} ({1})" #. Label of the additional_permissions (Section Break) field in DocType 'Custom #. DocPerm' @@ -1288,14 +1294,14 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" -msgstr "" +msgstr "Adres" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "" +msgstr "Adres Lijn 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' @@ -1333,12 +1339,12 @@ msgstr "" #: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" -msgstr "" +msgstr "Adressen" #. Name of a report #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json msgid "Addresses And Contacts" -msgstr "" +msgstr "Adressen en Contacten" #. Description of a DocType #: frappe/custom/doctype/client_script/client_script.json @@ -1352,7 +1358,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" -msgstr "" +msgstr "Toediening" #. Name of a role #: frappe/contacts/doctype/salutation/salutation.json @@ -1375,13 +1381,13 @@ msgstr "" #: frappe/desk/doctype/system_console/system_console.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Administrator" -msgstr "" +msgstr "Beheerder" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "App Naam" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} is niet geïnstalleerd" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Toewijzingsregel toepassen" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2461,11 +2505,11 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" -msgstr "" +msgstr "Opdrachtupdate op {0}" #: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" -msgstr "" +msgstr "Toewijzing voor {0} {1}" #: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" @@ -2476,7 +2520,7 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:255 msgid "Assignments" -msgstr "" +msgstr "opdrachten" #: frappe/public/js/frappe/form/grid_row.js:680 msgid "At least one column is required to show in the grid." @@ -2503,9 +2547,9 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" -msgstr "" +msgstr "Toevoegen Document Print" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -2536,7 +2580,7 @@ msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." -msgstr "" +msgstr "Voeg bestanden / url's toe en voeg in de tabel toe." #. Label of the attached_file (Code) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po index 13e21b81da..1400f4927b 100644 --- a/frappe/locale/pl.po +++ b/frappe/locale/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -537,11 +537,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -568,6 +563,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -602,6 +602,13 @@ msgstr "Symbol waluty. Np. $" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -846,7 +853,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -863,7 +869,7 @@ msgstr "Akcja / Trasa" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -912,10 +918,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -977,8 +983,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -995,7 +1001,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1019,7 +1025,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1028,8 +1034,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1065,7 +1071,7 @@ msgid "Add Gray Background" msgstr "Dodaj szare tło" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1090,7 +1096,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1100,7 +1106,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1123,12 +1129,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1235,7 +1241,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1390,11 +1396,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1502,6 +1508,14 @@ msgstr "Alarm" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1542,7 +1556,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1619,7 +1632,7 @@ msgstr "Zezwól na dużą liczbę edycji" #. Label of the allow_edit (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow Bulk Editing" -msgstr "" +msgstr "Zezwalaj na masową edycję" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' @@ -1767,7 +1780,8 @@ msgstr "" #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow editing even if the doctype has a workflow set up.\n\n" "Does nothing if a workflow isn't set up." -msgstr "" +msgstr "Opcja \"Zezwalaj na masową edycję\" pozwala na edycję wielu rekordów naraz, nawet jeśli dany typ dokumentu ma zdefiniowany obieg pracy.\n" +"Jeśli obieg pracy nie jest ustawiony, opcja ta nie ma żadnego wpływu." #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -1872,6 +1886,12 @@ msgstr "Dozwolony do Oznaczenia" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1888,7 +1908,43 @@ msgstr "Dozwolone domeny osadzania" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1979,7 +2035,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Zmiana niedozwolona" @@ -1987,7 +2043,7 @@ msgstr "Zmiana niedozwolona" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2068,16 +2124,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "App ID klienta" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Tajny Klient App" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2091,21 +2137,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2170,7 +2219,7 @@ msgstr "Data zastosowania" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2251,7 +2300,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2283,7 +2332,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2319,10 +2368,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2355,16 +2400,16 @@ msgstr "" msgid "Assign Condition" msgstr "Przypisz warunek" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2516,7 +2561,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2576,9 +2621,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Załącznik" @@ -2605,20 +2648,17 @@ msgid "Attachment Removed" msgstr "Usunięto Attachment" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2626,11 +2666,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2675,6 +2710,11 @@ msgstr "" msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2909,7 +2949,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3014,7 +3054,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3057,7 +3097,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3662,7 +3702,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "DW" @@ -3785,10 +3825,8 @@ msgstr "Tytuł oddzwonienia" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3855,7 +3893,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3873,11 +3911,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3944,11 +3978,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,7 +4010,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4065,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4068,7 +4102,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4113,7 +4147,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4139,7 +4173,7 @@ msgstr "Karta" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4170,10 +4204,6 @@ msgstr "Kategoria Opis" msgid "Category Name" msgstr "Nazwa kategorii" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4281,7 +4311,7 @@ msgstr "Konfiguracja wykresu" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Nazwa wykresu" @@ -4338,10 +4368,6 @@ msgstr "Czek" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4365,10 +4391,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4415,6 +4437,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4454,15 +4480,19 @@ msgstr "Miasto/Miejscowość" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4488,7 +4518,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4504,10 +4534,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4587,8 +4613,10 @@ msgid "Client Credentials" msgstr "Referencje klientów" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "Identyfikator klienta" @@ -4604,6 +4632,12 @@ msgstr "" msgid "Client Information" msgstr "Informacja klientów" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4616,13 +4650,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Klient Secret" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4707,7 +4760,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4762,7 +4815,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4849,11 +4902,11 @@ msgstr "" msgid "Columns / Fields" msgstr "Kolumny / Pola" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -5012,7 +5065,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5102,6 +5155,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5138,7 +5197,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5147,7 +5206,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5160,7 +5219,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5169,17 +5228,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Szablon e-maila z potwierdzeniem" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5206,8 +5260,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5299,6 +5353,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Opcje kontaktu, takie jak „Zapytanie o sprzedaż, Zapytanie o wsparcie” itp., Każda na nowej linii lub oddzielone przecinkami." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5310,8 +5369,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5319,8 +5376,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5344,10 +5400,8 @@ msgstr "Treść (Markdown)" msgid "Content Hash" msgstr "Hash zawartości" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5404,7 +5458,7 @@ msgstr "Status wkładu" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5420,7 +5474,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5445,7 +5499,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5453,6 +5507,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5469,7 +5527,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5508,7 +5566,7 @@ msgstr "Licznik" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5540,7 +5598,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5554,13 +5612,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5639,11 +5697,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5992,6 +6045,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6025,12 +6082,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6049,7 +6106,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6175,7 +6232,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6342,7 +6399,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6406,6 +6462,11 @@ msgstr "" msgid "Day of Week" msgstr "Dzień tygodnia" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6670,15 +6731,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6714,7 +6776,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6756,12 +6818,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6985,6 +7047,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7060,7 +7123,7 @@ msgstr "Wyłącz automatyczne odświeżanie" #. 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Automatic Recency Filters" -msgstr "" +msgstr "Wyłącz automatyczne filtry aktualności" #. Label of the disable_change_log_notification (Check) field in DocType #. 'System Settings' @@ -7168,8 +7231,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7178,7 +7241,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7336,6 +7399,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7581,7 +7645,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7738,7 +7802,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7875,7 +7939,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7929,7 +7993,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8013,7 +8077,7 @@ msgid "Due Date Based On" msgstr "Termin wykonania oparty na" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8128,9 +8192,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8142,7 +8206,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8177,11 +8241,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8356,10 +8420,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8394,7 +8457,7 @@ msgstr "" msgid "Email Account Name" msgstr "Nazwa konta e-mail" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8450,11 +8513,9 @@ msgstr "Stopka dla e-maila" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8503,7 +8564,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8527,18 +8588,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "Wiadomość wysłana" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8574,7 +8628,7 @@ msgstr "Opcja synchronizacji poczty elektronicznej" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8606,7 +8660,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8632,7 +8686,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8645,10 +8699,18 @@ msgstr "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniam msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8684,6 +8746,12 @@ msgstr "Włącz automatyczne łączenie w dokumentach" msgid "Enable Comments" msgstr "Włącz komentarze" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8843,8 +8911,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8971,7 +9039,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9074,7 +9142,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9112,6 +9180,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9277,7 +9353,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9303,11 +9379,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9360,13 +9440,13 @@ msgstr "Czas wygaśnięcia strony z obrazem QR Code" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9724,8 +9804,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9796,7 +9876,7 @@ msgstr "Pole do śledzenia" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9839,7 +9919,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9855,7 +9935,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9907,6 +9987,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10072,6 +10156,14 @@ msgstr "" msgid "Filter Values" msgstr "Filtruj wartości" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10283,7 +10375,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10291,7 +10383,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10315,10 +10407,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10479,7 +10567,7 @@ msgstr "" msgid "For Value" msgstr "Dla wartości" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10735,15 +10823,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10759,7 +10845,7 @@ msgstr "" msgid "From Date Field" msgstr "Od pola daty" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10810,7 +10896,7 @@ msgstr "Pełna szerokość" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10819,10 +10905,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10884,7 +10974,7 @@ msgstr "" msgid "Generate Keys" msgstr "Generuj klucze" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10892,8 +10982,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -11008,7 +11098,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "Globalny Wyrejestrowanie" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11172,8 +11262,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "Identyfikator kontaktów Google" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11210,6 +11298,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11304,6 +11393,10 @@ msgstr "Grupuj według typu" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11318,7 +11411,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11352,7 +11445,6 @@ msgstr "GG: mm: ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11366,11 +11458,10 @@ msgstr "GG: mm: ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11599,7 +11690,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11635,12 +11726,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11747,7 +11843,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Ukryj standardowego menu" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11802,7 +11898,7 @@ msgstr "Najpierw zostanie zastosowana zasada wyższego priorytetu" msgid "Highlight" msgstr "Leflektor" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11875,20 +11971,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "Limit stawki godzinowej za generowanie linków do resetowania hasła" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Jaka powinna być waluta? Jeśli nie jest ustawiona, użyje domyślnych ustawień systemowych" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12293,7 +12399,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12341,7 +12447,7 @@ msgstr "Bezwarunkowy" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12569,11 +12675,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12640,11 +12750,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12731,7 +12841,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12796,11 +12906,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12922,7 +13032,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12950,7 +13060,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12958,7 +13068,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12970,6 +13080,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12982,7 +13097,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13016,7 +13131,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13028,13 +13143,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13078,11 +13193,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13094,10 +13237,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13106,11 +13269,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13132,10 +13310,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13543,8 +13733,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13577,11 +13767,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13869,7 +14059,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14165,7 +14355,7 @@ msgstr "List" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14293,6 +14483,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14475,7 +14669,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14505,7 +14699,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14556,6 +14750,7 @@ msgid "Load Balancing" msgstr "Równoważenie obciążenia" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14576,7 +14771,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14788,6 +14983,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14974,7 +15174,7 @@ msgstr "Obowiązkowe zależy od" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15074,11 +15274,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15199,7 +15397,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15267,7 +15465,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15280,11 +15477,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15295,16 +15491,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Wiadomość (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Wiadomość (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15331,7 +15517,7 @@ msgstr "Widomość wysłana" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15409,6 +15595,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15428,7 +15620,7 @@ msgstr "" msgid "Method" msgstr "Metoda" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15478,6 +15670,11 @@ msgstr "Minimalny Wynik Hasła" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15517,7 +15714,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15525,7 +15722,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15591,7 +15788,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15873,7 +16070,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15891,7 +16088,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16033,12 +16230,12 @@ msgstr "Szablon paska nawigacyjnego" msgid "Navbar Template Values" msgstr "Wartości szablonu paska nawigacyjnego" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16057,10 +16254,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16143,7 +16344,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16166,10 +16367,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16182,7 +16379,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16227,7 +16424,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16251,7 +16467,7 @@ msgstr "Wstawiam nową wartość" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16259,19 +16475,19 @@ msgstr "Wstawiam nową wartość" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16283,52 +16499,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16445,7 +16626,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16474,7 +16655,7 @@ msgid "No Copy" msgstr "Brak kopii" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16586,11 +16767,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16618,10 +16799,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16658,7 +16835,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16678,7 +16855,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16737,7 +16914,7 @@ msgstr "Nie rzędów (max 500)" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16830,6 +17007,12 @@ msgstr "Nieujemne" msgid "Non-Conforming" msgstr "Niezgodne" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Żaden" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16844,7 +17027,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16865,7 +17048,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16891,16 +17074,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16910,8 +17093,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16928,7 +17111,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16945,7 +17127,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16961,7 +17143,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -17002,7 +17184,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17180,7 +17362,7 @@ msgstr "Informuj jeśli Tematy bez do (w min)" msgid "Notify users with a popup when they log in" msgstr "Informuj użytkownikom popup podczas logowania" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17323,6 +17505,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17395,6 +17582,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17466,7 +17657,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17542,7 +17733,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17568,7 +17759,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17599,7 +17790,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17607,7 +17798,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17695,7 +17886,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17740,7 +17931,7 @@ msgstr "Otwarty" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17750,7 +17941,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17839,6 +18030,10 @@ msgstr "" msgid "Order" msgstr "Zamówienie" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17851,7 +18046,7 @@ msgstr "Historia Organizacji" msgid "Org History Heading" msgstr "Nagłówek Historii Organizacji" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17933,9 +18128,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18230,11 +18427,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18294,11 +18491,11 @@ msgstr "Nieaktywny" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18332,11 +18529,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18344,11 +18541,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18356,10 +18553,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18505,7 +18698,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18657,11 +18850,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18719,7 +18912,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18735,7 +18928,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18767,7 +18960,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18832,7 +19025,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18849,23 +19042,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18873,7 +19066,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18885,7 +19078,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18898,11 +19091,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18918,7 +19111,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18930,10 +19123,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18962,11 +19151,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18982,7 +19171,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18990,7 +19179,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19020,11 +19209,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19048,7 +19237,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19060,7 +19249,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19097,14 +19286,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19150,7 +19344,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19194,6 +19388,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19253,15 +19451,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19282,8 +19480,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19328,7 +19524,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19399,16 +19595,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19463,6 +19659,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19473,6 +19674,10 @@ msgstr "Format Drukuj Pomoc" msgid "Print Format Type" msgstr "Drukuj Typ Formatu" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19504,11 +19709,11 @@ msgstr "Ukryj Druk" msgid "Print Hide If No Value" msgstr "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19526,7 +19731,7 @@ msgstr "Serwer druku" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19636,6 +19841,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19646,7 +19855,7 @@ msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19671,7 +19880,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19758,6 +19967,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19766,14 +19979,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19781,7 +19987,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19905,7 +20110,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -20002,7 +20207,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20025,19 +20229,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20127,7 +20323,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20162,7 +20358,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20238,7 +20434,7 @@ msgstr "Odczytany przez odbiorcę" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20258,7 +20454,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20404,12 +20600,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20623,11 +20819,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20666,7 +20862,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20715,7 +20911,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20746,7 +20942,7 @@ msgstr "Pamiętaj ostatnio wybrane wartości" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20828,7 +21024,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20856,7 +21052,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20956,6 +21152,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20971,8 +21169,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21041,7 +21242,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21093,11 +21294,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21105,7 +21306,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21113,7 +21314,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21126,7 +21327,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21149,7 +21350,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21334,6 +21535,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21459,10 +21685,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21565,7 +21789,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21599,7 +21823,7 @@ msgstr "" msgid "Role and Level" msgstr "Rola i Poziom" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21673,7 +21897,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21687,7 +21910,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21714,7 +21936,7 @@ msgstr "Przekierowania trasy" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21805,7 +22027,7 @@ msgstr "Reguła" msgid "Rule Conditions" msgstr "Warunki reguł" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21994,12 +22216,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22026,7 +22248,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22045,7 +22267,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22090,32 +22312,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22149,17 +22356,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Zaplanowane do wysłania" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22228,6 +22424,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22371,6 +22572,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22418,7 +22624,7 @@ msgstr "Ustawienia Zabezpieczeń" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22486,8 +22692,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22503,7 +22709,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22553,7 +22759,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22624,7 +22830,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22716,13 +22922,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22760,9 +22966,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22793,11 +22997,6 @@ msgstr "Wyślij alarm na" msgid "Send Email Alert" msgstr "Wyślij powiadomienie e-mailem" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22845,7 +23044,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "Wyślij Druk w formacie PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22855,38 +23054,16 @@ msgstr "" msgid "Send System Notification" msgstr "Wyślij powiadomienie systemowe" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Wyślij do wszystkich przypisanych" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Wyślij link Wyrejestrowanie" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Wyślij e-mail powitalny" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22930,14 +23107,10 @@ msgstr "Wyślij zapytania na te adresy e-mail" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22953,19 +23126,15 @@ msgstr "Wyślij wiadomość do maila wypisz" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22982,9 +23151,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -23004,18 +23171,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23023,8 +23181,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23094,7 +23250,7 @@ msgstr "" msgid "Server Action" msgstr "Działanie serwera" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23113,7 +23269,7 @@ msgstr "IP serwera" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23152,15 +23308,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23192,7 +23348,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "Ustaw baner z obrazka" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23218,7 +23374,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23390,7 +23546,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23436,7 +23592,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23525,6 +23681,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23551,6 +23709,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23631,7 +23795,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "Pokaż podziały wiersza po sekcji" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23668,6 +23832,12 @@ msgstr "Pokaż podgląd podglądu" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23694,8 +23864,14 @@ msgstr "Pokaż Sekcja Nagłówki" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23724,6 +23900,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23777,6 +23959,12 @@ msgstr "Pokaż pełny formularz zamiast szybkiego wpisu" msgid "Show in Module Section" msgstr "Pokaż w sekcji Module" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23857,12 +24045,12 @@ msgstr "Pasek boczny i Komentarze" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23948,8 +24136,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Przejdź Authorization" @@ -24113,6 +24303,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "Soft-odbił" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24180,7 +24380,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24270,7 +24470,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24286,7 +24486,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24473,7 +24673,6 @@ msgstr "Statystyki Interwał czasowy" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24498,7 +24697,6 @@ msgstr "Statystyki Interwał czasowy" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24509,7 +24707,7 @@ msgstr "Statystyki Interwał czasowy" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24639,8 +24837,6 @@ msgstr "Subdomena" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24649,10 +24845,9 @@ msgstr "Subdomena" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24691,7 +24886,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24749,7 +24944,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24843,7 +25038,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24898,7 +25093,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24911,7 +25106,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25020,7 +25215,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25198,6 +25393,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25257,6 +25453,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25327,7 +25528,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25435,7 +25636,7 @@ msgstr "Ostrzeżenia szablonu" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25454,10 +25655,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25523,10 +25720,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25591,7 +25784,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25727,7 +25920,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25788,7 +25981,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25817,7 +26010,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25841,7 +26034,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25855,6 +26048,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25880,7 +26079,7 @@ msgstr "Uwierzytelnianie przy pomocy trzeciej strony" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25904,7 +26103,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25931,7 +26130,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25947,7 +26146,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -26008,7 +26207,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Występuje ponad slideshow" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26064,15 +26263,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26080,7 +26271,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26146,7 +26337,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26184,7 +26375,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26410,10 +26600,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26461,7 +26649,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26497,7 +26685,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26572,7 +26760,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26593,6 +26781,12 @@ msgstr "Znak" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26620,7 +26814,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26628,7 +26822,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26690,9 +26884,9 @@ msgstr "" msgid "Topic" msgstr "Temat" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26718,16 +26912,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Wszystkich zapisani" @@ -26736,11 +26922,6 @@ msgstr "Wszystkich zapisani" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26826,7 +27007,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26873,7 +27054,7 @@ msgstr "Przejścia" msgid "Translatable" msgstr "Przetłumaczalny" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26906,6 +27087,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27127,33 +27313,65 @@ msgstr "Adres URL dokumentacji lub pomocy" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "Adres URL, do którego należy przejść po kliknięciu obrazu pokazu slajdów" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27186,7 +27404,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27203,7 +27421,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Stan niepodpisania" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27211,16 +27429,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27243,6 +27465,13 @@ msgstr "" msgid "Unique" msgstr "Unikalny" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27251,7 +27480,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27298,7 +27527,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27318,10 +27547,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27444,7 +27678,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27722,7 +27956,7 @@ msgstr "Użytkownik nie może stworzyć" msgid "User Cannot Search" msgstr "Użytkownik nie może szukać" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27828,12 +28062,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27934,15 +28168,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27963,7 +28197,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27992,7 +28226,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28132,15 +28366,15 @@ msgstr "Wartość Zmieniona" msgid "Value To Be Set" msgstr "Wartość, którą należy ustawić" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28166,6 +28400,12 @@ msgstr "Wartość z tego pola zostanie ustawiona jako termin w Do zrobienia" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28179,7 +28419,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28259,7 +28499,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28503,7 +28743,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28546,6 +28786,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28604,7 +28845,6 @@ msgstr "Adres URL webhooka" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28612,9 +28852,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28814,11 +29052,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28904,7 +29142,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29045,12 +29283,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29172,7 +29410,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29233,7 +29471,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29273,11 +29511,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29300,7 +29538,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29308,11 +29546,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29328,7 +29566,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29336,7 +29574,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29381,7 +29619,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29423,7 +29661,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29500,11 +29738,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29512,19 +29754,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29589,15 +29831,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29617,7 +29859,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29700,7 +29942,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29741,11 +29983,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29765,11 +30007,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29783,7 +30025,7 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29795,7 +30037,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29819,7 +30061,7 @@ msgstr "" msgid "_report" msgstr "_raport" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29842,7 +30084,7 @@ msgstr "po" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29899,8 +30141,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30014,7 +30256,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30066,8 +30308,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30100,7 +30342,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30140,8 +30382,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30330,8 +30572,8 @@ msgstr "odpowiedź" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30624,7 +30866,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30665,7 +30907,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30673,7 +30915,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30703,7 +30945,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30771,7 +31013,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30791,11 +31037,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30865,6 +31107,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30886,7 +31132,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30894,11 +31140,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30906,15 +31152,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30938,7 +31184,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30948,7 +31194,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30961,11 +31208,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30998,23 +31245,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31026,7 +31273,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31055,16 +31302,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31101,11 +31344,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31147,7 +31390,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31217,11 +31460,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31334,7 +31577,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31370,11 +31613,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31396,7 +31639,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po index f4904c1329..da2f7913fc 100644 --- a/frappe/locale/pt.po +++ b/frappe/locale/pt.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' @@ -55,7 +55,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 msgid "#{0}" -msgstr "" +msgstr "#{0}" #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 msgid "${values.doctype_name} has been added to queue for optimization" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -100,7 +100,7 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" -msgstr "" +msgstr "(Obrigatório)" #: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,12 +905,12 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" -msgstr "" +msgstr "Ações" #. Label of the activate (Check) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json @@ -946,7 +952,7 @@ msgstr "" #: frappe/public/js/frappe/form/dashboard.js:22 #: frappe/public/js/frappe/form/footer/form_timeline.js:60 msgid "Activity" -msgstr "" +msgstr "Atividade" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,13 +1021,13 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" -msgstr "" +msgstr "Adicionar Coluna" #: frappe/core/doctype/communication/communication.js:127 msgid "Add Contact" @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1288,7 +1294,7 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" -msgstr "" +msgstr "Endereço" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,11 +1543,10 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" -msgstr "" +msgstr "Todos" #. Label of the all_day (Check) field in DocType 'Calendar View' #. Label of the all_day (Check) field in DocType 'Event' @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2501,9 +2545,9 @@ msgstr "" #: frappe/public/js/frappe/form/controls/attach.js:5 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" -msgstr "" +msgstr "Anexar" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" -msgstr "" +msgstr "Anexos" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3257,7 +3296,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:27 msgid "Between" -msgstr "" +msgstr "Entre" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3770,12 +3809,10 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 #: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" -msgstr "" +msgstr "Câmera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3840,17 +3877,17 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" -msgstr "" +msgstr "Cancelar" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: frappe/public/js/frappe/ui/messages.js:68 msgctxt "Secondary button in warning dialog" msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: frappe/public/js/frappe/form/form.js:979 msgid "Cancel All" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4439,17 +4464,21 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:12 #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Clear" -msgstr "" +msgstr "Claro" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4626,7 +4678,7 @@ msgstr "" #: frappe/public/js/frappe/ui/messages.js:251 #: frappe/website/js/bootstrap-4.js:24 msgid "Close" -msgstr "" +msgstr "Fechar" #. Label of the close_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,14 +4801,14 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json #: frappe/website/doctype/social_link_settings/social_link_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Color" -msgstr "" +msgstr "Cor" #. Label of the column (Data) field in DocType 'Recorder Suggested Index' #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4897,7 +4949,7 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:135 #: frappe/website/doctype/web_form/templates/web_form.html:122 msgid "Comments" -msgstr "" +msgstr "Comentários" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5022,7 +5074,7 @@ msgstr "" #: frappe/utils/goal.py:117 #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed" -msgstr "" +msgstr "Concluído" #. Label of the completed_by_role (Link) field in DocType 'Workflow Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,16 +5183,16 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "" +msgstr "Confirmar" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5243,7 +5296,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.js:113 msgid "Contact" -msgstr "" +msgstr "Contacto" #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Contactos" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,15 +5362,14 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:41 msgid "Content" -msgstr "" +msgstr "Conteúdo" #. Label of the content_html (HTML Editor) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -5331,14 +5386,12 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" -msgstr "" +msgstr "Tipo de Conteúdo" #: frappe/desk/doctype/workspace/workspace.py:86 msgid "Content data shoud be a list" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,11 +5584,11 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" -msgstr "" +msgstr "Criar" #: frappe/core/doctype/doctype/doctype_list.js:102 msgid "Create & Continue" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5579,12 +5636,12 @@ msgstr "" #: frappe/public/js/frappe/views/treeview.js:378 #: frappe/workflow/page/workflow_builder/workflow_builder.js:41 msgid "Create New" -msgstr "" +msgstr "Criar Novo" #: frappe/public/js/frappe/list/list_view.js:509 msgctxt "Create a new document from list view" msgid "Create New" -msgstr "" +msgstr "Criar Novo" #: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5742,7 +5794,7 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Currency" -msgstr "" +msgstr "Moeda" #. Label of the currency_name (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6242,7 +6298,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Data" -msgstr "" +msgstr "Dados" #: frappe/public/js/frappe/form/controls/data.js:59 msgid "Data Clipped" @@ -6329,11 +6385,10 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" -msgstr "" +msgstr "Data" #. Label of the date_format (Select) field in DocType 'Language' #. Label of the date_format (Select) field in DocType 'System Settings' @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6456,7 +6516,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" -msgstr "" +msgstr "Padrão" #: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" @@ -6657,18 +6717,19 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" -msgstr "" +msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" -msgstr "" +msgstr "Eliminar" #: frappe/www/me.html:65 msgid "Delete Account" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6911,7 +6972,7 @@ msgstr "" #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json #: frappe/www/attribution.html:24 msgid "Description" -msgstr "" +msgstr "Descrição" #. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,22 +7227,22 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 msgid "Discard" -msgstr "" +msgstr "Descartar" #: frappe/website/doctype/web_form/templates/web_form.html:44 msgctxt "Button in web form" msgid "Discard" -msgstr "" +msgstr "Descartar" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "" +msgstr "Descartar" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7872,7 +7935,7 @@ msgstr "" #: frappe/public/js/print_format_builder/HTMLEditor.vue:5 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "Feito" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -7992,7 +8055,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Due Date" -msgstr "" +msgstr "Data de Vencimento" #. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -8000,9 +8063,9 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" -msgstr "" +msgstr "Duplicar" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" @@ -8043,7 +8106,7 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" -msgstr "" +msgstr "Duração" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8127,22 +8190,22 @@ msgstr "" #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 #: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "" +msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" -msgstr "" +msgstr "Editar" #: frappe/website/doctype/web_form/templates/web_form.html:23 msgctxt "Button in web form" msgid "Edit" -msgstr "" +msgstr "Editar" #: frappe/public/js/frappe/form/grid_row.js:345 msgctxt "Edit grid row" msgid "Edit" -msgstr "" +msgstr "Editar" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 msgid "Edit Address in Form" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,11 +8897,11 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" -msgstr "" +msgstr "Ativado" #: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9017,7 +9084,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "" +msgstr "Iguais" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -9039,12 +9106,12 @@ msgstr "" #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" -msgstr "" +msgstr "Erro" #: frappe/public/js/frappe/web_form/web_form.js:240 msgctxt "Title of error message in web form" msgid "Error" -msgstr "" +msgstr "Erro" #. Name of a DocType #: frappe/core/doctype/error_log/error_log.json @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9283,18 +9358,22 @@ msgstr "" #: frappe/public/js/frappe/views/treeview.js:137 #: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" -msgstr "" +msgstr "Expandir" #: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" -msgstr "" +msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9321,7 +9400,7 @@ msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Expired" -msgstr "" +msgstr "Expirado" #. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' #. Label of the expires_in (Int) field in DocType 'Token Cache' @@ -9347,16 +9426,16 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" -msgstr "" +msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" -msgstr "" +msgstr "Exportar" #: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" @@ -9397,7 +9476,7 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" -msgstr "" +msgstr "Tipo de exportação" #: frappe/public/js/frappe/views/reports/report_view.js:1638 msgid "Export all matching rows?" @@ -9493,7 +9572,7 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" -msgstr "" +msgstr "Falhou" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -9711,12 +9790,12 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" -msgstr "" +msgstr "Campo" #: frappe/core/doctype/doctype/doctype.py:417 msgid "Field \"route\" is mandatory for Web Views" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10026,7 +10109,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "" +msgstr "Filtro" #: frappe/public/js/frappe/list/list_sidebar.html:36 msgid "Filter By" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10098,7 +10189,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/notification/notification.json msgid "Filters" -msgstr "" +msgstr "Filtros" #. Label of the filters_config (Code) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,18 +10809,16 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" -msgstr "" +msgstr "De" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" -msgstr "" +msgstr "De" #. Label of the from_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10856,7 +10945,7 @@ msgstr "" #: frappe/contacts/doctype/gender/gender.json #: frappe/core/doctype/user/user.json msgid "Gender" -msgstr "" +msgstr "Sexo" #: frappe/desk/page/setup_wizard/install_fixtures.py:32 msgid "Genderqueer" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11275,7 +11363,7 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" -msgstr "" +msgstr "Agrupar por" #. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -11951,7 +12056,7 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:458 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon" -msgstr "" +msgstr "Ícone" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12483,7 +12588,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "" +msgstr "Em progresso" #: frappe/database/database.py:287 msgid "In Read Only Mode" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12832,7 +12941,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" -msgstr "" +msgstr "Integrações" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13164,7 +13353,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" -msgstr "" +msgstr "É" #. Label of the is_active (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -13223,7 +13412,7 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:69 #: frappe/desk/doctype/dashboard/dashboard.json msgid "Is Default" -msgstr "" +msgstr "É Padrão" #. Label of the is_dynamic_url (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13834,7 +14023,7 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Label" -msgstr "" +msgstr "Rótulo" #. Label of the label_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -13898,7 +14087,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:652 msgid "Last 6 Months" -msgstr "" +msgstr "Últimos 6 meses" #: frappe/public/js/frappe/ui/filters/filter.js:624 msgid "Last 7 Days" @@ -14062,13 +14251,13 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Left" -msgstr "" +msgstr "Esquerda" #: frappe/printing/page/print_format_builder/print_format_builder.js:483 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 msgctxt "alignment" msgid "Left" -msgstr "" +msgstr "Esquerda" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14245,7 +14434,7 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "" +msgstr "Gostar" #. Label of the like_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,10 +14736,11 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" -msgstr "" +msgstr "Carregue mais" #: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14914,7 +15113,7 @@ msgstr "" #: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" -msgstr "" +msgstr "Faça {0}" #: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,11 +15383,11 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" -msgstr "" +msgstr "Médio" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Event Category' (Select) field in DocType 'Event' @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -15922,7 +16118,7 @@ msgstr "" #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" -msgstr "" +msgstr "Nome" #: frappe/integrations/doctype/webhook/webhook.js:29 msgid "Name (Doc Name)" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16070,7 +16270,7 @@ msgstr "" #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 msgid "New" -msgstr "" +msgstr "Novo" #: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16341,7 +16521,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" -msgstr "" +msgstr "Próximos 6 meses" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" @@ -16370,11 +16550,11 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:696 msgid "Next Month" -msgstr "" +msgstr "Próximo mês" #: frappe/public/js/frappe/ui/filters/filter.js:700 msgid "Next Quarter" -msgstr "" +msgstr "Próximo trimestre" #. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -16404,11 +16584,11 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:692 msgid "Next Week" -msgstr "" +msgstr "Próxima semana" #: frappe/public/js/frappe/ui/filters/filter.js:708 msgid "Next Year" -msgstr "" +msgstr "Próximo ano" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Next actions" @@ -16432,20 +16612,20 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "" +msgstr "Não" #: frappe/public/js/frappe/ui/filters/filter.js:546 msgctxt "Checkbox is not checked" msgid "No" -msgstr "" +msgstr "Não" #: frappe/public/js/frappe/ui/messages.js:37 msgctxt "Dismiss confirmation dialog" msgid "No" -msgstr "" +msgstr "Não" #: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16867,7 +17049,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "" +msgstr "Não Gostar" #: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,15 +17079,15 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" -msgstr "" +msgstr "Não Guardado" #: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17004,7 +17185,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" -msgstr "" +msgstr "Nota" #. Name of a DocType #: frappe/desk/doctype/note_seen_by/note_seen_by.json @@ -17125,7 +17306,7 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:50 #: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" -msgstr "" +msgstr "Notificações" #: frappe/public/js/frappe/ui/notifications/notifications.js:299 msgid "Notifications Disabled" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17572,7 +17762,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.py:131 #: frappe/contacts/doctype/contact/contact.py:158 msgid "Only one {0} can be set as primary." -msgstr "" +msgstr "Somente um {0} pode ser definido como primário." #: frappe/desk/reportview.py:357 msgid "Only reports of type Report Builder can be deleted" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17862,7 +18056,7 @@ msgstr "" #. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing" -msgstr "" +msgstr "Saída" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Account' @@ -17913,16 +18107,18 @@ msgstr "" #: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" -msgstr "" +msgstr "Dono" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18419,7 +18611,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" -msgstr "" +msgstr "Pendente" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18637,18 +18829,18 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" -msgstr "" +msgstr "Telefone" #. Label of the phone_no (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19604,7 +19808,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:211 #: frappe/website/doctype/web_page/web_page.json msgid "Priority" -msgstr "" +msgstr "Prioridade" #. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' @@ -19615,7 +19819,7 @@ msgstr "" #: frappe/desk/doctype/note/note_list.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" -msgstr "" +msgstr "Privado" #. Label of the private_files_size (Float) field in DocType 'System Health #. Report' @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19737,7 +19945,7 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:78 #: frappe/public/js/frappe/views/workspace/workspace.js:440 msgid "Public" -msgstr "" +msgstr "Público" #. Label of the public_files_size (Float) field in DocType 'System Health #. Report' @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,10 +20193,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" -msgstr "" +msgstr "Em Fila" #. Label of the queued_at (Datetime) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20034,7 +20229,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Quick Entry" -msgstr "" +msgstr "Registo Rápido" #: frappe/core/page/permission_manager/permission_manager_help.html:3 msgid "Quick Help for Setting Permissions" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20168,7 +20363,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" -msgstr "" +msgstr "Ler" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the read_only (Check) field in DocType 'DocField' @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20473,7 +20668,7 @@ msgstr "" #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" -msgstr "" +msgstr "DocType de Referência" #. Label of the reference_document (Dynamic Link) field in DocType 'Auto #. Repeat' @@ -20610,17 +20805,17 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" -msgstr "" +msgstr "Recarregar" #: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20919,7 +21114,7 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:563 #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Reply" -msgstr "" +msgstr "Responder" #: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21239,7 +21439,7 @@ msgstr "" #: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 #: frappe/website/doctype/portal_settings/portal_settings.js:19 msgid "Reset" -msgstr "" +msgstr "Redefinir" #: frappe/custom/doctype/customize_form/customize_form.js:136 msgid "Reset All Customizations" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21348,7 +21573,7 @@ msgstr "" #: frappe/core/doctype/deleted_document/deleted_document.js:11 #: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" -msgstr "" +msgstr "Restaurar" #: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21463,13 +21686,13 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Right" -msgstr "" +msgstr "Direita" #: frappe/printing/page/print_format_builder/print_format_builder.js:484 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" -msgstr "" +msgstr "Direita" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -21515,7 +21738,7 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" -msgstr "" +msgstr "Função" #: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21944,7 +22165,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" -msgstr "" +msgstr "Saudação" #: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -21994,7 +22215,7 @@ msgstr "" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 msgid "Save" -msgstr "" +msgstr "Salvar" #: frappe/core/doctype/user/user.js:339 msgid "Save API Secret: {0}" @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22741,22 +22946,20 @@ msgstr "" #: frappe/public/js/frappe/list/list_view_select.js:153 #: frappe/public/js/print_format_builder/Preview.vue:90 msgid "Select {0}" -msgstr "" +msgstr "Selecione {0}" #: frappe/model/workflow.py:117 msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" -msgstr "" +msgstr "Enviar" #: frappe/public/js/frappe/views/communication.js:26 msgctxt "Send Email" msgid "Send" -msgstr "" +msgstr "Enviar" #. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,13 +23532,13 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json frappe/www/me.html:20 msgid "Settings" -msgstr "" +msgstr "Configurações" #. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,12 +24366,12 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" -msgstr "" +msgstr "Fonte" #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,13 +24831,12 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" -msgstr "" +msgstr "Assunto" #. Label of the subject_field (Data) field in DocType 'DocType' #. Label of the subject_field (Data) field in DocType 'Customize Form' @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24798,7 +24992,7 @@ msgstr "" #: frappe/workflow/doctype/workflow_action/workflow_action.py:171 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" -msgstr "" +msgstr "Sucesso" #. Name of a DocType #: frappe/core/doctype/success_action/success_action.json @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -24920,7 +25114,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Sunday" -msgstr "" +msgstr "Domingo" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25359,7 +25559,7 @@ msgstr "" #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 msgid "Task" -msgstr "" +msgstr "Tarefa" #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,31 +26065,31 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:666 msgid "This Month" -msgstr "" +msgstr "Este mês" #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" -msgstr "" +msgstr "Este trimestre" #: frappe/public/js/frappe/ui/filters/filter.js:662 msgid "This Week" -msgstr "" +msgstr "Esta semana" #: frappe/public/js/frappe/ui/filters/filter.js:674 msgid "This Year" -msgstr "" +msgstr "Este ano" #: frappe/custom/doctype/customize_form/customize_form.js:220 msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26374,7 +26563,7 @@ msgstr "" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Title" -msgstr "" +msgstr "Título" #. Label of the title_field (Data) field in DocType 'DocType' #. Label of the title_field (Data) field in DocType 'Customize Form' @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26425,7 +26612,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "" +msgstr "Para Fazer" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26537,7 +26724,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:733 #: frappe/public/js/frappe/views/calendar/calendar.js:274 msgid "Today" -msgstr "" +msgstr "Hoje" #: frappe/public/js/frappe/views/reports/report_view.js:1570 msgid "Toggle Chart" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26596,7 +26789,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:739 msgid "Tomorrow" -msgstr "" +msgstr "Amanhã" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 #: frappe/model/workflow.py:254 @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -26977,7 +27162,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Tuesday" -msgstr "" +msgstr "Terça-feira" #. Label of the two_factor_auth (Check) field in DocType 'Role' #. Label of the two_factor_authentication (Section Break) field in DocType @@ -27023,7 +27208,7 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/www/attribution.html:35 msgid "Type" -msgstr "" +msgstr "Tipo" #: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,15 +27451,22 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" -msgstr "" +msgstr "Desconhecido" #: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27341,7 +27574,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:765 #: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" -msgstr "" +msgstr "Atualizar" #. Label of the update_amendment_naming (Button) field in DocType 'Document #. Naming Settings' @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28097,7 +28330,7 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.js:197 #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Value" -msgstr "" +msgstr "Valor" #. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Sim" @@ -29237,7 +29474,7 @@ msgstr "Sim" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" -msgstr "" +msgstr "Ontem" #: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29726,13 +29967,13 @@ msgstr "" #: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" -msgstr "" +msgstr "A sua tarefa em {0} {1} foi removida por {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} e {1}" @@ -30660,7 +30901,7 @@ msgstr "{0} e {1}" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} não é um número de telefone válido" @@ -30893,15 +31138,15 @@ msgstr "{0} não é um número de telefone válido" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} não é um estado válido do fluxo de trabalho. Atualize o seu fluxo de trabalho e tente novamente." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} é obrigatório" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} itens selecionados" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "há {0} minutos" msgid "{0} months ago" msgstr "há {0} meses" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} deve ser posterior a {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} deve ser um dos {1}" @@ -31013,7 +31259,7 @@ msgstr "{0} deve ser definido primeiro" msgid "{0} must be unique" msgstr "{0} deve ser único" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "{0} de {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} ou {1}" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} guardado com sucesso" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} não foi encontrado" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: O registo submetido não pode ser eliminado. Tem de {2} Cancelar {3} primeiro." @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Concluído" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po index b94411f493..eaa758a7b2 100644 --- a/frappe/locale/pt_BR.po +++ b/frappe/locale/pt_BR.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "Um símbolo para esta moeda. Por exemplo: R$" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "Ação / Rota" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Ações" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Adicionar" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "Adicionar Sub-item" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "Adicionar fundo cinza" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "Adicione Participantes" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "Permitido nas menções" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "Aplicativo" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "Aplicado em" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "Atribuir condição" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Anexo" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "Anexo Removido" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Anexos" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,10 +3040,10 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "" +msgstr "CCO" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,10 +3688,10 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "Cc" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -3772,10 +3811,8 @@ msgstr "Título de retorno" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "Cartão" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "Descrição da Categoria" msgid "Category Name" msgstr "Nome da Categoria" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "Configuração de Gráfico" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Nome do gráfico" @@ -4325,10 +4354,6 @@ msgstr "Verifica" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "Marque esta opção se você deseja forçar o usuário a selecionar uma msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "Cidade/Município" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "Credenciais no cliente" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "ID do Cliente" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "Informação ao cliente" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Segredo do cliente" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Recolher Todos" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "Colunas" msgid "Columns / Fields" msgstr "Colunas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "Concluído" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Contatos" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "Conteúdo (Markdown)" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "Contador" msgid "Country" msgstr "País" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "Dia da Semana" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Excluir" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Excluir" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Desativado" @@ -7165,7 +7227,7 @@ msgstr "Desativado" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "Data de vencimento baseada em" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Duplicar" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "Ativar Vinculação Automática em Documentos" msgid "Enable Comments" msgstr "Ativação de comentários" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir Todos" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "Tempo de expiração da página de imagem de código QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "Campo para rastrear" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "Valores de filtro" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "De" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "De" @@ -10746,7 +10831,7 @@ msgstr "Data De" msgid "From Date Field" msgstr "Do campo de data" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "Largura completa" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "Gerar Chaves" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "Cancelar Inscrição Global" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "Agrupar por tipo" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Grupo de Nós" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "Regra de prioridade mais alta será aplicada primeiro" msgid "Highlight" msgstr "Realçar" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "Limite de taxa por hora para gerar links de redefinição de senha" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Horas" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Como essa moeda deve ser formatada? Se não for definido, serão usados os padrões do sistema" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "Credenciais Inválidas" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "Página de chegada" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "Carta" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "Gostos" msgid "Limit" msgstr "Limite" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "Balanceamento de carga" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "Obrigatório Depende" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Mensagem (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Mensagem (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "Mensagem Enviada" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "Método" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "Novo valor a ser definido" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "Novo valor a ser definido" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Não" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "Nenhuma Cópia" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Nenhum dado para exportar" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "Não Negativo" msgid "Non-Conforming" msgstr "Não conforme" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Nenhum" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Não Desejados" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Não Permitido" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "Inativo" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Não Permitido" @@ -17167,7 +17348,7 @@ msgstr "Informar se não for respondido em (minutos)" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "Inaugurado" msgid "Operation" msgstr "Operação" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "Pedido" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "História da Organização" msgid "Org History Heading" msgstr "Cabeçalho da História da Organização" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "Proprietário" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "Passivo" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "Telefone" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Impressão" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impressão" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "Ajuda sobre Formatos de Impressão" msgid "Print Format Type" msgstr "Tipo do Formato de Impressão" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "Ocultar Impressão" msgid "Print Hide If No Value" msgstr "Ocultar Impressão se não Preenchido" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "Servidor de impressão" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projeto" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "Lido por destinatário ativado" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "Motivo" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "Religado" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "Lembrar última seleção" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "Reabrir" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Relatório" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "Relatórios" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "Revogado" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "Função e Nível" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "Redirecionamentos de rota" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "Regra" msgid "Rule Conditions" msgstr "Condições da regra" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Programado para enviar" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "Configurações de Segurança" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "Selecionar" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Enviar" @@ -22780,11 +22983,6 @@ msgstr "Enviar Alerta" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "Enviar Agora" msgid "Send Print as PDF" msgstr "Enviar impressão como PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "Enviar Notificação do Sistema" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Enviar para todos os cessionários" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Enviar link para cancelar inscrição" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Enviando" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "Ação do Servidor" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "IP do servidor" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "Mostrar quebras de linha após seções" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "Mostrar Seção Títulos" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "Mostrar o formulário completo em vez de um modal de entrada rápida" msgid "Show in Module Section" msgstr "Mostrar na Seção Módulo" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Ignorar autorização" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "Intervalo de tempo das estatísticas" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "Intervalo de tempo das estatísticas" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "Intervalo de tempo das estatísticas" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "Subdomínio" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "Subdomínio" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Assunto" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Enviar" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "Avisos do modelo" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "Autenticação de Terceiros" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Para" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "Símbolo" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "Tópico" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Total de Assinantes" @@ -26723,11 +26908,6 @@ msgstr "Total de Assinantes" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "Transições" msgid "Translatable" msgstr "Traduzível" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "URL para documentação ou ajuda" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Desatribuir condição" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "Único" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Desconhecido" @@ -27238,7 +27466,7 @@ msgstr "Desconhecido" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "Não Compartilhado" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "O Usuário não pode criar" msgid "User Cannot Search" msgstr "O Usuário não pode pesquisar" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "Valor Alterado" msgid "Value To Be Set" msgstr "Valor a ser definido" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "Visão" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "Site" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Bem-vindo Ao {0}" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "_relatório" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "e" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "resposta" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} é necessário" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po index dbf864041b..1f6526c0ee 100644 --- a/frappe/locale/ru.po +++ b/frappe/locale/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "Допустимые области встраивания" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "Описание состояния" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Подтвердите доступ" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "Мета-заголовок" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "Настройте учетную запись исходящей эле msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "Подготовленный отчет Аналитика" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "Сообщение об успехе" msgid "Success title" msgstr "Название успеха" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Перевести данные" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Будет запускать запланированные задания только раз в день для неактивных сайтов. Установите значение 0, чтобы избежать автоматического отключения планировщика." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "Вы не имеете права доступа к этому ресурсу" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Для выполнения этого действия вам необходимо разрешение '{0}' на {1} {2} ." @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} не может быть изменен, поскольку он не отменен. Пожалуйста, отмените документ перед созданием поправки." @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index b40aa9fd2e..ac1562971f 100644 --- a/frappe/locale/sr.po +++ b/frappe/locale/sr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-23 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-23 21:53\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'У приказу листе' није дозвољено за врст msgid "'Recipients' not specified" msgstr "'Примаоци' нису наведени" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' није важећи URL" @@ -141,7 +141,7 @@ msgstr "1 дан" msgid "1 Google Calendar Event synced." msgstr "1 догађај из Google Calendar-а је синхронизован." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 извештај" @@ -149,7 +149,7 @@ msgstr "1 извештај" msgid "1 comment" msgstr "1 коментар" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "пре 1 дан" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 сат" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "пре 1 сата" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "пре 1 минут" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "пре 1 месец" @@ -180,37 +180,37 @@ msgstr "1 д 2" msgid "1 record will be exported" msgstr "1 запис ће бити извезен" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "пре 1 секунде" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "пре 1 недељу" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "пре 1 годину" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "пре 2 сата" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "пре 2 месеца" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "пре 2 недеље" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "пре 2 године" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "пре 3 минута" @@ -226,7 +226,7 @@ msgstr "4 сата" msgid "5 Records" msgstr "5 записа" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "пре 5 дана" @@ -709,11 +709,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Здраво," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Извештаји & Мастер подаци" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Упозорење: Ово поље је генерисано од стране система и може бити замењено будућим ажурирањем. Измените га користећи {0}." @@ -740,6 +735,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Назив DocType-а треба да почне са словом и може садржати искључиво слова, бројеве, размаке, доње црте и цртице" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "Једна инстанца Frappe Framework може функционисати и као OAuth клијент, ресурс или ауторизациони сервер. Овај DocType садржи подешавања везана за сва три." + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Истакнути пост мора имати насловну слику" @@ -774,6 +774,14 @@ msgstr "Симбол за ову валуту. На пример $" msgid "A template already exists for field {0} of {1}" msgstr "Шаблон већ постоји за поље {0} врсте {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "Текст који идентификује верзију клијентског софтвера.
\n" +"Ова вредност мора да се промени при сваком ажурирању софтвера са истим ИД софтвера." + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Реч саму по себи је лако наслутити." @@ -909,7 +917,7 @@ msgstr "API тајна" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "ASC" +msgstr "РАСТУЋЕ" #. Label of a standard help item #. Type: Action @@ -1018,7 +1026,6 @@ msgstr "Тачан број није могуће преузети, кликни #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1035,7 +1042,7 @@ msgstr "Радња / Путања" msgid "Action Complete" msgstr "Радња завршена" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Радња неуспешна" @@ -1084,10 +1091,10 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Радње" @@ -1149,8 +1156,8 @@ msgstr "Дневник активности" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Додај" @@ -1167,7 +1174,7 @@ msgstr "Додај / Ажурирај" msgid "Add A New Rule" msgstr "Додај ново правило" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Додај прилог" @@ -1191,7 +1198,7 @@ msgstr "Додај ивицу на врху" msgid "Add Card to Dashboard" msgstr "Додај картицу на контролну таблу" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Додај графикон на контролну таблу" @@ -1200,8 +1207,8 @@ msgid "Add Child" msgstr "Додај зависни елемент" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1237,7 +1244,7 @@ msgid "Add Gray Background" msgstr "Додај сиву позадину" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Додај групу" @@ -1262,7 +1269,7 @@ msgstr "Додај кориснике" msgid "Add Query Parameters" msgstr "Додај параметре упита" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Додај улоге" @@ -1272,7 +1279,7 @@ msgstr "Додај ред" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Додај потпис" @@ -1295,12 +1302,12 @@ msgstr "Додај претплатнике" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Додај шаблон" @@ -1407,7 +1414,7 @@ msgid "Add tab" msgstr "Додај картицу" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Додај на контролну таблу" @@ -1562,11 +1569,11 @@ msgstr "Администрација" msgid "Administrator" msgstr "Администратор" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Администратор пријављен" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}." @@ -1674,6 +1681,14 @@ msgstr "Упозорење" msgid "Alerts and Notifications" msgstr "Упозорења и обавештења" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Псеудоним не може бити SQL резервисана реч: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Псеудоним мора бити текст" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1714,7 +1729,6 @@ msgstr "Поравнај вредности" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -2045,6 +2059,12 @@ msgstr "Дозвољено у помињанима" msgid "Allowed Modules" msgstr "Дозвољени модули" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Дозвољена порекла јавних клијената" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2061,7 +2081,43 @@ msgstr "Дозвољени уметни домени" msgid "Allowing DocType, DocType. Be careful!" msgstr "Дозвољавање DocType, DocType. Будите опрезни!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "Омогућава клијентима да преузму метаподатке са /.well-known/oauth-authorization-server endpoint-a. Референца: RFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Омогућава клијентима да преузму метаподатке са /.well-known/oauth-protected-resource endpoint-a. Референца: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Омогућава клијентима да се региструју самостално, без ручне интервенције. Регистрација креира OAuth клијент унос. Референца: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Омогућава клијентима да ово виде као ауторизациони сервер приликом упита ка /.well-known/oauth-protected-resource endpoint-u." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Омогућава да се омогућени URL кључа за пријављивање путем друштвених мрежа прикаже као ауторизациони сервер." + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "Омогућава прескакање ауторизације уколико корисник већ има активне токене." + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Већ регистрован" @@ -2152,7 +2208,7 @@ msgstr "Измена" msgid "Amendment Naming Override" msgstr "Занемари правила именовања измена" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Измена није дозвољена" @@ -2160,7 +2216,7 @@ msgstr "Измена није дозвољена" msgid "Amendment naming rules updated." msgstr "Правила именовања измена ажурирана." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије" @@ -2241,16 +2297,6 @@ msgstr "Осим систем менаџера, улоге са правима msgid "App" msgstr "Апликација" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "ИД клијента апликације" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Тајни кључ клијента апликације" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2264,21 +2310,24 @@ msgstr "Лого апликације" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Назив апликације" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Назив апликације (назив клијента)" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "Апликација није пронађена за модул: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "Апликација {0} није инсталирана" @@ -2343,7 +2392,7 @@ msgstr "Примењено на" msgid "Apply" msgstr "Примени" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Примени правило доделе" @@ -2424,7 +2473,7 @@ msgstr "Архивирано" msgid "Archived Columns" msgstr "Архивиране колоне" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Да ли сте сигурни да желите да очистите додељене задатке?" @@ -2456,7 +2505,7 @@ msgstr "Да ли сте сигурни да желите да обришете msgid "Are you sure you want to discard the changes?" msgstr "Да ли сте сигурни да желите да одбаците промене?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Да ли сте сигурни да желите да генеришете нови извештај?" @@ -2492,10 +2541,6 @@ msgstr "Да ли сте сигурни да желите да поништит msgid "Are you sure you want to save this document?" msgstr "Да ли сте сигурни да желите да сачувате овај документ?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Да ли сте сигурни да желите да пошаљете овај билтен сада?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2528,16 +2573,16 @@ msgstr "Према Вашем захтеву, Ваш налог и подаци msgid "Assign Condition" msgstr "Додели услов" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Додели" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Додели" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Додели групи корисника" @@ -2689,7 +2734,7 @@ msgstr "Барем једно поље матичне врсте докумен msgid "Attach" msgstr "Приложи" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Приложи штампану верзију документа" @@ -2749,9 +2794,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Приложено уз назив мора бити текст или број" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Прилог" @@ -2778,20 +2821,17 @@ msgid "Attachment Removed" msgstr "Прилог уклоњен" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Прилози" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Покушава се повезивање са QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Покушава се покретање QZ Tray..." @@ -2799,11 +2839,6 @@ msgstr "Покушава се покретање QZ Tray..." msgid "Attribution" msgstr "Приписивање" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Публика" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2848,6 +2883,11 @@ msgstr "Аутентификација није успела приликом п msgid "Author" msgstr "Аутор" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Ауторизација" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3082,7 +3122,7 @@ msgstr "Аватар" msgid "Average" msgstr "Просек" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Просечна вредност {0}" @@ -3187,7 +3227,7 @@ msgstr "Б9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3230,7 +3270,7 @@ msgstr "Слика позадине" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Позадински задаци" @@ -3836,7 +3876,7 @@ msgstr "ОТКАЗАНО" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3959,10 +3999,8 @@ msgstr "Callback наслов" msgid "Camera" msgstr "Камера" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4029,7 +4067,7 @@ msgstr "Не може се преименовати из {0} у {1} јер {0} msgid "Cancel" msgstr "Откажи" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Откажи" @@ -4047,11 +4085,7 @@ msgstr "Откажи све" msgid "Cancel All Documents" msgstr "Откажи све документе" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Откажи заказивање" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Откажи {0} документа?" @@ -4118,11 +4152,11 @@ msgstr "Није могуће отказати пре подношења. Пог msgid "Cannot cancel {0}." msgstr "Није могуће отказати {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Није могуће променити статус документа из 0 (нацрт) у 2 (отказан)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Није могуће променити статус документа из 1 (поднет) у 0 (нацрт)" @@ -4150,7 +4184,7 @@ msgstr "Није могуће креирати приватни радни пр msgid "Cannot delete Home and Attachments folders" msgstr "Није могуће обрисати почетне и приложене датотеке" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}" @@ -4205,7 +4239,7 @@ msgstr "Није могуће уредити стандардне графико msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Није могуће уредити стандардне извештаје. Молимо Вас направите дупликат и креирајте нови извештај" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Није могуће уредити отказан документ" @@ -4242,7 +4276,7 @@ msgstr "Није могуће мапирати више штампача на ј msgid "Cannot import table with more than 5000 rows." msgstr "Није могуће увозити табелу са више од 5000 редова." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Није могуће повезати отказани документ: {0}" @@ -4287,7 +4321,7 @@ msgstr "Није могуће ажурирати {0}" msgid "Cannot use sub-query in order by" msgstr "Није могуће користити подупит у команди сортирај по" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "Није могуће користити {0} у команди сортирај/групиши по" @@ -4313,7 +4347,7 @@ msgstr "Картица" msgid "Card Break" msgstr "Прелом картице" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Ознака картице" @@ -4344,10 +4378,6 @@ msgstr "Опис категорије" msgid "Category Name" msgstr "Назив категорије" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Цент" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4456,7 +4486,7 @@ msgstr "Конфигурација дијаграма" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Назив дијаграма" @@ -4513,10 +4543,6 @@ msgstr "Означи" msgid "Check Request URL" msgstr "Провери URL захтева" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Провери прекинуте линкове" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Провери колоне за означавање, превуци да поставиш редослед." @@ -4540,10 +4566,6 @@ msgstr "Означи ово уколико желиш да натераш кор msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "Означите за приказ пуне нумеричке вредности (нпр. 1.234.567 уместо 1.2М)." -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Проверавање прекинутих линкова..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Проверава се, тренутак" @@ -4590,6 +4612,10 @@ msgstr "Зависна табела {0} за поље {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Зависне табеле се приказују као табеле у другим DocType-овима" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "Зависна поља упита за '{0}' морају бити врсте листа или tuple." + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Изабери постојећу картицу или креирај нову картицу" @@ -4629,15 +4655,19 @@ msgstr "Град/Насељено место" msgid "Clear" msgstr "Очисти" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Очисти и додај шаблон" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Очисти и додај шаблон" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Очисти све" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Очисти додељене задатке" @@ -4663,7 +4693,7 @@ msgstr "Очисти евиденције након (дана)" msgid "Clear User Permissions" msgstr "Очисти корисничке дозволе" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Очисти имејл поруке и додај шаблон" @@ -4679,10 +4709,6 @@ msgstr "Кликните на прилагоди да додате свој пр msgid "Click here" msgstr "Кликните овде" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Кликните овде да верификујете" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Кликните на фајл да га одаберете." @@ -4762,8 +4788,10 @@ msgid "Client Credentials" msgstr "Креденцијали клијента" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "ИД клијента" @@ -4779,6 +4807,12 @@ msgstr "Ид клијента" msgid "Client Information" msgstr "Информације о клијенту" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Метаподаци клијента" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4791,13 +4825,32 @@ msgstr "Клијентска скрипта" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Тајна клијента" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Основна тајна клијента" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Client Secret Post" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "URI клијента" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4882,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Сажми" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Сажми све" @@ -4937,7 +4990,7 @@ msgstr "Може се сажети зависи од (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5024,11 +5077,11 @@ msgstr "Колоне" msgid "Columns / Fields" msgstr "Колоне / Поља" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Колоне засноване на" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Комбинација врсте дозволе ({0}) и врсте одговора ({1}) није дозвољена" @@ -5187,7 +5240,7 @@ msgstr "Завршено" msgid "Complete By" msgstr "Завршено од стране" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Заврши регистрацију" @@ -5277,6 +5330,12 @@ msgstr "Опис услова" msgid "Conditions" msgstr "Услови" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Конфигурација" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5315,7 +5374,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Потврди" @@ -5324,7 +5383,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Потврди" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Потврди приступ" @@ -5337,7 +5396,7 @@ msgstr "Потврди уклањање налога" msgid "Confirm New Password" msgstr "Потврди нову лозинку" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Потврди лозинку" @@ -5346,17 +5405,12 @@ msgstr "Потврди лозинку" msgid "Confirm Request" msgstr "Потврди захтев" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Потврдите Ваш имејл" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Шаблон имејла за потврду" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Потврђено" @@ -5383,8 +5437,8 @@ msgstr "Повезане апликације" msgid "Connected User" msgstr "Повезани корисник" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Повезано са QZ Tray!" @@ -5476,6 +5530,11 @@ msgstr "Подешавање за контактирање" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Опције за контакт, попут \"Упит за продају, Упит за подршку\" итд., свака у новом реду или одвојена зарезима." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Контакти" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Садржи {0} исправку безбедности" @@ -5487,8 +5546,6 @@ msgstr "Садржи {0} исправки безбедности" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5496,8 +5553,7 @@ msgstr "Садржи {0} исправки безбедности" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5521,10 +5577,8 @@ msgstr "Садржај (Markdown)" msgid "Content Hash" msgstr "Хеш садржај" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5581,7 +5635,7 @@ msgstr "Статус доприноса" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Контролише да ли нови корисници могу да се региструју користећи овај кључ за пријављивање путем друштвених мрежа. Уколико није постављено, поштују се подешавања веб-сајта." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Копирано у међуспремник." @@ -5597,7 +5651,7 @@ msgstr "Копирај embed code" msgid "Copy error to clipboard" msgstr "Копирај грешку у међуспремник" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Копирај у међуспремник" @@ -5622,7 +5676,7 @@ msgstr "Исправна верзија :" msgid "Could not connect to outgoing email server" msgstr "Није било могуће повезати се са сервером за излазне имејлове" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Није било могуће пронаћи {0}" @@ -5630,6 +5684,10 @@ msgstr "Није било могуће пронаћи {0}" msgid "Could not map column {0} to field {1}" msgstr "Није било могуће мапирати колону {0} на поље {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "Није могуће обрадити поље: {0}" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Није било могуће покренути: " @@ -5646,7 +5704,7 @@ msgstr "Није било могуће сачувати, проверите ун #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Бројчано" @@ -5685,7 +5743,7 @@ msgstr "Бројач" msgid "Country" msgstr "Држава" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Шифра државе је неопходна" @@ -5717,7 +5775,7 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5731,13 +5789,13 @@ msgstr "Креирај и настави" msgid "Create Address" msgstr "Креирај адресу" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Креирај картицу" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Креирај графикон" @@ -5816,11 +5874,6 @@ msgstr "Креирај нови {0}" msgid "Create a {0} Account" msgstr "Креирај {0} налог" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Креирај и пошаљи имејлове специфичној групи претплатника периодично." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Креирај или уреди формат штампе" @@ -6169,6 +6222,10 @@ msgstr "Прилагођени превод" msgid "Custom field renamed to {0} successfully." msgstr "Прилагођено поље је успешно преименовано у {0}." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "Прилагођена get_list метода за {0} мора вратити QueryBuilder објекат или None, добијено {1}" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6202,12 +6259,12 @@ msgstr "Прилагођавање за {0} су извезена:
{1} #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Прилагоди" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Прилагоди" @@ -6226,7 +6283,7 @@ msgstr "Прилагоди контролну таблу" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Прилагоди образац" @@ -6352,7 +6409,7 @@ msgstr "Тамна тема" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Контролна табла" @@ -6519,7 +6576,6 @@ msgstr "Верзија базе података" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6583,6 +6639,11 @@ msgstr "Дан" msgid "Day of Week" msgstr "Дан у недељи" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Дани" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6847,15 +6908,16 @@ msgstr "Кашњење" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Обриши" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Обриши" @@ -6891,7 +6953,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Обриши картицу" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Обриши и генериши нови" @@ -6933,12 +6995,12 @@ msgstr "Обриши картицу" msgid "Delete this record to allow sending to this email address" msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Трајно обриши {0} ставку?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Трајно обриши {0} ставке?" @@ -7162,6 +7224,7 @@ msgstr "Тема радне површине" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7345,8 +7408,8 @@ msgstr "Онемогући пријављивања" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Онемогућено" @@ -7355,7 +7418,7 @@ msgstr "Онемогућено" msgid "Disabled Auto Reply" msgstr "Онемогући аутоматски одговор" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7516,6 +7579,7 @@ msgstr "Статус документа следећих стања је про #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7761,7 +7825,7 @@ msgstr "Услов правила именовања документа" msgid "Document Naming Settings" msgstr "Подешавање именовања докумената" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "Документ у реду за обраду" @@ -7918,7 +7982,7 @@ msgid "Document Types and Permissions" msgstr "Врсте и дозволе документа" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "Документ је откључан" @@ -8055,7 +8119,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "Немојте кодирати HTML тагове попут <script> или знакове попут < or >, јер могу бити намерно коришћени у овом пољу" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "Немате налог?" @@ -8109,7 +8173,7 @@ msgstr "Преузми линк" msgid "Download PDF" msgstr "Преузми PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Преузми извештај" @@ -8193,7 +8257,7 @@ msgid "Due Date Based On" msgstr "Датум доспећа заснован на" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Дупликат" @@ -8308,9 +8372,9 @@ msgstr "ИЗЛАЗ" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8322,7 +8386,7 @@ msgstr "ИЗЛАЗ" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Уреди" @@ -8357,11 +8421,11 @@ msgstr "Уреди прилагођени блок" msgid "Edit Custom HTML" msgstr "Уреди прилагођени HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "Уреди DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Уреди DocType" @@ -8536,10 +8600,9 @@ msgstr "Избор елемента" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8574,7 +8637,7 @@ msgstr "Имејл налог онемогућен." msgid "Email Account Name" msgstr "Назив имејл налога" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "Имејл налог је додат више пута" @@ -8630,11 +8693,9 @@ msgstr "Адреса у подножју имејла" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "Имејл група" @@ -8683,7 +8744,7 @@ msgstr "Ред чекања за имејлове" msgid "Email Queue Recipient" msgstr "Прималац у реду чекања за имејлове" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "Брисање реда чекања за имејлове је прекинуто због превише неуспешних покушаја." @@ -8707,18 +8768,11 @@ msgstr "Ограничење поновних покушаја за имејл" msgid "Email Rule" msgstr "Имејл правило" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "Имејл послат" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "Имејл послат у" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8754,7 +8808,7 @@ msgstr "Опција за синхронизацију имејла" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "Имејл шаблон" @@ -8786,7 +8840,7 @@ msgstr "Имејл је премештен у отпад" msgid "Email is mandatory to create User Email" msgstr "Имејл је обавезан за креирање корисничког имејла" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Имејл није послат {0} (отказана претплата / онемогућено)" @@ -8812,7 +8866,7 @@ msgstr "Имејлови преузети" msgid "Emails are already being pulled from this account." msgstr "Имејлови се већ преузимају са овог налога." -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "Имејлови су утишани" @@ -8825,10 +8879,18 @@ msgstr "Имејлови ће бити послати са следећим мо msgid "Embed code copied" msgstr "Код за уградњу је копиран" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "Празан псеудоним није дозвољен" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "Празна колона" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "Аргументи као празан текст нису дозвољени" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8864,6 +8926,12 @@ msgstr "Омогући аутоматско повезивање у докуме msgid "Enable Comments" msgstr "Омогући коментаре" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "Омогући динамичку регистрацију клијента" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -9024,8 +9092,8 @@ msgstr "Омогући праћење веб-сајта унутар аплик #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Омогућено" @@ -9119,7 +9187,7 @@ msgstr "Завршено у" #. 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" -msgstr "Крајње тачке" +msgstr "Endpoints" #. Label of the ends_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -9152,7 +9220,7 @@ msgstr "Унесите клијентски ИД и тајну клијента msgid "Enter Code displayed in OTP App." msgstr "Унесите шифру приказану у апликацији за једнократну лозинку." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Унесите примаоце имејла" @@ -9255,7 +9323,7 @@ msgstr "Евиденције грешака" msgid "Error Message" msgstr "Порука о грешци" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Грешка при повезивању са QZ Tray апликацијом...

Потребно је да имате инсталирану и покренуту QZ Tray апликацију, да бисте могли да користите функцију необрађене штампе.

Кликните овде да бисте преузели и инсталирали QZ Tray.
Кликните овде да бисте научили више о необрађеној штампи.." @@ -9293,6 +9361,14 @@ msgstr "Грешка у обавештењу" msgid "Error in print format on line {0}: {1}" msgstr "Грешка у формату штампе на линији {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Грешка у {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Грешка приликом обраде угњеждених филтера: {0}" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Грешка при повезивању са имејл налогом {0}" @@ -9458,7 +9534,7 @@ msgstr "Извршавање кода" msgid "Executing..." msgstr "Извршавање..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Време извршавања: {0} секунди" @@ -9484,11 +9560,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Прошири" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Прошири све" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "Очекиван је оператор 'and' или 'or', пронађено: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Експериментално" @@ -9541,13 +9621,13 @@ msgstr "Време истека страница са QR кодом" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Извоз" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Извоз" @@ -9905,8 +9985,8 @@ msgstr "Преузми подразумеване документе за гло #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9977,7 +10057,7 @@ msgstr "Поље за праћење" msgid "Field type cannot be changed for {0}" msgstr "Врста поља не може бити промењена за {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "Поље {0} не постоји у {1}" @@ -10020,7 +10100,7 @@ msgstr "Назив поља '{0}' је у конфликту са {1} назив msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Назив поља је ограничен на 64 карактера ({0})" @@ -10036,7 +10116,7 @@ msgstr "Назив поља које ће бити DocType за ово линк msgid "Fieldname {0} appears multiple times" msgstr "Назив поља {0} се појављује више пута" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}" @@ -10088,6 +10168,10 @@ msgstr "Поља `file_name` или `file_url` морају бити поста msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Поља морају бити листа или тупле када је опција аслист омогућена" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "Поља морају бити текст, листа, tuple, pypika поље или pypika функција" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10253,6 +10337,14 @@ msgstr "Филтер назива" msgid "Filter Values" msgstr "Филтер вредности" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Недостаје услов филтера након оператора: {0}" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Поља филтера не могу садржати backticks (`)." + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Филтери..." @@ -10464,7 +10556,7 @@ msgid "Folio" msgstr "Фолио" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Прати" @@ -10472,7 +10564,7 @@ msgstr "Прати" msgid "Followed by" msgstr "Праћен од стране" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Следећи филтери извештаја имају недостајуће вредности:" @@ -10496,10 +10588,6 @@ msgstr "Следећа поља имају недостајуће вреднос msgid "Following fields have missing values:" msgstr "Следећа поља имају недостајуће вредности:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Следећи линкови су покидани у садржају имејла: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10661,7 +10749,7 @@ msgstr "За корисника" msgid "For Value" msgstr "За вредност" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "За поређење, користите >5, <10 или =324. За опсеге, користите 5:10 (за вредности између 5 и 10)." @@ -10917,15 +11005,13 @@ msgid "Friday" msgstr "Петак" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Од" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Од" @@ -10941,7 +11027,7 @@ msgstr "Датум почетка" msgid "From Date Field" msgstr "Поље за датум почетка" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Од врсте документа" @@ -10992,7 +11078,7 @@ msgstr "Пуна ширина" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Функција" @@ -11001,10 +11087,14 @@ msgstr "Функција" msgid "Function Based On" msgstr "Функција заснована на" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "Функција {0} није на листи дозвољених." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "Функција {0} захтева аргументе, али ни један није наведен" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'" @@ -11066,7 +11156,7 @@ msgstr "Опште" msgid "Generate Keys" msgstr "Генериши кључеве" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Генериши нови извештај" @@ -11074,8 +11164,8 @@ msgstr "Генериши нови извештај" msgid "Generate Random Password" msgstr "Генериши насумичну лозинку" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Генериши URL за праћење" @@ -11190,7 +11280,7 @@ msgstr "Глобалне пречице" msgid "Global Unsubscribe" msgstr "Глобално отказивање претплате" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Крени" @@ -11354,8 +11444,6 @@ msgstr "Google Contacts - Није могуће ажурирати контак msgid "Google Contacts Id" msgstr "Google Contacts Ид" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11392,6 +11480,7 @@ msgstr "Google Services" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11486,6 +11575,10 @@ msgstr "Врста Груписано по" msgid "Group By field is required to create a dashboard chart" msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "Груписано по мора бити текст" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Чвор групе" @@ -11500,7 +11593,7 @@ msgstr "Група класе објекта" msgid "Group your custom doctypes under modules" msgstr "Групиши своје прилагођене врсте докумената унутар модула" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Груписано по {0}" @@ -11534,7 +11627,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11548,11 +11640,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11781,7 +11872,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Ево Вашег URL за праћење" @@ -11817,12 +11908,17 @@ msgstr "Сакривено" msgid "Hidden Fields" msgstr "Сакривена поља" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "Сакривене колоне укључују: {0}" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Сакриј" @@ -11929,7 +12025,7 @@ msgstr "Сакриј бочну траку, мени и коментаре" msgid "Hide Standard Menu" msgstr "Сакриј стандардни мени" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Сакриј ознаке" @@ -11984,7 +12080,7 @@ msgstr "Правило са вишим приоритетом биће прим msgid "Highlight" msgstr "Истакнуто" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Савет: Укључите симболе, бројеве и велика слова у лозинку" @@ -12057,20 +12153,30 @@ msgstr "Одржавање на сваких сат времена" msgid "Hourly rate limit for generating password reset links" msgstr "Ограничење по часу за генерисање линкова за ресетовање лозинке" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Сата" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Како треба да се форматира ова валута? Уколико није подешено, користиће се подразумеване вредности система" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Људски читљив назив намењен за приказивање крајњем кориснику." + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Изгледа да још увек немаш приступ ниједном радном простору, увек можеш да направиш један за себе. Кликни на дугме Креирај радни простор да га направиш.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12475,7 +12581,7 @@ msgstr "Поље слике мора бити врсте Приложи слик msgid "Image link '{0}' is not valid" msgstr "Линк слике '{0}' није важећи" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Слика је оптимизована" @@ -12523,7 +12629,7 @@ msgstr "Имплицитно" msgid "Import" msgstr "Увоз" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Увоз" @@ -12751,11 +12857,15 @@ msgstr "Укључи тему из апликација" msgid "Include Web View Link in Email" msgstr "Укључи линк ка веб-приказу у имејлу" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Укључи филтере" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "Укључи сакривене колоне" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Укључи индентацију" @@ -12822,11 +12932,11 @@ msgstr "Погрешно корисничко име или лозинка" msgid "Incorrect Verification code" msgstr "Погрешан верификациони код" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Погрешна вредност у реду {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Погрешна вредност:" @@ -12913,7 +13023,7 @@ msgstr "Унеси изнад" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Унеси након" @@ -12978,11 +13088,11 @@ msgstr "Упутства" msgid "Instructions Emailed" msgstr "Упутства послата имејлом" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Недовољан ниво овлашћена за {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Недовољна овлашћена за {0}" @@ -13104,7 +13214,7 @@ msgstr "Неважеће" msgid "Invalid \"depends_on\" expression" msgstr "Неважећи \"depends_on\" израз" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}" @@ -13132,7 +13242,7 @@ msgstr "Неважећи услов: {}" msgid "Invalid Credentials" msgstr "Неважећи креденцијали" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Неважећи датум" @@ -13140,7 +13250,7 @@ msgstr "Неважећи датум" msgid "Invalid DocType" msgstr "Неважећи DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Неважећи DocType: {0}" @@ -13152,6 +13262,11 @@ msgstr "Неважећи назив поља" msgid "Invalid File URL" msgstr "Неважећи URL фајла" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "Неважећи филтер" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Неважећи формат филтера за поље {0} врсте {1}. Покушајте да користите иконицу филтера на пољу како бисте га исправно подесили" @@ -13164,7 +13279,7 @@ msgstr "Неважећа вредност филтера" msgid "Invalid Home Page" msgstr "Неважећа почетна страница" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Неважећи линк" @@ -13198,7 +13313,7 @@ msgstr "Неважећа опција" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Неважећи излазни имејл сервер или порт: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Неважећи излазни формат" @@ -13210,13 +13325,13 @@ msgstr "Неважећа измена" msgid "Invalid Parameters." msgstr "Неважећи параметри." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Неважећа лозинка" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Неважећи број телефона" @@ -13260,11 +13375,39 @@ msgstr "Неважећа тајна за Webhook" msgid "Invalid aggregate function" msgstr "Неважећа агрегатна функција" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља." + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Неважећа врста аргумента: {0}. Дозвољени су текст, број и None." + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "Неважећи карактери у називу поља: {0}. Дозвољена су слова, бројеви и доње црте." + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "Неважећи карактери у називу табеле: {0}" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Неважећа колона" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Неважећа врста услова у угњежденим филтерима: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'." + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Неважећи статус документа" @@ -13276,10 +13419,30 @@ msgstr "Неважећи израз постављен у филтеру {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Неважећи израз постављен у филтеру {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Неважећи формат поља за SELECT: {0}. Називи поља морају бити једноставни, у оквиру backticks, са префиксом табеле, са псеудонимом или '*'." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "Неважећи формат поља у {0}: {1}. Користите 'field', 'link_field.field', or 'child_table.field'." + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља." + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Неважећи назив поља {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "Неважећи назив поља: {0}" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "Неважећа врста поља: {0}" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Неважећи назив поља '{0}' у аутоматском именовању" @@ -13288,11 +13451,26 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и msgid "Invalid file path: {0}" msgstr "Неважећа путања фајла: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Неважећи услов филтера: {0}. Очекивана је листа или tuple." + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Неважећи формат поља за филтер: {0}. Користите 'fieldname' или 'link_fieldname.target_fieldname'." + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Неважећи филтер: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "Неважећа врста аргумента функције: {0}. Дозвољени су искључиво текстови, бројеви, листе и None." + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "Неважећи формат речника функције" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13314,10 +13492,22 @@ msgstr "Неважећи или оштећен садржај за увоз" msgid "Invalid redirect regex in row #{}: {}" msgstr "Неважеће преусмерење регеx функције у реду #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Неважећи аргументи захтева" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Неважећи једноставни формат филтера: {0}" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Неважећи почетак услова за филтер: {0}. Очекивана је листа или tuple." + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "Неважећи формат текстуалног израза: {0}" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Неважећи фајл шаблона за увоз" @@ -13725,8 +13915,8 @@ msgstr "Задатак није покренут." msgid "Join video conference with {0}" msgstr "Придружи се видео-конференцији са {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Иди на поље" @@ -13759,11 +13949,11 @@ msgstr "Колона Канбан табле" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Назив Канбан табле" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Канбан подешавање" @@ -14051,7 +14241,7 @@ msgstr "Ознака је обавезна" msgid "Landing Page" msgstr "Циљна страница" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Пејзажни" @@ -14347,7 +14537,7 @@ msgstr "Писмо" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14475,6 +14665,10 @@ msgstr "Лајковања" msgid "Limit" msgstr "Лимит" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Ограничење мора бити позитиван цео број" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14657,7 +14851,7 @@ msgstr "Линкови" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Листа" @@ -14687,7 +14881,7 @@ msgstr "Филтер листе" msgid "List Settings" msgstr "Подешавање листе" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Подешавање листе" @@ -14738,6 +14932,7 @@ msgid "Load Balancing" msgstr "Балансирање оптерећења" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14758,7 +14953,7 @@ msgstr "Учита више" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Учитавање" @@ -14970,6 +15165,11 @@ msgstr "Пријављивање путем корисничком имена и msgid "Login with {0}" msgstr "Пријављивање са {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "Лого URI" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15156,7 +15356,7 @@ msgstr "Обавезно зависи од" msgid "Mandatory Depends On (JS)" msgstr "Обавезно зависи од (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Недостају обавезни подаци:" @@ -15256,11 +15456,9 @@ msgstr "Означи као нежељено" msgid "Mark as Unread" msgstr "Означи као непрочитано" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15381,7 +15579,7 @@ msgstr "Значење опција поднеси, откажи, измени" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15449,7 +15647,6 @@ msgstr "Спајање је могуће само између групе и г #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15462,11 +15659,10 @@ msgstr "Спајање је могуће само између групе и г #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15477,16 +15673,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Порука" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Порука (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Порука (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15513,7 +15699,7 @@ msgstr "Порука послата" msgid "Message Type" msgstr "Врста поруке" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Порука је скраћена" @@ -15591,6 +15777,12 @@ msgstr "Мета наслов" msgid "Meta title for SEO" msgstr "Мета наслов за SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Метаподаци" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15610,7 +15802,7 @@ msgstr "Мета наслов за SEO" msgid "Method" msgstr "Метода" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Метода није дозвољена" @@ -15660,6 +15852,11 @@ msgstr "Минимална оцена јачине лозинке" msgid "Minor" msgstr "Мањи" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Минути" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15699,7 +15896,7 @@ msgstr "Недостајуће поље" msgid "Missing Fields" msgstr "Недостајућа поља" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Недостајући обавезни филтери" @@ -15707,7 +15904,7 @@ msgstr "Недостајући обавезни филтери" msgid "Missing Permission" msgstr "Недостајуће дозволе" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Недостајуће вредности" @@ -15773,7 +15970,7 @@ msgstr "Измењено од стране" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16055,7 +16252,7 @@ msgstr "Мора бити затворен у '()' и укључивати '{0}' msgid "Must be of type \"Attach Image\"" msgstr "Мора бити врсте \"Приложи слику\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Мора имати дозволу за извештај да би приступио овом извештају." @@ -16073,7 +16270,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16217,12 +16414,12 @@ msgstr "Шаблон навигационе траке" msgid "Navbar Template Values" msgstr "Вредности шаблона навигационе траке" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Помери листу према доле" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Помери листу према горе" @@ -16241,10 +16438,14 @@ msgstr "Подешавање навигације" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Негативна вредност" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Угњеждени филтери морају бити предати као листа или tuple." + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Грешка у угњежденом сету. Молимо Вас да контактирате администратора." @@ -16327,7 +16528,7 @@ msgstr "Нови догађај" msgid "New Folder" msgstr "Нова датотека" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Нова Канбан табла" @@ -16350,10 +16551,6 @@ msgstr "Нова порука са контакт странице веб-сај msgid "New Name" msgstr "Нови назив" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Нови билтен" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Ново обавештење" @@ -16366,7 +16563,7 @@ msgstr "Нова бројчана картица" msgid "New Onboarding" msgstr "Нова уводна обука" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Нова лозинка" @@ -16411,7 +16608,28 @@ msgstr "Нови назив радног тока" msgid "New Workspace" msgstr "Нови радни простор" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "Листа дозвољених URL адреса јавних клијената, одвојених новим редом (нпр. https://frappe.io), или * за прихватање свих.\n" +"
\n" +"Јавни клијенти су подразумевано ограничени." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Листа вредности опсега одвојена новим редом." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Листа текстова, одвојених новим редовима, који представљају начине за контактирање особа одговорних за овог клијента, обично имејл адресе." + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Нова лозинка не сме бити иста као стара лозинка" @@ -16435,7 +16653,7 @@ msgstr "Нова вредност треба да буде постављена" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16443,19 +16661,19 @@ msgstr "Нова вредност треба да буде постављена" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Нови {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Нови {0} креиран" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Нови {0} {1} додат у контролну таблу {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Нови {0} {1} креиран" @@ -16467,52 +16685,17 @@ msgstr "Нови {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Нови {} верзије за следеће апликација су доступне" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "Новокреирани корисник {0} нема омогућене улоге." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Билтен" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Прилог билтена" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Имејл група за билтен" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Менаџер билтена" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Билтен је већ послат" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Билтен мора бити објављен да би се послао линк за преглед у имејлу" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Билтен треба да има барем једног примаоца" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Билтени" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16629,7 +16812,7 @@ msgstr "Следеће на клик" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Не" @@ -16658,7 +16841,7 @@ msgid "No Copy" msgstr "Без копирања" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16770,11 +16953,11 @@ msgstr "Нема резултата" msgid "No Results found" msgstr "Ниједан резултат није пронађен" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Улоге нису наведене" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Није пронађено поље за избор" @@ -16802,10 +16985,6 @@ msgstr "Нема упозорења за данас" msgid "No automatic optimization suggestions available." msgstr "Нема доступних аутоматских предлога за оптимизацију." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "Нису пронађени неисправни линкови у садржају имејла" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Нема промена у документу" @@ -16842,7 +17021,7 @@ msgstr "Ниједан контакт није још увек додат." msgid "No contacts linked to document" msgstr "Ниједан контакт није повезан са документом" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Нема података за извоз" @@ -16862,7 +17041,7 @@ msgstr "Ниједан имејл налог није повезан са кор msgid "No failed logs" msgstr "Нема неуспешних евиденција" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"." @@ -16921,7 +17100,7 @@ msgstr "Број редова (максимално 500)" msgid "No of Sent SMS" msgstr "Број послатих SMS порука" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Не постоји дозвола за {0}" @@ -17014,6 +17193,12 @@ msgstr "Није негативна вредност" msgid "Non-Conforming" msgstr "Неподударан" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "None" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Ниједно: Крај радног тока" @@ -17028,7 +17213,7 @@ msgstr "Нормализоване копије" msgid "Normalized Query" msgstr "Нормализовани упити" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Није дозвољено" @@ -17049,7 +17234,7 @@ msgstr "Нису потомци од" msgid "Not Equals" msgstr "Није једнако" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Није пронађено" @@ -17075,16 +17260,16 @@ msgstr "Није повезани ни са једним записом" msgid "Not Nullable" msgstr "Не може бити празно" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Није дозвољено" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "Није дозвољено за читање {0}" @@ -17094,8 +17279,8 @@ msgstr "Није дозвољено за читање {0}" msgid "Not Published" msgstr "Није објављено" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17112,7 +17297,6 @@ msgstr "Није виђено" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Није послато" @@ -17129,7 +17313,7 @@ msgstr "Није постављено" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Неважећи Comma Separated Value (CSV фајл)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Неважећа слика корисника." @@ -17145,7 +17329,7 @@ msgstr "Неважећи корисник" msgid "Not active" msgstr "Није активно" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Није дозвољено за {0}: {1}" @@ -17186,7 +17370,7 @@ msgstr "Није у развојном режиму! Поставите у си #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Није дозвољено" @@ -17364,7 +17548,7 @@ msgstr "Обавести уколико није одговорено (у мин msgid "Notify users with a popup when they log in" msgstr "Обавести кориснике путем искачућег прозора када се пријаве" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Сада" @@ -17507,6 +17691,11 @@ msgstr "Подешавање OAuth провајдера" msgid "OAuth Scope" msgstr "OAuth опсег" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "OAuth подешавања" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth је омогућен, али није ауторизован. Молимо Вас да користите дугме \"Ауторизуј приступ путем API-ја\" за то." @@ -17579,6 +17768,10 @@ msgstr "Помак X" msgid "Offset Y" msgstr "Помак Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Помак мора бити позитиван цео број" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Стара лозинка" @@ -17650,7 +17843,7 @@ msgstr "На или након" msgid "On or Before" msgstr "На или пре" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "На {0}, {1} је написао/ла:" @@ -17726,7 +17919,7 @@ msgstr "Искључиво администратор може да уређуј msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Искључиво администратор може сачувати стандардни извештај. Молимо Вас да преименујете и сачувате." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Искључиво администратор може да користи алат за снимање" @@ -17752,7 +17945,7 @@ msgstr "Искључиво менаџер радног простора може msgid "Only allowed to export customizations in developer mode" msgstr "Извоз прилагођавања је дозвољен само у развојном режиму" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Искључиво нацрти докумената могу бити одбачени" @@ -17783,7 +17976,7 @@ msgstr "Могу се уређивати само извештаји креир msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Искључиво администратор може обрисати стандардни DocType." @@ -17791,7 +17984,7 @@ msgstr "Искључиво администратор може обрисати msgid "Only the assignee can complete this to-do." msgstr "Искључиво додељени корисник може завршити овај задатак." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Дозвољено је искључиво {0} извештаја послатих путем имејла по кориснику." @@ -17879,7 +18072,7 @@ msgstr "Отвори конзолу" msgid "Open in a new tab" msgstr "Отвори у новој картици" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Отворене ставке" @@ -17924,7 +18117,7 @@ msgstr "Отворено" msgid "Operation" msgstr "Операција" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Оператор мора бити један од следећих {0}" @@ -17934,7 +18127,7 @@ msgstr "Оператор мора бити један од следећих {0}" msgid "Optimize" msgstr "Оптимизуј" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Оптимизација слике..." @@ -18023,6 +18216,10 @@ msgstr "Наранџаста" msgid "Order" msgstr "Редослед" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "Сортирај по мора бити текст" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18035,7 +18232,7 @@ msgstr "Историја организације" msgid "Org History Heading" msgstr "Наслов историје организације" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Оријентација" @@ -18117,9 +18314,11 @@ msgstr "Власник" msgid "PATCH" msgstr "PATCH" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18414,11 +18613,11 @@ msgstr "Матична врста документа је неопходна з msgid "Parent is the name of the document to which the data will get added to." msgstr "Матични означава назив документа у који ће се подаци додати." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "Груписање матично-ка-зависном или зависно-ка-матичном није дозвољено." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Груписање матичног са зависним или два различита зависна ентитета није дозвољено." -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Матично поље није наведено у {0}: {1}" @@ -18478,11 +18677,11 @@ msgstr "Пасиван" msgid "Password" msgstr "Лозинка" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Имејл са лозинком послат" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Ресетовање лозинке" @@ -18516,11 +18715,11 @@ msgstr "Лозинка није унета у имејл налогу" msgid "Password not found for {0} {1} {2}" msgstr "Лозинка није пронађена за {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Лозинка постављена" @@ -18528,11 +18727,11 @@ msgstr "Лозинка постављена" msgid "Password size exceeded the maximum allowed size" msgstr "Величина лозинке премашује дозвољену границу" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Величине лозинке премашује дозвољену границу." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Лозинке се не подударају" @@ -18540,10 +18739,6 @@ msgstr "Лозинке се не подударају" msgid "Passwords do not match!" msgstr "Лозинке се не подударају!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Прошли датуми нису дозвољени за заказивање." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Налепи" @@ -18689,7 +18884,7 @@ msgstr "Трајно поднети {0}?" msgid "Permanently delete {0}?" msgstr "Трајно обрисати {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Грешка у дозволама" @@ -18841,11 +19036,11 @@ msgstr "Телефон" msgid "Phone No." msgstr "Телефон бр." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Број телефона {0} постављен у пољу {1} није валидан." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18903,7 +19098,7 @@ msgstr "Молимо Вас да дуплирате ову тему веб-са msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Молимо Вас да инсталирате ldap3 библиотеку путем пип-а да бисте користили ldap функционалност." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Молимо Вас да поставите графикон" @@ -18919,7 +19114,7 @@ msgstr "Молимо Вас да додате наслов у Ваш имејл" msgid "Please add a valid comment." msgstr "Молимо Вас да додате валидан коментар." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију" @@ -18951,7 +19146,7 @@ msgstr "Молимо Вас да проверите вредности филт msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Молимо Вас да проверите вредности поља \"Преузми из\" постављених за поље {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Молимо Вас да проверите свој имејл за верификацију" @@ -19016,7 +19211,7 @@ msgstr "Молимо Вас да омогућите барем један кљу #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Молимо Вас да омогућите искачуће прозоре" @@ -19033,23 +19228,23 @@ msgstr "Молимо Вас да омогућите {} пре него што н msgid "Please ensure that your profile has an email address" msgstr "Молимо Вас да се уверите да Ваш профил садржи имејл адресу" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Молимо Вас да унесте URL токен за приступ" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Молимо Вас да унесете URL ауторизацију" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Молимо Вас да унесете основни URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Молимо Вас да унесете клијентски ИД пре него што је пријављивање путем друштвених мрежа омогућено" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Молимо Вас да унесте тајну клијента пре него што је пријављивање путем друштвених мрежа омогућено" @@ -19057,7 +19252,7 @@ msgstr "Молимо Вас да унесте тајну клијента пре msgid "Please enter OpenID Configuration URL" msgstr "Молимо Вас да унесете URL за OpenID конфигурацију" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Молимо Вас да унесете URL за преусмеравање" @@ -19069,7 +19264,7 @@ msgstr "Молимо Вас да унесете важећу имејл адре msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Молимо Вас да унесете и своју имејл адресу и поруку како бисмо могли да Вам се јавимо! Хвала Вам!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Молимо Вас да унесете лозинку" @@ -19082,11 +19277,11 @@ msgstr "Молимо Вас да унесете лозинку за: {0}" msgid "Please enter valid mobile nos" msgstr "Молимо Вас да унесете важеће бројеве мобилних телефона" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Молимо Вас да унесете своју нову лозинку." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Молимо Вас да унесете своју стару лозинку." @@ -19102,7 +19297,7 @@ msgstr "Молимо Вас да се пријавите како бисте о msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Молимо Вас да се уверите да документи референтне комуникације нису кружно повезани." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Молимо Вас да освежите како бисте добили најновији документ." @@ -19114,10 +19309,6 @@ msgstr "Молимо Вас да уклоните мапирање штампа msgid "Please save before attaching." msgstr "Молимо Вас да сачувате пре него што приложите." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Молимо Вас да сачувате билтен пре слања" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Молимо Вас да сачувате документ пре додељивања" @@ -19146,11 +19337,11 @@ msgstr "Молимо Вас да прво изаберете врсту енти msgid "Please select Minimum Password Score" msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Молимо Вас да изаберете X и Y поља" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Молимо Вас да изаберете шифру државе за поље {1}." @@ -19166,7 +19357,7 @@ msgstr "Молим Вас да изаберете фајл или URL" msgid "Please select a valid csv file with data" msgstr "Молимо Вас да изаберете важећи цсв фајл са подацима" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Молимо Вас да изаберете важећи филтер да датум" @@ -19174,7 +19365,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д msgid "Please select applicable Doctypes" msgstr "Молимо Вас да изаберете примењиве DocType-ове" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање" @@ -19204,11 +19395,11 @@ msgstr "Молимо Вас да поставите имејл адресу" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Молимо Вас да поставите филтере" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Молимо Вас да поставите вредности филтера у табели филтер извештаја." @@ -19232,7 +19423,7 @@ msgstr "Молимо Вас да поставите SMS пре него што msgid "Please setup a message first" msgstr "Молимо Вас да прво поставите поруку" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Молимо Вас да поставите подразумевани излазни имејл налог из Подешавања > Имејл налог" @@ -19244,7 +19435,7 @@ msgstr "Молимо Вас да поставите подразумевани msgid "Please specify" msgstr "Молимо Вас да наведете" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Молимо Вас да наведете важећи матични DocType за {0}" @@ -19281,14 +19472,19 @@ msgstr "Молимо Вас да ажурирате {} пре него што н msgid "Please use a valid LDAP search filter" msgstr "Молимо Вас да користите важећи LDAP филтер за претрагу" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Молимо Вас да верификујете своју имејл адресу" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Молимо Вас да користите следеће линкове да преузмете резервну копију фајла." #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Молимо Вас да посетите https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key за више информација." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "URI политике" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19334,7 +19530,7 @@ msgstr "Ставка менија портала" msgid "Portal Settings" msgstr "Подешавање портала" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Портрет" @@ -19378,6 +19574,10 @@ msgstr "Објаве корисника {0}" msgid "Posts filed under {0}" msgstr "Објаве у категорији {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Потенцијално опасан садржај у текстуалном изразу: {0}" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19437,15 +19637,15 @@ msgstr "Аналитика припремљених извештаја" msgid "Prepared Report User" msgstr "Корисник припремљеног извештаја" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Приказ припремљеног извештаја није успео" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Припрема извештаја" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Додај шаблон на почетак имејл поруке" @@ -19466,8 +19666,6 @@ msgstr "Притисните Enter да сачувате" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19512,7 +19710,7 @@ msgstr "Преглед на {0}" msgid "Preview type" msgstr "Врста прегледа" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Преглед:" @@ -19583,16 +19781,16 @@ msgstr "Примарни кључ за DocType {0} не може бити про #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Штампа" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Штампа" @@ -19647,6 +19845,11 @@ msgstr "Грешка у формату за штампу" msgid "Print Format Field Template" msgstr "Шаблон поља формата за штампу" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Формат штампе за" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19657,6 +19860,10 @@ msgstr "Помоћ за формат штампе" msgid "Print Format Type" msgstr "Врста формата штампе" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "Формат штампе није пронађен" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Формат штампе {0} је онемогућен" @@ -19688,11 +19895,11 @@ msgstr "Сакриј штампу" msgid "Print Hide If No Value" msgstr "Сакриј штампу уколико нема вредности" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Језик штампе" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Штампа је послата на штампач!" @@ -19710,7 +19917,7 @@ msgstr "Сервер за штампу" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Подешавање штампе" @@ -19820,6 +20027,10 @@ msgstr "Приватно" msgid "Private Files (MB)" msgstr "Приватни фајлови (МБ)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Резервна копија приватних фајлова:" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19830,7 +20041,7 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref msgid "Proceed" msgstr "Настави" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Ипак настави" @@ -19855,7 +20066,7 @@ msgstr "Профил" msgid "Progress" msgstr "Напредак" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Пројекат" @@ -19942,6 +20153,10 @@ msgstr "Јавни" msgid "Public Files (MB)" msgstr "Јавни фајлови (МБ)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Резервна копија јавних фајлова:" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19950,14 +20165,7 @@ msgstr "Јавни фајлови (МБ)" msgid "Publish" msgstr "Објави" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Објави као веб-страницу" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19965,7 +20173,6 @@ msgstr "Објави као веб-страницу" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20089,7 +20296,7 @@ msgstr "QR код" msgid "QR Code for Login Verification" msgstr "QR код за верификацију пријављивања" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ Tray неуспешно: " @@ -20186,7 +20393,6 @@ msgstr "Ред(ови)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "У реду" @@ -20209,19 +20415,11 @@ msgstr "У реду за подношење. Можете пратити нап msgid "Queued for backup. You will receive an email with the download link" msgstr "У реду за резервну копију. Добићете имејл са линком за преузимање" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "{0} имејлова у реду" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Редови" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "Имејлови се стављају у ред..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "{0} се ставља у ред за подношење" @@ -20311,7 +20509,7 @@ msgstr "Оцена" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Необрађене команде" @@ -20346,7 +20544,7 @@ msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Re: {0}" @@ -20422,7 +20620,7 @@ msgstr "Прочитао прималац на" msgid "Read mode" msgstr "Режим читања" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Прочитајте документацију за више информација" @@ -20442,7 +20640,7 @@ msgstr "У реалном времену (SocketIO)" msgid "Reason" msgstr "Разлог" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Обнови" @@ -20588,12 +20786,12 @@ msgstr "Преусмеравања" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis cache сервер није покренут. Молимо Вас да контактирате администратор / техничку подршку" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Врати" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Врати последњу радњу" @@ -20807,11 +21005,11 @@ msgid "Referrer" msgstr "Извор приступа" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20850,7 +21048,7 @@ msgstr "Освежавање" msgid "Refreshing..." msgstr "Освежавање..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Регистровано, али онемогућено" @@ -20899,7 +21097,7 @@ msgstr "Поново повезано" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Поновно учитавање" @@ -20930,7 +21128,7 @@ msgstr "Запамти последњу изабрану вредност" msgid "Remind At" msgstr "Подсетник у" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Подсети ме" @@ -21012,7 +21210,7 @@ msgstr "Уклоњено" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21040,7 +21238,7 @@ msgstr "Приказивања ознака са леве стране и вре msgid "Reopen" msgstr "Поново отвори" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Понови" @@ -21140,6 +21338,8 @@ msgstr "Одговори свима" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21155,8 +21355,11 @@ msgstr "Одговори свима" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Извештај" @@ -21225,7 +21428,7 @@ msgstr "Менаџер извештавања" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Назив извештаја" @@ -21277,11 +21480,11 @@ msgstr "Извештај нема података, молимо Вас да и msgid "Report has no numeric fields, please change the Report Name" msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Извештај је покренут, кликните да бисте погледали статус" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Достигнуто је ограничење извештаја" @@ -21289,7 +21492,7 @@ msgstr "Достигнуто је ограничење извештаја" msgid "Report timed out." msgstr "Извештај је истекао." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Извештај је успешно ажуриран" @@ -21297,7 +21500,7 @@ msgstr "Извештај је успешно ажуриран" msgid "Report was not saved (there were errors)" msgstr "Извештај није сачуван (догодиле су се грешке)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму." @@ -21310,7 +21513,7 @@ msgstr "Извештај {0}" msgid "Report {0} deleted" msgstr "Извештај {0} је обрисан" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Извештај {0} је онемогућен" @@ -21333,7 +21536,7 @@ msgstr "Извештаји" msgid "Reports & Masters" msgstr "Извештаји и мастер подаци" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Извештаји су већ у реду" @@ -21518,6 +21721,31 @@ msgstr "Врати на подразумевана подешавања" msgid "Reset your password" msgstr "Ресетуј своју лозинку" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Ресурс" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Документација о ресурсу" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Назив ресурса" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "URI политике ресурса" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "URI услова коришћења ресурса" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21643,10 +21871,8 @@ msgstr "Опозови" msgid "Revoked" msgstr "Опозвано" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21749,7 +21975,7 @@ msgstr "Дозволе улога" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" @@ -21783,7 +22009,7 @@ msgstr "Репликација улога" msgid "Role and Level" msgstr "Улога и ниво" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Улога је постављена према врсти корисника {0}" @@ -21857,7 +22083,6 @@ msgstr "Метод заокруживања" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21871,7 +22096,6 @@ msgstr "Метод заокруживања" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21898,7 +22122,7 @@ msgstr "Преусмеравање путање" msgid "Route: Example \"/app\"" msgstr "Путања: Пример \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Ред" @@ -21989,7 +22213,7 @@ msgstr "Правило" msgid "Rule Conditions" msgstr "Услови правила" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Правило за ову врсту доцтyпе, улога, ниво дозволе и уколико власник већ постоји." @@ -22178,12 +22402,12 @@ msgstr "Субота" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22210,7 +22434,7 @@ msgstr "Сачувај као" msgid "Save Customizations" msgstr "Сачувај прилагођавања" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Сачувај извештај" @@ -22229,7 +22453,7 @@ msgstr "Сачувај документ." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22274,32 +22498,17 @@ msgstr "Скенирај QR код и унеси приказани код." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Распоред" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Заказати слање билтена" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Заказати слање у" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Заказати слање" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Заказати слање за касније" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Заказано" @@ -22333,17 +22542,6 @@ msgstr "Врста заказаног задатка" msgid "Scheduled Jobs Logs" msgstr "Евиденције заказаних задатака" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Заказано слање" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Заказано за слање" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Заказано извршавање за скрипту {0} је ажурирано" @@ -22412,6 +22610,11 @@ msgstr "Опсег" msgid "Scopes" msgstr "Опсези" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Подржани опсег" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22555,6 +22758,11 @@ msgstr "Претрага..." msgid "Searching ..." msgstr "Претраживање ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Секунди" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22602,7 +22810,7 @@ msgstr "Подешавања безбедности" msgid "See all Activity" msgstr "Погледај све активности" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Погледај све претходне извештаје." @@ -22670,8 +22878,8 @@ msgstr "Изабери" msgid "Select All" msgstr "Изабери све" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22687,7 +22895,7 @@ msgid "Select Column" msgstr "Изабери колону" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Изабери колоне" @@ -22737,7 +22945,7 @@ msgstr "Изаберите врсте докумената како бисте #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Изабери поље" @@ -22808,7 +23016,7 @@ msgid "Select Page" msgstr "Изабери страницу" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Изабери формат штампе" @@ -22900,13 +23108,13 @@ msgstr "Изабери бар један запис за штампање" msgid "Select atleast 2 actions" msgstr "Изабери бар 2 радње" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Изабери ставку из листе" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Изабери више ставки из листе" @@ -22944,9 +23152,7 @@ msgstr "Изаберите {0}" msgid "Self approval is not allowed" msgstr "Самопотврда није дозвољена" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Пошаљи" @@ -22977,11 +23183,6 @@ msgstr "Пошаљи обавештење на" msgid "Send Email Alert" msgstr "Пошаљи имејл упозорење" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "Пошаљи имејл у" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23029,7 +23230,7 @@ msgstr "Пошаљи сада" msgid "Send Print as PDF" msgstr "Пошаљи као PDF за штампу" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Пошаљи потврду о читању" @@ -23039,38 +23240,16 @@ msgstr "Пошаљи потврду о читању" msgid "Send System Notification" msgstr "Пошаљи системско обавештење" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Пошаљи тестни имејл" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Пошаљи свим задуженима" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Пошаљи линк за отказивање претплате" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Пошаљи линк за приказ на вебу" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Пошаљи имејл добродошлице" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Пошаљи тестни имејл" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Пошаљи поново" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23114,14 +23293,10 @@ msgstr "Пошаљи упите на ову имејл адресу" msgid "Send login link" msgstr "Пошаљи линк за пријаву" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Пошаљи ми копију" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Пошаљи сада" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23137,19 +23312,15 @@ msgstr "Пошаљи поруку за отказивање претплате #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Пошиљалац" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Имејл пошиљаоца" @@ -23166,9 +23337,7 @@ msgid "Sender Field should have Email in options" msgstr "Поље пошиљаоца треба да има имејл међу опцијама" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Назив пошиљаоца" @@ -23188,18 +23357,9 @@ msgstr "Сендгрид" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Слање" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Слање имејлова" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Слање у току..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23207,8 +23367,6 @@ msgstr "Слање у току..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Послато" @@ -23278,7 +23436,7 @@ msgstr "Серија {0} је већ искоришћена у {1}" msgid "Server Action" msgstr "Серверска радња" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Серверска грешка" @@ -23297,7 +23455,7 @@ msgstr "ИП адреса сервера" msgid "Server Script" msgstr "Серверска скрипта" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије." @@ -23336,15 +23494,15 @@ msgstr "Подешавање подразумеване сесије" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Подразумеване вредности сесије" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Подразумеване вредности сесије су сачуване" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Сесија је истекла" @@ -23376,7 +23534,7 @@ msgstr "Постави" msgid "Set Banner from Image" msgstr "Постави банер из слике" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Постави графикон" @@ -23402,7 +23560,7 @@ msgstr "Постави филтере" msgid "Set Filters for {0}" msgstr "Постави филтере за {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Постави ниво" @@ -23598,7 +23756,7 @@ msgstr "Постављање система" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23644,7 +23802,7 @@ msgstr "Поставке > Корисник" msgid "Setup > User Permissions" msgstr "Поставке > Корисничке дозволе" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Поставке аутоматског имејла" @@ -23733,6 +23891,8 @@ msgstr "Пречице" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Прикажи" @@ -23759,6 +23919,12 @@ msgstr "Прикажи апсолутне вредности" msgid "Show All" msgstr "Прикажи све" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Прикажи метаподатке ауторизационог сервера" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Прикажи календар" @@ -23839,7 +24005,7 @@ msgstr "Прикажи избор језика" msgid "Show Line Breaks after Sections" msgstr "Прикажи прелом линије након одељка" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Прикажи линкове" @@ -23876,6 +24042,12 @@ msgstr "Прикажи преглед искачућег прозора" msgid "Show Processlist" msgstr "Прикажи листу процеса" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Прикажи метаподатке заштићеног ресурса" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Прикажи повезане грешке" @@ -23902,8 +24074,14 @@ msgstr "Прикажи наслове одељака" msgid "Show Sidebar" msgstr "Прикажи бочну траку" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Прикажи кључ за пријављивање путем друштвених мрежа као ауторизациони сервер" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Прикажи ознаке" @@ -23932,6 +24110,12 @@ msgstr "Прикажи обилазак" msgid "Show Traceback" msgstr "Прикажи след грешке" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Прикажи вредности изнад графикона" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Прикажи упозорења" @@ -23985,6 +24169,12 @@ msgstr "Прикажи цео образац уместо брзог уноса msgid "Show in Module Section" msgstr "Прикажи у одељку модула" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Прикажи у метаподацима ресурса" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24065,12 +24255,12 @@ msgstr "Бочна трака и коментари" msgid "Sign Up and Confirmation" msgstr "Регистрација и потврда" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Регистрација је онемогућена" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Региструј се" @@ -24156,8 +24346,10 @@ msgstr "Прескочи" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Прескочи ауторизацију" @@ -24321,6 +24513,16 @@ msgstr "SocketIO транспортни режим" msgid "Soft-Bounced" msgstr "Привремено неуспешно" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "ИД софтвера" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Верзија софтвера" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Неке колоне могу бити исечене приликом штампања у PDF формату. Покушајте да број колона буде мањи од 10." @@ -24388,7 +24590,7 @@ msgstr "Поље за сортирање {0} мора бити важећи на #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24478,7 +24680,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Стандардно" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Стандардни DocType не може бити обрисан." @@ -24494,7 +24696,7 @@ msgstr "Стандардно није постављено" msgid "Standard Permissions" msgstr "Стандардне дозволе" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Стандардни формат штампе не може бити ажуриран" @@ -24681,7 +24883,6 @@ msgstr "Временски интервал статистике" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24706,7 +24907,6 @@ msgstr "Временски интервал статистике" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24717,7 +24917,7 @@ msgstr "Временски интервал статистике" msgid "Status" msgstr "Статус" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Статус ажуриран" @@ -24847,8 +25047,6 @@ msgstr "Поддомен" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24857,10 +25055,9 @@ msgstr "Поддомен" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Наслов" @@ -24899,7 +25096,7 @@ msgstr "Ред чекања за подношење" msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Поднеси" @@ -24957,7 +25154,7 @@ msgstr "Поднесите овај документ да бисте заврш msgid "Submit this document to confirm" msgstr "Поднесите овај документ да бисте потврдили" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Поднеси {0} докумената?" @@ -25051,7 +25248,7 @@ msgstr "Порука о успеху" msgid "Success title" msgstr "Наслов успеха" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Успешно! Спремни сте за наставак 👍" @@ -25106,7 +25303,7 @@ msgstr "Предложи оптимизације" msgid "Suggested Indexes" msgstr "Предложи индексе" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Предложено корисничко име: {0}" @@ -25119,7 +25316,7 @@ msgstr "Предложено корисничко име: {0}" msgid "Sum" msgstr "Збир" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Збир за {0}" @@ -25228,7 +25425,7 @@ msgstr "Синхронизовање" msgid "Syncing {0} of {1}" msgstr "Синхронизовање {0} од {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Грешка у синтакси" @@ -25406,6 +25603,7 @@ msgstr "Евиденције система" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25465,6 +25663,11 @@ msgctxt "Number system" msgid "T" msgstr "Т" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "URI услова коришћења" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25535,7 +25738,7 @@ msgstr "Скраћена табела" msgid "Table updated" msgstr "Табела ажурирана" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Табела {0} не може бити празна" @@ -25643,7 +25846,7 @@ msgstr "Упозорења у шаблону" msgid "Templates" msgstr "Шаблони" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Привремено онемогућено" @@ -25662,10 +25865,6 @@ msgstr "ИД тестног задатка" msgid "Test Spanish" msgstr "Тестирај шпански" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Тестни имејл послат на {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "ТестДатотека" @@ -25733,10 +25932,6 @@ msgstr "Хвала Вам на имејлу" msgid "Thank you for your feedback!" msgstr "Хвала Вам на повратним информацијама!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Хвала Вам на интересовању за пријаву на наша обавештења" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Хвала Вам на поруци" @@ -25805,7 +26000,7 @@ msgstr "API кључ за интернет претраживач добијен "\"APIs & Services\" > \"Credentials\"\n" "" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Промене су враћене на претходно стање." @@ -25863,11 +26058,11 @@ msgstr "Следећи дани за задатак су поновљени: {0} msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "Следећа скрипта заглавља ће додати тренутни датум у елемент класе 'хеадер-цонтент' у 'HTML заглавље'" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Следеће вредности нису важеће: {0}. Дозвољене вредности су: {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Следеће вредности не постоје за: {0}: {1}" @@ -25906,7 +26101,7 @@ msgstr "Следећи обилазак ће почети од места на msgid "The number of seconds until the request expires" msgstr "Број секунди до истека захтева" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Лозинка за Ваш налог је истекла." @@ -25923,15 +26118,15 @@ msgstr "Број пројекта добијен путем Google Cloud кон "\"IAM & Admin\" > \"Settings\"\n" "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Линк за ресетовање лозинке је истекао" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Ресурс који тражите није доступан" @@ -25943,7 +26138,7 @@ msgstr "Улога {0} треба да буде прилагођена улог msgid "The selected document {0} is not a {1}." msgstr "Изабрани документ {0} није {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака." @@ -26004,7 +26199,7 @@ msgstr "Немате предстојећих догађаја." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Нема {0} за овај {1}, зашто не бисте започели један!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26033,7 +26228,7 @@ msgstr "Тренутно нема ничег новог да се прикаже msgid "There is some problem with the file url: {0}" msgstr "Дошло је до проблема са URL адресом фајла: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26057,7 +26252,7 @@ msgstr "Дошло је до грешака" msgid "There were errors while creating the document. Please try again." msgstr "Дошло је до грешака приликом креирања документа. Молимо Вас да покушате поново." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Дошло је до грешке приликом слања имејла. Молимо Вас да покушате поново." @@ -26071,6 +26266,12 @@ msgstr "Дошло је до грешака приликом постављањ msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Ове најаве ће се појавити унутар обавештења које се може затворити, испод навигационе траке." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Ова поља се користе за пружање метаподатака ресурсног сервера клијентима који шаљу упите на \"well known protected resource\" endpoint." + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26096,7 +26297,7 @@ msgstr "Аутентификација путем екстерних аплик msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Ова Канбан табла ће бити приватна" @@ -26120,7 +26321,7 @@ msgstr "Ове године" msgid "This action is irreversible. Do you wish to continue?" msgstr "Ова радња је неповратна. Да ли желите да наставите?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Ова радња је дозвољена само за {}" @@ -26147,7 +26348,7 @@ msgstr "Овај доцтyпе нема неповезаних поља која msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније." @@ -26163,7 +26364,7 @@ msgstr "Овај документ има несачуване измене ко msgid "This document is already amended, you cannot ammend it again" msgstr "Овај документ је већ измењен и не може поново бити измењен" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Овај документ је тренутно закључан и чека на извршење. Покушајте поново касније." @@ -26228,7 +26429,7 @@ msgstr "Овај провајдер геолокације још увек ни msgid "This goes above the slideshow." msgstr "Ово се приказује изнад презентације." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." @@ -26284,15 +26485,7 @@ msgstr "Ово може бити одштампано на више страни msgid "This month" msgstr "Овај месец" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Овај билтен је заказан за слање на {0}" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Овај билтен је заказан за слање за каснији датум. Да ли сте сигурни да желите да га пошаљете сада?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}." @@ -26300,7 +26493,7 @@ msgstr "Овај извештај садржи {0} редова и превел msgid "This report was generated on {0}" msgstr "Овај извештај је генерисан на {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Овај извештај је генерисан {0}." @@ -26366,7 +26559,7 @@ msgstr "Ово ће ресетовати обилазак и приказати msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Загушено" @@ -26404,7 +26597,6 @@ msgstr "Четвртак" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Време" @@ -26630,10 +26822,8 @@ msgid "Title of the page" msgstr "Наслов странице" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "За" @@ -26687,7 +26877,7 @@ msgstr "Да бисте додали динамичке вредности из "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Да бисте омогућили веће ограничење за ажурирање извештаја, подесите их у подешавању система." @@ -26723,7 +26913,7 @@ msgstr "Да бисте извршили извоз овог корака као msgid "To generate password click {0}" msgstr "За генерисање лозинке кликните {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "За ажурирани извештај кликните на {0}." @@ -26798,7 +26988,7 @@ msgstr "Пребаци у приказ мреже" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" @@ -26819,6 +27009,12 @@ msgstr "Токен" msgid "Token Cache" msgstr "Кеш токена" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Метод верификације за endpoint токена" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26846,7 +27042,7 @@ msgstr "Превише докумената" msgid "Too Many Requests" msgstr "Превише захтева" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Превише промена базе податка у једној радњи." @@ -26854,7 +27050,7 @@ msgstr "Превише промена базе податка у једној р msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Превише задатака у позадини у реду чекања ({0}). Молимо Вас да покушате поново касније." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена" @@ -26916,9 +27112,9 @@ msgstr "Горе десно" msgid "Topic" msgstr "Тема" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Укупно" @@ -26944,16 +27140,8 @@ msgstr "Укупно слика" msgid "Total Outgoing Emails" msgstr "Укупно излазних имејлова" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Укупно примаоца" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Укупно претплатника" @@ -26962,11 +27150,6 @@ msgstr "Укупно претплатника" msgid "Total Users" msgstr "Укупно корисника" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Укупно прегледа" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27054,7 +27237,7 @@ msgstr "Прати кључне тачке документа" msgid "Tracking" msgstr "Праћење" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "URL за праћење је генерисан и копиран у међуспремник" @@ -27101,7 +27284,7 @@ msgstr "Транизиција" msgid "Translatable" msgstr "Могуће превођење" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Преведи податке" @@ -27134,6 +27317,11 @@ msgstr "Превод" msgid "Translations" msgstr "Преводи" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Преводилац" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27356,33 +27544,65 @@ msgstr "URL за документацију или помоћ" msgid "URL must start with http:// or https://" msgstr "URL мора почети са http:// или https://" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL странице са људски читљивим информацијама које могу бити неопходне програмерима." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL веб-странице која пружа информације о клијенту." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL странице са људски читљивим информацијама о условима коришћења заштићеног ресурса." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL странице са људски читљивим информацијама о условима под којима клијент може користити податке." + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL странице" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL који води ка људски читљивим документом о правилима коришћења за клијента. Треба да буде приказан крајњем кориснику пре ауторизације." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL који води ка људски читљивим документом о условима коришћења за клијента. Треба да буде приказан крајњем кориснику пре ауторизације." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL логотипа клијента." + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL ка којем води клик на презентацију слика" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM кампања" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM медијум" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM извор" @@ -27415,7 +27635,7 @@ msgstr "Није могуће отворити приложени фајл. Да msgid "Unable to read file format for {0}" msgstr "Није могуће прочитати формат фајла за {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Није могуће послати имејл због недостајућег имејл налога. Молимо Вас да поставите подразумевани налог у Подешавањима > Имејл налог" @@ -27432,7 +27652,7 @@ msgstr "Није могуће уписати формат фајла за {0}" msgid "Unassign Condition" msgstr "Уклони додељивање услова" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Неухваћени изузетак" @@ -27440,16 +27660,20 @@ msgstr "Неухваћени изузетак" msgid "Unchanged" msgstr "Неизмењено" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Поништи" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Поништи последњу радњу" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Наводници нису правилно избегнути у текстуалном изразу: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Заустави праћење" @@ -27472,6 +27696,15 @@ msgstr "Необрађени имејлови" msgid "Unique" msgstr "Јединствено" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "Јединствени ИД који додељује програмер клијентима, а користи се за идентификацију клијентског софтвера који ће се динамички регистровати.\n" +"
\n" +"Треба да остане исти кроз више верзија или ажурирања софтвера." + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Непознат" @@ -27480,7 +27713,7 @@ msgstr "Непознат" msgid "Unknown Column: {0}" msgstr "Непозната колона: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Непознат метод заокруживања: {}" @@ -27527,7 +27760,7 @@ msgstr "Поништи одабир свега" msgid "Unshared" msgstr "Није подељено" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Отказивање претплате" @@ -27547,10 +27780,15 @@ msgstr "Параметри отказивања претплате" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Отказана претплата" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Неподржана функција или неисправан назив поља: {0}" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Колона без назива" @@ -27673,7 +27911,7 @@ msgstr "Ажурирано на нову верзију 🎉" msgid "Updated successfully" msgstr "Успешно ажурирано" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Ажурирање" @@ -27951,7 +28189,7 @@ msgstr "Корисник не може да креира" msgid "User Cannot Search" msgstr "Корисник не може да претражује" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Корисник промењен" @@ -28057,12 +28295,12 @@ msgstr "Корисничка дозвола" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Корисничке дозволе" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Корисничке дозволе" @@ -28163,15 +28401,15 @@ msgstr "Корисник са имејл адресом {0} не постоји" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Корисник са имејлом: {0} не постоји у систему. Молимо Вас да контактирате 'Систем администратора' да креира корисника за Вас." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Корисник {0} не може бити обрисан" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Корисник {0} не може бити онемогућен" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Корисник {0} не може бити преименован" @@ -28192,7 +28430,7 @@ msgstr "Корисник {0} нема дозволу да креира радн msgid "User {0} has requested for data deletion" msgstr "Корисник {0} је затражио брисање података" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Корисник {0} се представља као {1}" @@ -28221,7 +28459,7 @@ msgstr "URI са подацима о кориснику" msgid "Username" msgstr "Корисничко име" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Корисничко име {0} већ постоји" @@ -28361,15 +28599,15 @@ msgstr "Вредност промењена" msgid "Value To Be Set" msgstr "Вредност коју треба поставити" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Вредност се не може променити за {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Вредност не може бити негативна за" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Вредност не може бити негативна за {0}: {1}" @@ -28395,6 +28633,12 @@ msgstr "Вредност из овог поља биће постављена к msgid "Value must be one of {0}" msgstr "Вредност мора бити једна од {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Вредност \"None\" указује на јавног клијента. У том случају тајна клијента није пружена клијенту, док се за размену токена користи PKCE механизам." + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28408,7 +28652,7 @@ msgstr "Вредност је превелика" msgid "Value {0} missing for {1}" msgstr "Вредност {0} недостаје за {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Вредност {0} мора бити у важећем формату трајања: д х м с" @@ -28488,7 +28732,7 @@ msgstr "Приказ" msgid "View All" msgstr "Прикажи све" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Прикажи историју измена" @@ -28732,7 +28976,7 @@ msgstr "Веб-страница" msgid "Web Page Block" msgstr "Блок веб-странице" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL веб-странице" @@ -28775,6 +29019,7 @@ msgstr "Приказ на вебу" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28833,7 +29078,6 @@ msgstr "URL Webhook-а" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28841,9 +29085,7 @@ msgid "Website" msgstr "Веб-сајт" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Аналитика веб-сајта" @@ -29043,11 +29285,11 @@ msgstr "URL за добродошлицу" msgid "Welcome Workspace" msgstr "Добро дошли у радни простор" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Имејл добродошлице је послат" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Добро дошли у {0}" @@ -29133,7 +29375,7 @@ msgstr "Биће приказано само уколико су наслови msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Планирани задаци ће се извршавати само једном дневно за неактивне сајтове. Поставите на 0 да бисте избегли аутоматско искључивање планера." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Са заглављем" @@ -29274,12 +29516,12 @@ msgstr "Радни ток је успешно ажуриран" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Радни простор" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Радни простор {0} не постоји" @@ -29401,7 +29643,7 @@ msgstr "Поље Y осе" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y поље" @@ -29462,7 +29704,7 @@ msgstr "Жута" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Да" @@ -29502,11 +29744,11 @@ msgstr "Пријављени сте као други корисник." msgid "You are not allowed to access this resource" msgstr "Немате дозволу да приступите овом ресурсу" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у пољу {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у реду {3}, поље {4}" @@ -29529,7 +29771,7 @@ msgstr "Немате дозволу да уређујете извештај." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Немате дозволу да извезете DocType {}" @@ -29537,11 +29779,11 @@ msgstr "Немате дозволу да извезете DocType {}" msgid "You are not allowed to print this report" msgstr "Немате дозволу да одштампате овај извештај" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Немате дозволу да пошаљете имејл везан за овај документ" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Немате дозволу да ажурирате овај документ веб-обрасца" @@ -29557,7 +29799,7 @@ msgstr "Није Вам дозвољено да приступите овој с msgid "You are not permitted to access this page." msgstr "Немате дозволу да приступите овој страници." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ" @@ -29565,7 +29807,7 @@ msgstr "Немате дозволу за приступ овом ресурсу. msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Сада пратите овај документ. Добијаћете дневна обавештења путем имејла. Можете ово променити у подешавањима корисника." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Дозвољено Вам је да ажурирате редослед, немојте уклањати или додавати апликације." @@ -29610,7 +29852,7 @@ msgstr "Можете променити политику чувања подат msgid "You can continue with the onboarding after exploring this page" msgstr "Можете наставити са уводном обуком након што истражите ову страницу" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Можете онемогућити овај {0} уместо да га обришете." @@ -29652,7 +29894,7 @@ msgstr "Можете изабрати једну од следећих," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Можете поставити вишу вредност овде уколико се више корисника пријављује са исте мреже." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Можете покушати да промените филтере Вашег извештаја." @@ -29729,11 +29971,15 @@ msgstr "Немате дозволу за читање или избор за {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Немате довољно дозвола да довршите ову радњу" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "Немате дозволу за приступ пољу: {0}" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "Немате дозволу за приступ {0}: {1}." @@ -29741,19 +29987,19 @@ msgstr "Немате дозволу за приступ {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "Немате дозволу да откажете све повезане документе." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Немате приступ извештају: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "Немате дозволе за приступ DocType-у {0}." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Немате дозволу за приступ овом фајлу" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Немате дозволу да добијате извештај за: {0}" @@ -29818,15 +30064,15 @@ msgstr "Ви сте последњи пут ово уредили" msgid "You must add atleast one link." msgstr "Морате додати барем један линк." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Морате бити пријављени да бисте користили овај образац." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Морате бити пријављени да бисте поднели овај образац" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Неопходна Вам је дозвола '{0}' на {1} {2} да бисте извршили ову радњу." @@ -29846,7 +30092,7 @@ msgstr "Морате бити системски корисник да бист msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама." @@ -29929,7 +30175,7 @@ msgstr "Престали сте да пратите овај документ" msgid "You viewed this" msgstr "Прегледали сте ово" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Пријављени сте као други корисник на другој картици. Освежите ову страницу да бисте наставили рад у систему." @@ -29970,11 +30216,11 @@ msgstr "Ваш налог је закључан и биће поново омо msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Ваша додела за {0} {1} је уклоњена од стране {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Ваш интернет претраживач не подржава звучни елемент." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Ваш интернет претраживач не подржава видео елемент." @@ -29994,11 +30240,11 @@ msgstr "Ваш образац је успешно ажуриран" msgid "Your login id is" msgstr "Ваш ИД за пријављивање је" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Нова лозинка је успешно постављена." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Стара лозинка је нетачна." @@ -30012,7 +30258,7 @@ msgstr "Назив и адреса Ваше организације за под msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили." @@ -30024,7 +30270,7 @@ msgstr "Ваш сајт је тренутно на одржавању или с msgid "Your verification code is {0}" msgstr "Ваш верификациони код је {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Нула" @@ -30048,7 +30294,7 @@ msgstr "_doctype" msgid "_report" msgstr "_report" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator` ради само са `as_list=True` или `as_dict=True`" @@ -30071,7 +30317,7 @@ msgstr "афтеринсерт" msgid "amend" msgstr "измени" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "и" @@ -30128,8 +30374,8 @@ msgstr "креирај" msgid "cyan" msgstr "цијан" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "д" @@ -30243,7 +30489,7 @@ msgstr "имејл" msgid "email inbox" msgstr "пријемна пошта имејла" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "празно" @@ -30295,8 +30541,8 @@ msgstr "сива" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "х" @@ -30329,7 +30575,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "управо сада" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "ознака" @@ -30369,8 +30615,8 @@ msgstr "login_required" msgid "long" msgstr "дуго" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30559,8 +30805,8 @@ msgstr "одговор" msgid "restored {0} as {1}" msgstr "враћено {0} као {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30853,7 +31099,7 @@ msgstr "{0} није дозвољено мењати {1}, након што је msgid "{0} Report" msgstr "{0} извештај" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} извештаји" @@ -30894,7 +31140,7 @@ msgstr "{0} је већ отказао претплату" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} је већ отказао претплату за {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} и {1}" @@ -30902,7 +31148,7 @@ msgstr "{0} и {1}" msgid "{0} are currently {1}" msgstr "{0} је тренутно {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} су неопходни" @@ -30932,7 +31178,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} је отказао овај документ {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} не може бити измењен јер није отказан. Молимо Вас да откажете документ пре него што направите измену." @@ -31000,7 +31246,11 @@ msgstr "{0} не постоји у реду {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "Поља {0} не смеју да садрже backticks (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "{0} формат није могао бити одређен из вредности у овој колони. Подразумевано на {1}." @@ -31020,11 +31270,7 @@ msgstr "{0} х" msgid "{0} has already assigned default value for {1}." msgstr "{0} је већ доделио подразумевану вредност за {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} је успешно додат у Имејл групу." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} је напустио разговор у {1} {2}" @@ -31094,6 +31340,10 @@ msgstr "{0} је као {1}" msgid "{0} is mandatory" msgstr "{0} је обавезно" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "{0} није зависна табела од {1}" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} није поље за доцтyпе {1}" @@ -31115,7 +31365,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} није важећи DocType или динамички линк" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} није важећа имејл адреса" @@ -31123,11 +31373,11 @@ msgstr "{0} није важећа имејл адреса" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} није важећи назив" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} није важећи број телефона" @@ -31135,15 +31385,15 @@ msgstr "{0} није важећи број телефона" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} није важећи матични DocType за {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} није важеће матично поље за {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}" @@ -31167,7 +31417,7 @@ msgstr "{0} није један од {1}" msgid "{0} is not set" msgstr "{0} није постављен" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе" @@ -31177,7 +31427,8 @@ msgstr "{0} је једно од {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} је неопходно" @@ -31190,11 +31441,11 @@ msgstr "{0} је постављено" msgid "{0} is within {1}" msgstr "{0} је унутар {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "одабрано {0} ставки" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} се управо представио као Ви. Навео је следећи разлог: {1}" @@ -31227,23 +31478,23 @@ msgstr "пре {0} минута" msgid "{0} months ago" msgstr "пре {0} месеци" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} мора бити након {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} мора почињати са '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} мора бити једнако '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} не сме бити ниједно од {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} мора бити један од {1}" @@ -31255,7 +31506,7 @@ msgstr "{0} мора прво бити постављено" msgid "{0} must be unique" msgstr "{0} мора бити јединствено" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} мора бити {1} {2}" @@ -31284,16 +31535,12 @@ msgstr "{0} од {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} од {1} ({2} редова са зависним подацима)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} од {1} послато" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "само {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} или {1}" @@ -31330,11 +31577,11 @@ msgstr "{0} је уклонио свој задатак." msgid "{0} role does not have permission on any doctype" msgstr "Улога {0} нема дозволе ни за једну врсту документа" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} ред#{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} је успешно сачувано" @@ -31376,7 +31623,7 @@ msgstr "{0} је поднео овај документ {1}" msgid "{0} subscribers added" msgstr "{0} претплатника додато" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} да бисте престали да примате имејл ове врсте" @@ -31446,11 +31693,11 @@ msgstr "{0} {1} не постоји, изаберите ново тачку за msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} је повезан са следећим поднетим документима: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} није пронађен" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}." @@ -31563,7 +31810,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} је постављено на стање {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} у односу на {2}" @@ -31599,11 +31846,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т msgid "{} Complete" msgstr "{} завршено" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Неважећи пyтхон код на линији {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Потенцијално неважећи пyтхон код.
{}" @@ -31625,7 +31872,7 @@ msgstr "{} поље не може бити празно." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} је онемогућено. Може се омогућити само уколико је {} означено." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} није исправан датум у текстуалном формату." diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 93d0b0a5e5..230c038287 100644 --- a/frappe/locale/sr_CS.po +++ b/frappe/locale/sr_CS.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-23 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-23 21:53\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}" msgid "'Recipients' not specified" msgstr "'Primaoci' nisu navedeni" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" @@ -141,7 +141,7 @@ msgstr "1 dan" msgid "1 Google Calendar Event synced." msgstr "1 događaj iz Google Calendar-a je sinhronizovan." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 izveštaj" @@ -149,7 +149,7 @@ msgstr "1 izveštaj" msgid "1 comment" msgstr "1 komentar" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "pre 1 dan" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "pre 1 sata" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "pre 1 minut" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "pre 1 mesec" @@ -180,37 +180,37 @@ msgstr "1 оd 2" msgid "1 record will be exported" msgstr "1 zapis će biti izvezen" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "pre 1 sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "pre 1 nedelju" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "pre 1 godinu" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "pre 2 sata" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "pre 2 meseca" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "pre 2 nedelje" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "pre 2 godine" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "pre 3 minuta" @@ -226,7 +226,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 zapisa" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "pre 5 dana" @@ -709,11 +709,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Zdravo," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Izveštaji & Master podaci" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Upozorenje: Ovo polje je generisano od strane sistema i može biti zamenjeno budućim ažuriranjem. Izmenite ga koristeći {0}." @@ -740,6 +735,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Naziv DocType-a treba da počne sa slovom i može sadržati isključivo slova, brojeve, razmake, donje crte i crtice" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "Jedna instanca Frappe Framework može funkcionisati i kao OAuth klijent, resurs ili autorizacioni server. Ovaj DocType sadrži podešavanja vezana za sva tri." + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Istaknuti post mora imati naslovnu sliku" @@ -774,6 +774,15 @@ msgstr "Simbol za ovu valutu. Na primer $" msgid "A template already exists for field {0} of {1}" msgstr "Šablon već postoji za polje {0} vrste {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "Tekst koji identifikuje verziju klijentskog softvera.\n" +"
\n" +"Ova vrednost mora da se promeni pri svakom ažuriranju softvera sa istim ID softvera." + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Reč samu po sebi je lako naslutiti." @@ -909,7 +918,7 @@ msgstr "API tajna" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "ASC" +msgstr "RASTUĆE" #. Label of a standard help item #. Type: Action @@ -1018,7 +1027,6 @@ msgstr "Tačan broj nije moguće preuzeti, kliknite ovde za pregled svih dokumen #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1035,7 +1043,7 @@ msgstr "Radnja / Putanja" msgid "Action Complete" msgstr "Radnja završena" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Radnja neuspešna" @@ -1084,10 +1092,10 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Radnje" @@ -1149,8 +1157,8 @@ msgstr "Dnevnik aktivnosti" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Dodaj" @@ -1167,7 +1175,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj novo pravilo" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj prilog" @@ -1191,7 +1199,7 @@ msgstr "Dodaj ivicu na vrhu" msgid "Add Card to Dashboard" msgstr "Dodaj karticu na kontrolnu tablu" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Dodaj grafikon na kontrolnu tablu" @@ -1200,8 +1208,8 @@ msgid "Add Child" msgstr "Dodaj zavisni element" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1237,7 +1245,7 @@ msgid "Add Gray Background" msgstr "Dodaj sivu pozadinu" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Dodaj grupu" @@ -1262,7 +1270,7 @@ msgstr "Dodaj korisnike" msgid "Add Query Parameters" msgstr "Dodaj parametre upita" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Dodaj uloge" @@ -1272,7 +1280,7 @@ msgstr "Dodaj red" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Dodaj potpis" @@ -1295,12 +1303,12 @@ msgstr "Dodaj pretplatnike" msgid "Add Tags" msgstr "Dodaj oznake" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj oznake" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Dodaj šablon" @@ -1407,7 +1415,7 @@ msgid "Add tab" msgstr "Dodaj karticu" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Dodaj na kontrolnu tablu" @@ -1562,11 +1570,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administrator prijavljen" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} dana {1} putem IP adrese {2}." @@ -1674,6 +1682,14 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i obaveštenja" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Pseudonim ne može biti SQL rezervisana reč: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Pseudonim mora biti tekst" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1714,7 +1730,6 @@ msgstr "Poravnaj vrednosti" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -2045,6 +2060,12 @@ msgstr "Dozvoljeno u pominjanima" msgid "Allowed Modules" msgstr "Dozvoljeni moduli" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Dozvoljena porekla javnih klijenata" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2061,7 +2082,43 @@ msgstr "Dozvoljeni umetni domeni" msgid "Allowing DocType, DocType. Be careful!" msgstr "Dozvoljavanje DocType, DocType. Budite oprezni!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "Omogućava klijentima da preuzmu metapodatke sa /.well-known/oauth-authorization-server endpoint-a. ReferencaRFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Omogućava klijentima da preuzmi metapodatke sa /.well-known/oauth-protected-resource endpoint-a. Referenca: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Omogućava klijentima da se registruju samostalno, bez ručne intervencije. Registracija kreira OAuth klijent unos. Referenca: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Omogućava klijentima da ovo vide kao autorizacioni server prilikom upita ka /.well-known/oauth-protected-resource endpoint-u." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Omogućava da se omogućeni osnovni URL ključa za prijavljivanje putem društvenih mreža prikaže kao autorizacioni server." + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "Omogućava preskakanje autorizacije ukoliko korisnik već ima aktivne tokene." + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Već registrovan" @@ -2152,7 +2209,7 @@ msgstr "Izmena" msgid "Amendment Naming Override" msgstr "Zanemari pravila imenovanja izmena" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Izmena nije dozvoljena" @@ -2160,7 +2217,7 @@ msgstr "Izmena nije dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila imenovanja izmena ažurirana." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije" @@ -2241,16 +2298,6 @@ msgstr "Osim sistem menadžera, uloge sa pravima za postavljanje korisničkih do msgid "App" msgstr "Aplikacija" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "ID klijenta aplikacije" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Tajni ključ klijenta aplikacije" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2264,21 +2311,24 @@ msgstr "Logo aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Naziv aplikacije" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Naziv aplikacije (naziv klijenta)" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "Aplikacija nije pronađena za modul: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "Aplikacija {0} nije instalirana" @@ -2343,7 +2393,7 @@ msgstr "Primenjeno na" msgid "Apply" msgstr "Primeni" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primeni pravilo dodele" @@ -2424,7 +2474,7 @@ msgstr "Arhivirano" msgid "Archived Columns" msgstr "Arhivirane kolone" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?" @@ -2456,7 +2506,7 @@ msgstr "Da li ste sigurni da želite da obrišete karticu? Svi odeljci zajedno s msgid "Are you sure you want to discard the changes?" msgstr "Da li ste sigurni da želite da odbacite promene?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" @@ -2492,10 +2542,6 @@ msgstr "Da li ste sigurni da želite da poništite sva prilagođavanja?" msgid "Are you sure you want to save this document?" msgstr "Da li ste sigurni da želite da sačuvate ovaj dokument?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Da li ste sigurni da želite da pošaljete ovaj bilten sada?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2528,16 +2574,16 @@ msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adres msgid "Assign Condition" msgstr "Dodeli uslov" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Dodeli" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodeli" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Dodeli grupi korisnika" @@ -2689,7 +2735,7 @@ msgstr "Barem jedno polje matične vrste dokumenta je obavezno" msgid "Attach" msgstr "Priloži" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Priloži štampanu verziju dokumenta" @@ -2749,9 +2795,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Priloženo uz naziv mora biti tekst ili broj" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Prilog" @@ -2778,20 +2822,17 @@ msgid "Attachment Removed" msgstr "Prilog uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Pokušava se povezivanje sa QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Pokušava se pokretanje QZ Tray..." @@ -2799,11 +2840,6 @@ msgstr "Pokušava se pokretanje QZ Tray..." msgid "Attribution" msgstr "Pripisivanje" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Publika" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2848,6 +2884,11 @@ msgstr "Autentifikacija nije uspela prilikom primanja imejlova sa imejl naloga: msgid "Author" msgstr "Autor" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Autorizacija" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3082,7 +3123,7 @@ msgstr "Avatar" msgid "Average" msgstr "Prosek" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Prosečna vrednost {0}" @@ -3187,7 +3228,7 @@ msgstr "B9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3230,7 +3271,7 @@ msgstr "Slika pozadine" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Pozadinski zadaci" @@ -3836,7 +3877,7 @@ msgstr "OTKAZANO" msgid "CC" msgstr "CC" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "CC" @@ -3959,10 +4000,8 @@ msgstr "Callback naslov" msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4029,7 +4068,7 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji." msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4047,11 +4086,7 @@ msgstr "Otkaži sve" msgid "Cancel All Documents" msgstr "Otkaži sve dokumente" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Otkaži zakazivanje" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" @@ -4118,11 +4153,11 @@ msgstr "Nije moguće otkazati pre podnošenja. Pogledaj tranziciju {0}" msgid "Cannot cancel {0}." msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Nije moguće promeniti status dokumenta iz 0 (nacrt) u 2 (otkazan)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)" @@ -4150,7 +4185,7 @@ msgstr "Nije moguće kreirati privatni radni prostor za ostale korisnike" msgid "Cannot delete Home and Attachments folders" msgstr "Nije moguće obrisati početne i priložene datoteke" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Nije moguće obrisati ili otkazati jer je {0} {1} povezano sa {2} {3} {4}" @@ -4205,7 +4240,7 @@ msgstr "Nije moguće urediti standardne grafikone" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Nije moguće urediti standardne izveštaje. Molimo Vas napravite duplikat i kreirajte novi izveštaj" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Nije moguće urediti otkazan dokument" @@ -4242,7 +4277,7 @@ msgstr "Nije moguće mapirati više štampača na jedan format za štampu." msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvoziti tabelu sa više od 5000 redova." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4287,7 +4322,7 @@ msgstr "Nije moguće ažurirati {0}" msgid "Cannot use sub-query in order by" msgstr "Nije moguće koristiti podupit u komandi sortiraj po" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po" @@ -4313,7 +4348,7 @@ msgstr "Kartica" msgid "Card Break" msgstr "Prelom kartice" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Oznaka kartice" @@ -4344,10 +4379,6 @@ msgstr "Opis kategorije" msgid "Category Name" msgstr "Naziv kategorije" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Cent" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4456,7 +4487,7 @@ msgstr "Konfiguracija dijagrama" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Naziv dijagrama" @@ -4513,10 +4544,6 @@ msgstr "Označi" msgid "Check Request URL" msgstr "Proveri URL zahteva" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Proveri prekinute linkove" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Proveri kolone za označavanje, prevuci da postaviš redosled." @@ -4540,10 +4567,6 @@ msgstr "Označi ovo ukoliko želiš da nateraš korisnika da odabere seriju pre msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "Označite za prikaz pune numeričke vrednosti (npr. 1.234.567 umesto 1.2M)." -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Proveravanje prekinutih linkova..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Proverava se, trenutak" @@ -4590,6 +4613,10 @@ msgstr "Zavisna tabela {0} za polje {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Zavisne tabele se prikazuju kao tabele u drugim DocType-ovima" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple." + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Izaberi postojeću karticu ili kreiraj novu karticu" @@ -4629,15 +4656,19 @@ msgstr "Grad/Naseljeno mesto" msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Očisti i dodaj šablon" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Očisti i dodaj šablon" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Očisti sve" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Očisti dodeljene zadatke" @@ -4663,7 +4694,7 @@ msgstr "Očisti evidencije nakon (dana)" msgid "Clear User Permissions" msgstr "Očisti korisničke dozvole" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Očisti imejl poruke i dodaj šablon" @@ -4679,10 +4710,6 @@ msgstr "Kliknite na prilagodi da dodate svoj prvi vidžet" msgid "Click here" msgstr "Kliknite ovde" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Kliknite ovde da verifikujete" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Kliknite na fajl da ga odaberete." @@ -4762,8 +4789,10 @@ msgid "Client Credentials" msgstr "Kredencijali klijenta" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "ID klijenta" @@ -4779,6 +4808,12 @@ msgstr "Id klijenta" msgid "Client Information" msgstr "Informacije o klijentu" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Metapodaci klijenta" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4791,13 +4826,32 @@ msgstr "Klijentska skripta" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Tajna klijenta" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Osnovna tajna klijenta" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Client Secret Post" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "URI klijenta" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4882,7 +4936,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sažmi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sažmi sve" @@ -4937,7 +4991,7 @@ msgstr "Može se sažeti zavisi od (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5024,11 +5078,11 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Kolone zasnovane na" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombinacija vrste dozvole ({0}) i vrste odgovora ({1}) nije dozvoljena" @@ -5187,7 +5241,7 @@ msgstr "Završeno" msgid "Complete By" msgstr "Završeno od strane" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Završi registraciju" @@ -5277,6 +5331,12 @@ msgstr "Opis uslova" msgid "Conditions" msgstr "Uslovi" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Konfiguracija" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5315,7 +5375,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Konfigurišite različite aspekte kako funkcioniše imenovanje dokumenata, kao što su serije imenovanja, trenutni brojač." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5324,7 +5384,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Potvrdi" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Potvrdi pristup" @@ -5337,7 +5397,7 @@ msgstr "Potvrdi uklanjanje naloga" msgid "Confirm New Password" msgstr "Potvrdi novu lozinku" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Potvrdi lozinku" @@ -5346,17 +5406,12 @@ msgstr "Potvrdi lozinku" msgid "Confirm Request" msgstr "Potvrdi zahtev" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Potvrdite Vaš imejl" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Šablon imejla za potvrdu" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Potvrđeno" @@ -5383,8 +5438,8 @@ msgstr "Povezane aplikacije" msgid "Connected User" msgstr "Povezani korisnik" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Povezano sa QZ Tray!" @@ -5476,6 +5531,11 @@ msgstr "Podešavanje za kontaktiranje" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Opcije za kontakt, poput \"Upit za prodaju, Upit za podršku\" itd., svaka u novom redu ili odvojena zarezima." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakti" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Sadrži {0} ispravku bezbednosti" @@ -5487,8 +5547,6 @@ msgstr "Sadrži {0} ispravki bezbednosti" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5496,8 +5554,7 @@ msgstr "Sadrži {0} ispravki bezbednosti" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5521,10 +5578,8 @@ msgstr "Sadržaj (Markdown)" msgid "Content Hash" msgstr "Heš sadržaj" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5581,7 +5636,7 @@ msgstr "Status doprinosa" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Kontroliše da li novi korisnici mogu da se registruju koristeći ovaj ključ za prijavljivanje putem društvenih mreža. Ukoliko nije postavljeno, poštuju se podešavanja veb-sajta." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Kopirano u međuspremnik." @@ -5597,7 +5652,7 @@ msgstr "Kopiraj embeded code" msgid "Copy error to clipboard" msgstr "Kopiraj grešku u međuspremnik" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Kopiraj u međuspremnik" @@ -5622,7 +5677,7 @@ msgstr "Ispravna verzija :" msgid "Could not connect to outgoing email server" msgstr "Nije bilo moguće povezati se sa serverom za izlazne imejlove" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Nije bilo moguće pronaći {0}" @@ -5630,6 +5685,10 @@ msgstr "Nije bilo moguće pronaći {0}" msgid "Could not map column {0} to field {1}" msgstr "Nije bilo moguće mapirati kolonu {0} na polje {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "Nije moguće obraditi polje: {0}" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Nije bilo moguće pokrenuti: " @@ -5646,7 +5705,7 @@ msgstr "Nije bilo moguće sačuvati, proverite unesene podatke" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Brojčano" @@ -5685,7 +5744,7 @@ msgstr "Brojač" msgid "Country" msgstr "Država" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Šifra države je neophodna" @@ -5717,7 +5776,7 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5731,13 +5790,13 @@ msgstr "Kreiraj i nastavi" msgid "Create Address" msgstr "Kreiraj adresu" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Kreiraj karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Kreiraj grafikon" @@ -5816,11 +5875,6 @@ msgstr "Kreiraj novi {0}" msgid "Create a {0} Account" msgstr "Kreiraj {0} nalog" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Kreiraj i pošalji imejlove specifičnoj grupi pretplatnika periodično." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Kreiraj ili uredi format štampe" @@ -6169,6 +6223,10 @@ msgstr "Prilagođeni prevod" msgid "Custom field renamed to {0} successfully." msgstr "Prilagođeno polje je uspešno preimenovano u {0}." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "Prilagođena get_list metoda za {0} mora vratiti QueryBuilder objekat ili None, dobijeno {1}" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6202,12 +6260,12 @@ msgstr "Prilagođavanje za {0} su izvezena:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6226,7 +6284,7 @@ msgstr "Prilagodi kontrolnu tablu" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Prilagodi obrazac" @@ -6352,7 +6410,7 @@ msgstr "Tamna tema" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Kontrolna tabla" @@ -6519,7 +6577,6 @@ msgstr "Verzija baze podataka" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6583,6 +6640,11 @@ msgstr "Dan" msgid "Day of Week" msgstr "Dan u nedelji" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dani" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6847,15 +6909,16 @@ msgstr "Kašnjenje" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Obriši" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Obriši" @@ -6891,7 +6954,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Obriši karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Obriši i generiši novi" @@ -6933,12 +6996,12 @@ msgstr "Obriši karticu" msgid "Delete this record to allow sending to this email address" msgstr "Obriši ovaj zapis da bi omogućio slanje na ovu imejl adresu" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno obriši {0} stavku?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno obriši {0} stavke?" @@ -7162,6 +7225,7 @@ msgstr "Tema radne površine" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7345,8 +7409,8 @@ msgstr "Onemogući prijavljivanja" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Onemogućeno" @@ -7355,7 +7419,7 @@ msgstr "Onemogućeno" msgid "Disabled Auto Reply" msgstr "Onemogući automatski odgovor" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7516,6 +7580,7 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
{0}< #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7761,7 +7826,7 @@ msgstr "Uslov pravila imenovanja dokumenta" msgid "Document Naming Settings" msgstr "Podešavanje imenovanja dokumenata" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "Dokument u redu za obradu" @@ -7918,7 +7983,7 @@ msgid "Document Types and Permissions" msgstr "Vrste i dozvole dokumenta" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "Dokument je otključan" @@ -8055,7 +8120,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "Nemojte kodirati HTML tagove poput <script> ili znakove poput < or >, jer mogu biti namerno korišćeni u ovom polju" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "Nemate nalog?" @@ -8109,7 +8174,7 @@ msgstr "Preuzmi link" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Preuzmi izveštaj" @@ -8193,7 +8258,7 @@ msgid "Due Date Based On" msgstr "Datum dospeća zasnovan na" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Duplikat" @@ -8308,9 +8373,9 @@ msgstr "IZLAZ" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8322,7 +8387,7 @@ msgstr "IZLAZ" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8357,11 +8422,11 @@ msgstr "Uredi prilagođeni blok" msgid "Edit Custom HTML" msgstr "Uredi prilagođeni HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8536,10 +8601,9 @@ msgstr "Izbor elementa" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8574,7 +8638,7 @@ msgstr "Imejl nalog onemogućen." msgid "Email Account Name" msgstr "Naziv imejl naloga" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "Imejl nalog je dodat više puta" @@ -8630,11 +8694,9 @@ msgstr "Adresa u podnožju imejla" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "Imejl grupa" @@ -8683,7 +8745,7 @@ msgstr "Red čekanja za imejlove" msgid "Email Queue Recipient" msgstr "Primalac u redu čekanja za imejlove" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "Brisanje reda čekanja za imejlove je prekinuto zbog previše neuspešnih pokušaja." @@ -8707,18 +8769,11 @@ msgstr "Ograničenje ponovnih pokušaja za imejl" msgid "Email Rule" msgstr "Imejl pravilo" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "Imejl poslat" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "Imejl poslat u" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8754,7 +8809,7 @@ msgstr "Opcija za sinhronizaciju imejla" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "Imejl šablon" @@ -8786,7 +8841,7 @@ msgstr "Imejl je premešten u otpad" msgid "Email is mandatory to create User Email" msgstr "Imejl je obavezan za kreiranje korisničkog imejla" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Imejl nije poslat {0} (otkazana pretplata / onemogućeno)" @@ -8812,7 +8867,7 @@ msgstr "Imejlovi preuzeti" msgid "Emails are already being pulled from this account." msgstr "Imejlovi se već preuzimaju sa ovog naloga." -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "Imejlovi su utišani" @@ -8825,10 +8880,18 @@ msgstr "Imejlovi će biti poslati sa sledećim mogućim radnjama u radnom toku" msgid "Embed code copied" msgstr "Kod za ugradnju je kopiran" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "Prazan pseudonim nije dozvoljen" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "Prazna kolona" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "Argumenti kao prazan tekst nisu dozvoljeni" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8864,6 +8927,12 @@ msgstr "Omogući automatsko povezivanje u dokumentima" msgid "Enable Comments" msgstr "Omogući komentare" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "Omogući dinamičku registraciju klijenta" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -9024,8 +9093,8 @@ msgstr "Omogući praćenje veb-sajta unutar aplikacije" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Omogućeno" @@ -9119,7 +9188,7 @@ msgstr "Završeno u" #. 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" -msgstr "Krajnje tačke" +msgstr "Endpoints" #. Label of the ends_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -9152,7 +9221,7 @@ msgstr "Unesite klijentski ID i tajnu klijenta u Google podešavanja." msgid "Enter Code displayed in OTP App." msgstr "Unesite šifru prikazanu u aplikaciji za jednokratnu lozinku." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "Unesite primaoce imejla" @@ -9255,7 +9324,7 @@ msgstr "Evidencije grešaka" msgid "Error Message" msgstr "Poruka o grešci" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Greška pri povezivanju sa QZ Tray aplikacijom...

Potrebno je da imate instaliranu i pokrenutu QZ Tray, da biste mogli da koristite funkciju neobrađene štampe.

Kliknite ovde da biste preuzeli i instalirali QZ Tray.
Kliknite ovde da biste naučili više o neobrađenoj štampi.." @@ -9293,6 +9362,14 @@ msgstr "Greška u obaveštenju" msgid "Error in print format on line {0}: {1}" msgstr "Greška u formatu štampe na liniji {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Greška u {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Greška prilikom obrade ugnježdenih filtera: {0}" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Greška pri povezivanju sa imejl nalogom {0}" @@ -9458,7 +9535,7 @@ msgstr "Izvršavanje koda" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Vreme izvršavanja: {0} sekundi" @@ -9484,11 +9561,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Proširi sve" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "Očekivan je operator 'and' ili 'or', pronađeno: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Eksperimentalno" @@ -9541,13 +9622,13 @@ msgstr "Vreme isteka stranica sa QR kodom" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvoz" @@ -9905,8 +9986,8 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9977,7 +10058,7 @@ msgstr "Polje za praćenje" msgid "Field type cannot be changed for {0}" msgstr "Vrsta polja ne može biti promenjena za {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "Polje {0} ne postoji u {1}" @@ -10020,7 +10101,7 @@ msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Naziv polja je ograničen na 64 karaktera ({0})" @@ -10036,7 +10117,7 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje." msgid "Fieldname {0} appears multiple times" msgstr "Naziv polja {0} se pojavljuje više puta" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}" @@ -10088,6 +10169,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Polja moraju biti lista ili tuple kada je opcija as_list omogućena" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "Polja moraju biti tekst, lista, tuple, pypika polje ili pypika funkcija" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10253,6 +10338,14 @@ msgstr "Filter naziva" msgid "Filter Values" msgstr "Filter vrednosti" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Nedostaje uslov filtera nakon operatora: {0}" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Polja filtera ne mogu sadržati backticks (`)." + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filteri..." @@ -10464,7 +10557,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Prati" @@ -10472,7 +10565,7 @@ msgstr "Prati" msgid "Followed by" msgstr "Praćen od strane" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Sledeći filteri izveštaja imaju nedostajuće vrednosti:" @@ -10496,10 +10589,6 @@ msgstr "Sledeća polja imaju nedostajuće vrednosti" msgid "Following fields have missing values:" msgstr "Sledeća polja imaju nedostajuće vrednosti:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Sledeći linkovi su pokidani u sadržaju imejla: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10661,7 +10750,7 @@ msgstr "Za korisnika" msgid "For Value" msgstr "Za vrednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Za poređenje, koristite >5, <10 or =324. Za opsege, koristite 5:10 (za vrednosti između 5 i 10)." @@ -10917,15 +11006,13 @@ msgid "Friday" msgstr "Petak" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Od" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Od" @@ -10941,7 +11028,7 @@ msgstr "Datum početka" msgid "From Date Field" msgstr "Polje za datum početka" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Od vrste dokumenta" @@ -10992,7 +11079,7 @@ msgstr "Puna širina" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Funkcija" @@ -11001,10 +11088,14 @@ msgstr "Funkcija" msgid "Function Based On" msgstr "Funkcija zasnovana na" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na listi dozvoljenih." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "Funkcija {0} zahteva argumente, ali ni jedan nije naveden" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'" @@ -11066,7 +11157,7 @@ msgstr "Opšte" msgid "Generate Keys" msgstr "Generiši ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Generiši novi izveštaj" @@ -11074,8 +11165,8 @@ msgstr "Generiši novi izveštaj" msgid "Generate Random Password" msgstr "Generiši nasumičnu lozinku" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Generiši URL za praćenje" @@ -11190,7 +11281,7 @@ msgstr "Globalne prečice" msgid "Global Unsubscribe" msgstr "Globalno otkazivanje pretplate" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Kreni" @@ -11354,8 +11445,6 @@ msgstr "Google Contacts - Nije moguće ažurirati kontakt u Google Contacts {0}, msgid "Google Contacts Id" msgstr "Google Contacts Id" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11392,6 +11481,7 @@ msgstr "Google Services" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11486,6 +11576,10 @@ msgstr "Vrsta Grupisano po" msgid "Group By field is required to create a dashboard chart" msgstr "Polje Grupisano po je neophodno za kreiranje grafikona na kontrolnoj tabli" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "Grupisano po mora biti tekst" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Čvor grupe" @@ -11500,7 +11594,7 @@ msgstr "Grupa klase objekta" msgid "Group your custom doctypes under modules" msgstr "Grupiši svoje prilagođene vrste dokumenata unutar modula" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Grupisano po {0}" @@ -11534,7 +11628,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11548,11 +11641,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11781,7 +11873,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Evo Vašeg URL za praćenje" @@ -11817,12 +11909,17 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena polja" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "Sakrivene kolone uključuju: {0}" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Sakrij" @@ -11929,7 +12026,7 @@ msgstr "Sakrij bočnu traku, meni i komentare" msgid "Hide Standard Menu" msgstr "Sakrij standardni meni" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Sakrij oznake" @@ -11984,7 +12081,7 @@ msgstr "Pravilo sa višim prioritetom biće primenjeno prvo" msgid "Highlight" msgstr "Istaknuto" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Savet: Uključite simbole, brojeve i velika slova u lozinku" @@ -12057,20 +12154,30 @@ msgstr "Održavanje na svakih sat vremena" msgid "Hourly rate limit for generating password reset links" msgstr "Ograničenje po času za generisanje linkova za resetovanje lozinke" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Časovi" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Kako treba da se formatira ova valuta? Ukoliko nije podešeno, koristiće se podrazumevane vrednosti sistema" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Ljudski čitljiv naziv namenjen za prikazivanje krajnjem korisniku." + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Izgleda da još uvek nemaš pristup nijednom radnom prostoru, uvek možeš da napraviš jedan za sebe. Klikni na dugme Kreiraj radni prostor da ga napraviš.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12475,7 +12582,7 @@ msgstr "Polje slike mora biti vrste Priloži sliku" msgid "Image link '{0}' is not valid" msgstr "Link slike '{0}' nije važeći" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Slika je optimizovana" @@ -12523,7 +12630,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvoz" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvoz" @@ -12751,11 +12858,15 @@ msgstr "Uključi temu iz aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi link ka veb-prikazu u imejlu" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Uključi filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "Uključi sakrivene kolone" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Uključi indentaciju" @@ -12822,11 +12933,11 @@ msgstr "Pogrešno korisničko ime ili lozinka" msgid "Incorrect Verification code" msgstr "Pogrešan verifikacioni kod" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Pogrešna vrednost u redu {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Pogrešna vrednost:" @@ -12913,7 +13024,7 @@ msgstr "Unesi iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Unesi nakon" @@ -12978,11 +13089,11 @@ msgstr "Uputstva" msgid "Instructions Emailed" msgstr "Uputstva poslata imejlom" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan nivo ovlašćena za {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Nedovoljna ovlašćena za {0}" @@ -13104,7 +13215,7 @@ msgstr "Nevažeće" msgid "Invalid \"depends_on\" expression" msgstr "Nevažeći \"depends_on\" izraz" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}" @@ -13132,7 +13243,7 @@ msgstr "Nevažeći uslov: {}" msgid "Invalid Credentials" msgstr "Nevažeći kredencijali" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Nevažeći datum" @@ -13140,7 +13251,7 @@ msgstr "Nevažeći datum" msgid "Invalid DocType" msgstr "Nevažeći DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Nevažeći DocType: {0}" @@ -13152,6 +13263,11 @@ msgstr "Nevažeći naziv polja" msgid "Invalid File URL" msgstr "Nevažeći URL fajla" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "Nevažeći filter" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Nevažeći format filtera za polje {0} vrste {1}. Pokušajte da koristite ikonicu filtera na polju kako biste ga ispravno podesili" @@ -13164,7 +13280,7 @@ msgstr "Nevažeća vrednost filtera" msgid "Invalid Home Page" msgstr "Nevažeća početna stranica" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Nevažeći link" @@ -13198,7 +13314,7 @@ msgstr "Nevažeća opcija" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Nevažeći izlazni imejl server ili port: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Nevažeći izlazni format" @@ -13210,13 +13326,13 @@ msgstr "Nevažeća izmena" msgid "Invalid Parameters." msgstr "Nevažeći parametri." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Nevažeća lozinka" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Nevažeći broj telefona" @@ -13260,11 +13376,39 @@ msgstr "Nevažeća tajna za Webhook" msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodnicima obuhvaćeni tekstovi ili jednostavni nazivi polja." + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Nevažeća vrsta argumenta: {0}. Dozvoljeni su tekst, broj i None." + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "Nevažeći karakteri u nazivu polja: {0}. Dozvoljena su slova, brojevi i donje crte." + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "Nevažeći karakteri u nazivu tabele: {0}" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "Nevažeći smer u Sortiraj po: {0}. Mora biti 'RASTUĆE' ili 'OPADAJUĆE'." + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Nevažeći status dokumenta" @@ -13276,10 +13420,30 @@ msgstr "Nevažeći izraz postavljen u filteru {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Nevažeći izraz postavljen u filteru {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, u okviru backtics, sa prefiksom tabele, sa pseudonimom ili '*'." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field', or 'child_table.field'." + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja." + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "Nevažeći naziv polja: {0}" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "Nevažeća vrsta polja: {0}" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju" @@ -13288,11 +13452,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju" msgid "Invalid file path: {0}" msgstr "Nevažeća putanja fajla: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili tuple." + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Nevažeći format polja za filter: {0}. Koristite 'fieldname' or 'link_fieldname.target_fieldname'." + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "Nevažeća vrsta argumenta funkcije: {0}. Dozvoljeni su isključivo tekstovi, brojevi, liste i None." + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "Nevažeći format rečnika funkcije" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13314,10 +13493,22 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahteva" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Nevažeći jednostavni format filtera: {0}" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Nevažeći početak uslova za filter: {0}. Očekivana je lista ili tuple." + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "Nevažeći format tekstualnog izraza: {0}" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Nevažeći fajl šablona za uvoz" @@ -13725,8 +13916,8 @@ msgstr "Zadatak nije pokrenut." msgid "Join video conference with {0}" msgstr "Pridruži se video-konferenciji sa {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Idi na polje" @@ -13759,11 +13950,11 @@ msgstr "Kolona Kanban table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Naziv Kanban table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban podešavanje" @@ -14051,7 +14242,7 @@ msgstr "Oznaka je obavezna" msgid "Landing Page" msgstr "Ciljna stranica" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Pejzažni" @@ -14347,7 +14538,7 @@ msgstr "Pismo" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14475,6 +14666,10 @@ msgstr "Lajkovanja" msgid "Limit" msgstr "Limit" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Ograničenje mora biti pozitivan ceo broj" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14657,7 +14852,7 @@ msgstr "Linkovi" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14687,7 +14882,7 @@ msgstr "Filter liste" msgid "List Settings" msgstr "Podešavanje liste" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Podešavanje liste" @@ -14738,6 +14933,7 @@ msgid "Load Balancing" msgstr "Balansiranje opterećenja" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14758,7 +14954,7 @@ msgstr "Učita više" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Učitavanje" @@ -14970,6 +15166,11 @@ msgstr "Prijavljivanje putem korisničkom imena i lozinke nije dozvoljena." msgid "Login with {0}" msgstr "Prijavljivanje sa {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "Logo URI" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15156,7 +15357,7 @@ msgstr "Obavezno zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezni podaci:" @@ -15256,11 +15457,9 @@ msgstr "Označi kao neželjeno" msgid "Mark as Unread" msgstr "Označi kao nepročitano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15381,7 +15580,7 @@ msgstr "Značenje opcija podnesi, otkaži, izmeni" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15449,7 +15648,6 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15462,11 +15660,10 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15477,16 +15674,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Poruka" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Poruka (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Poruka (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15513,7 +15700,7 @@ msgstr "Poruka poslata" msgid "Message Type" msgstr "Vrsta poruke" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Poruka je skraćena" @@ -15591,6 +15778,12 @@ msgstr "Meta naslov" msgid "Meta title for SEO" msgstr "Meta naslov za SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Metapodaci" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15610,7 +15803,7 @@ msgstr "Meta naslov za SEO" msgid "Method" msgstr "Metoda" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Metoda nije dozvoljena" @@ -15660,6 +15853,11 @@ msgstr "Minimalna ocena jačine lozinke" msgid "Minor" msgstr "Manji" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minuti" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15699,7 +15897,7 @@ msgstr "Nedostajuće polje" msgid "Missing Fields" msgstr "Nedostajuća polja" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Nedostajući obavezni filteri" @@ -15707,7 +15905,7 @@ msgstr "Nedostajući obavezni filteri" msgid "Missing Permission" msgstr "Nedostajuće dozvole" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Nedostajuće vrednosti" @@ -15773,7 +15971,7 @@ msgstr "Izmenjeno od strane" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16055,7 +16253,7 @@ msgstr "Mora biti zatvoren u '()' i uključivati '{0}', koji je rezervisani teks msgid "Must be of type \"Attach Image\"" msgstr "Mora biti vrste \"Priloži sliku\"" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Mora imati dozvolu za izveštaj da bi pristupio ovom izveštaju." @@ -16073,7 +16271,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16217,12 +16415,12 @@ msgstr "Šablon navigacione trake" msgid "Navbar Template Values" msgstr "Vrednosti šablona navigacione trake" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Pomeri listu prema dole" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Pomeri listu prema gore" @@ -16241,10 +16439,14 @@ msgstr "Podešavanje navigacije" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privatni radni prostor drugih korisnika" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Negativna vrednost" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Ugnježdeni filteri moraju biti predati kao lista ili tuple." + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora." @@ -16327,7 +16529,7 @@ msgstr "Novi događaj" msgid "New Folder" msgstr "Nova datoteka" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Nova Kanban tabla" @@ -16350,10 +16552,6 @@ msgstr "Nova poruka sa kontakt stranice veb-sajta" msgid "New Name" msgstr "Novi naziv" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Novi bilten" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Novo obaveštenje" @@ -16366,7 +16564,7 @@ msgstr "Nova brojčana kartica" msgid "New Onboarding" msgstr "Nova uvodna obuka" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova lozinka" @@ -16411,7 +16609,28 @@ msgstr "Novi naziv radnog toka" msgid "New Workspace" msgstr "Novi radni prostor" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "Lista dozvoljenih URL adresa javnih klijenata, odvojenih novim redom (npr. https://frappe.io), ili * za prihvatanje svih.\n" +"
\n" +"Javni klijenti su podrazumevano ograničeni." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Lista vrednosti opsega odvojena novim redom." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Lista tekstova, odvojenih novim redovima, koji predstavljaju načine za kontaktiranje osoba odgovornih za ovog klijenta, obično imejl adrese." + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Nova lozinka ne sme biti ista kao stara lozinka" @@ -16435,7 +16654,7 @@ msgstr "Nova vrednost treba da bude postavljena" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16443,19 +16662,19 @@ msgstr "Nova vrednost treba da bude postavljena" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Novi {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Novi {0} kreiran" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Novi {0} {1} dodat u kontrolnu tablu {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Novi {0} {1} kreiran" @@ -16467,52 +16686,17 @@ msgstr "Novi {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Novi {} verzije za sledeće aplikacija su dostupne" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "Novokreirani korisnik {0} nema omogućene uloge." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Bilten" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Prilog biltena" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Imejl grupa za bilten" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Menadžer biltena" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Bilten je već poslat" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Bilten mora biti objavljen da bi se poslao link za pregled u imejlu" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Bilten treba da ima barem jednog primaoca" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Bilteni" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16629,7 +16813,7 @@ msgstr "Sledeće na klik" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16658,7 +16842,7 @@ msgid "No Copy" msgstr "Bez kopiranja" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16770,11 +16954,11 @@ msgstr "Nema rezultata" msgid "No Results found" msgstr "Nijedan rezultat nije pronađen" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Uloge nisu navedene" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Nije pronađeno polje za izbor" @@ -16802,10 +16986,6 @@ msgstr "Nema upozorenja za danas" msgid "No automatic optimization suggestions available." msgstr "Nema dostupnih automatskih predloga za optimizaciju." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "Nisu pronađeni neispravni linkovi u sadržaju imejla" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Nema promena u dokumentu" @@ -16842,7 +17022,7 @@ msgstr "Nijedan kontakt nije još uvek dodat." msgid "No contacts linked to document" msgstr "Nijedan kontakt nije povezan sa dokumentom" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Nema podataka za izvoz" @@ -16862,7 +17042,7 @@ msgstr "Nijedan imejl nalog nije povezan sa korisnikom. Molimo Vas da dodate nal msgid "No failed logs" msgstr "Nema neuspešnih evidencija" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Koristite prilagodi obrazac da biste dodali prilagođeno polje vrste \"Izbor\"." @@ -16921,7 +17101,7 @@ msgstr "Broj redova (maksimalno 500)" msgid "No of Sent SMS" msgstr "Broj poslatih SMS poruka" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Ne postoji dozvola za {0}" @@ -17014,6 +17194,12 @@ msgstr "Nije negativna vrednost" msgid "Non-Conforming" msgstr "Nepodudaran" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "None" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Nijedno: Kraj radnog toka" @@ -17028,7 +17214,7 @@ msgstr "Normalizovane kopije" msgid "Normalized Query" msgstr "Normalizovani upiti" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nije dozvoljeno" @@ -17049,7 +17235,7 @@ msgstr "Nisu potomci od" msgid "Not Equals" msgstr "Nije jednako" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije pronađeno" @@ -17075,16 +17261,16 @@ msgstr "Nije povezani ni sa jednim zapisom" msgid "Not Nullable" msgstr "Ne može biti prazno" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nije dozvoljeno" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "Nije dozvoljeno za čitanje {0}" @@ -17094,8 +17280,8 @@ msgstr "Nije dozvoljeno za čitanje {0}" msgid "Not Published" msgstr "Nije objavljeno" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17112,7 +17298,6 @@ msgstr "Nije viđeno" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Nije poslato" @@ -17129,7 +17314,7 @@ msgstr "Nije postavljeno" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Nevažeći Comma Separated Value (CSV fajl)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Nevažeća slika korisnika." @@ -17145,7 +17330,7 @@ msgstr "Nevažeći korisnik" msgid "Not active" msgstr "Nije aktivno" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" @@ -17186,7 +17371,7 @@ msgstr "Nije u razvojnom režimu! Postavite u site_config.json ili napravite 'Pr #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" @@ -17364,7 +17549,7 @@ msgstr "Obavesti ukoliko nije odgovoreno (u minutima)" msgid "Notify users with a popup when they log in" msgstr "Obavesti korisnike putem iskačućeg prozora kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sada" @@ -17507,6 +17692,11 @@ msgstr "Podešavanje OAuth provajdera" msgid "OAuth Scope" msgstr "OAuth opseg" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "OAuth podešavanja" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth je omogućen, ali nije autorizovan. Molimo Vas da koristite dugme \"Autorizuj pristup putem API-ja\" za to." @@ -17579,6 +17769,10 @@ msgstr "Pomak X" msgid "Offset Y" msgstr "Pomak Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Pomak mora biti pozitivan ceo broj" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Stara lozinka" @@ -17650,7 +17844,7 @@ msgstr "Na ili nakon" msgid "On or Before" msgstr "Na ili pre" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "Na {0}, {1} je napisao/la:" @@ -17726,7 +17920,7 @@ msgstr "Isključivo administrator može da uređuje" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Isključivo administrator može sačuvati standardni izveštaj. Molimo Vas da preimenujete i sačuvate." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Isključivo administrator može da koristi alat za snimanje" @@ -17752,7 +17946,7 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros msgid "Only allowed to export customizations in developer mode" msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Isključivo nacrti dokumenata mogu biti odbačeni" @@ -17783,7 +17977,7 @@ msgstr "Mogu se uređivati samo izveštaji kreirani pomoću uređivača izvešta msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Samo standardni DocType-ovi mogu biti prilagođeni putem polja prilagodi obrazac." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Isključivo administrator može obrisati standardni DocType." @@ -17791,7 +17985,7 @@ msgstr "Isključivo administrator može obrisati standardni DocType." msgid "Only the assignee can complete this to-do." msgstr "Isključivo dodeljeni korisnik može završiti ovaj zadatak." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Dozvoljeno je isključivo {0} izveštaja poslatih putem imejla po korisniku." @@ -17879,7 +18073,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorene stavke" @@ -17924,7 +18118,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od sledećih {0}" @@ -17934,7 +18128,7 @@ msgstr "Operator mora biti jedan od sledećih {0}" msgid "Optimize" msgstr "Optimizuj" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Optimizacija slike..." @@ -18023,6 +18217,10 @@ msgstr "Narandžasta" msgid "Order" msgstr "Redosled" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "Sortiraj po mora biti tekst" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18035,7 +18233,7 @@ msgstr "Istorija organizacije" msgid "Org History Heading" msgstr "Naslov istorije organizacije" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orijentacija" @@ -18117,9 +18315,11 @@ msgstr "Vlasnik" msgid "PATCH" msgstr "PATCH" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18414,11 +18614,11 @@ msgstr "Matična vrsta dokumenta je neophodna za kreiranje grafikona na početno msgid "Parent is the name of the document to which the data will get added to." msgstr "Matični označava naziv dokumenta u koji će se podaci dodati." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "Grupisanje matično-ka-zavisnom ili zavisno-ka-matičnom nije dozvoljeno." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Grupisanje matičnog sa zavisnim ili dva različita zavisna entiteta nije dozvoljeno." -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Matično polje nije navedeno u {0}: {1}" @@ -18478,11 +18678,11 @@ msgstr "Pasivan" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Imejl sa lozinkom poslat" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Resetovanje lozinke" @@ -18516,11 +18716,11 @@ msgstr "Lozinka nije uneta u imejl nalogu" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Lozinka postavljena" @@ -18528,11 +18728,11 @@ msgstr "Lozinka postavljena" msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke premašuje dozvoljenu granicu" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Veličine lozinke premašuje dozvoljenu granicu." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" @@ -18540,10 +18740,6 @@ msgstr "Lozinke se ne podudaraju" msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Prošli datumi nisu dozvoljeni za zakazivanje." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Nalepi" @@ -18689,7 +18885,7 @@ msgstr "Trajno podneti {0}?" msgid "Permanently delete {0}?" msgstr "Trajno obrisati {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Greška u dozvolama" @@ -18841,11 +19037,11 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon br." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Broj telefona {0} postavljen u polju {1} nije validan." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18903,7 +19099,7 @@ msgstr "Molimo Vas da duplirate ovu temu veb-sajta da biste je prilagodili." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Molimo Vas da instalirate Idap3 biblioteku putem pip-a da biste koristili Idap funkcionalnost." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Molimo Vas da postavite grafikon" @@ -18919,7 +19115,7 @@ msgstr "Molimo Vas da dodate naslov u Vaš imejl" msgid "Please add a valid comment." msgstr "Molimo Vas da dodate validan komentar." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju" @@ -18951,7 +19147,7 @@ msgstr "Molimo Vas da proverite vrednosti filtera postavljene za grafikon za kon msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Molimo Vas da proverite vrednosti polja \"Preuzmi iz\" postavljenih za polje {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Molimo Vas da proverite svoj imejl za verifikaciju" @@ -19016,7 +19212,7 @@ msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem dru #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Molimo Vas da omogućite iskačuće prozore" @@ -19033,23 +19229,23 @@ msgstr "Molimo Vas da omogućite {} pre nego što nastavite." msgid "Please ensure that your profile has an email address" msgstr "Molimo Vas da se uverite da Vaš profil sadrži imejl adresu" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Molimo Vas da uneste URL token za pristup" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Molimo Vas da unesete URL autorizaciju" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Molimo Vas da unesete osnovni URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Molimo Vas da unesete klijentski ID pre nego što je prijavljivanje putem društvenih mreža omogućeno" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Molimo Vas da uneste tajnu klijenta pre nego što je prijavljivanje putem društvenih mreža omogućeno" @@ -19057,7 +19253,7 @@ msgstr "Molimo Vas da uneste tajnu klijenta pre nego što je prijavljivanje pute msgid "Please enter OpenID Configuration URL" msgstr "Molimo Vas da unesete URL za OpenID konfiguraciju" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Molimo Vas da unesete URL za preusmeravanje" @@ -19069,7 +19265,7 @@ msgstr "Molimo Vas da unesete važeću imejl adresu." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Molimo Vas da unesete i svoju imejl adresu i poruku kako bismo mogli da Vam se javimo! Hvala Vam!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Molimo Vas da unesete lozinku" @@ -19082,11 +19278,11 @@ msgstr "Molimo Vas da unesete lozinku za: {0}" msgid "Please enter valid mobile nos" msgstr "Molimo Vas da unesete važeće brojeve mobilnih telefona" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Molimo Vas da unesete svoju novu lozinku." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Molimo Vas da unesete svoju staru lozinku." @@ -19102,7 +19298,7 @@ msgstr "Molimo Vas da se prijavite kako biste ostavili komentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Molimo Vas da se uverite da dokumenti referentne komunikacije nisu kružno povezani." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Molimo Vas da osvežite kako biste dobili najnoviji dokument." @@ -19114,10 +19310,6 @@ msgstr "Molimo Vas da uklonite mapiranje štampača u podešavanjima štampe i p msgid "Please save before attaching." msgstr "Molimo Vas da sačuvate pre nego što priložite." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Molimo Vas da sačuvate bilten pre slanja" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Molimo Vas da sačuvate dokument pre dodeljivanja" @@ -19146,11 +19338,11 @@ msgstr "Molimo Vas da prvo izaberete vrstu entiteta" msgid "Please select Minimum Password Score" msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Molimo Vas da izaberete X i Y polja" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Molimo Vas da izaberete šifru države za polje {1}." @@ -19166,7 +19358,7 @@ msgstr "Molim Vas da izaberete fajl ili URL" msgid "Please select a valid csv file with data" msgstr "Molimo Vas da izaberete važeći csv fajl sa podacima" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Molimo Vas da izaberete važeći filter da datum" @@ -19174,7 +19366,7 @@ msgstr "Molimo Vas da izaberete važeći filter da datum" msgid "Please select applicable Doctypes" msgstr "Molimo Vas da izaberete primenjive DocType-ove" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje" @@ -19204,11 +19396,11 @@ msgstr "Molimo Vas da postavite imejl adresu" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Molimo Vas da postavite mapiranje štampača za ovaj format štampe u podešavanjima štampe" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Molimo Vas da postavite filtere" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Molimo Vas da postavite vrednosti filtera u tabeli filter izveštaja." @@ -19232,7 +19424,7 @@ msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autenti msgid "Please setup a message first" msgstr "Molimo Vas da prvo postavite poruku" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Podešavanja > Imejl nalog" @@ -19244,7 +19436,7 @@ msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Alati > Ime msgid "Please specify" msgstr "Molimo Vas da navedete" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Molimo Vas da navedete važeći matični DocType za {0}" @@ -19281,14 +19473,19 @@ msgstr "Molimo Vas da ažurirate {} pre nego što nastavite." msgid "Please use a valid LDAP search filter" msgstr "Molimo Vas da koristite važeći LDAP filter za pretragu" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Molimo Vas da verifikujete svoju imejl adresu" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Molimo Vas da koristite sledeće linkove da preuzmete rezervnu kopiju fajla." #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Molimo Vas da posetite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key za više informacija." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "URI politike" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19334,7 +19531,7 @@ msgstr "Stavka menija portala" msgid "Portal Settings" msgstr "Podešavanje portala" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Portret" @@ -19378,6 +19575,10 @@ msgstr "Objave korisnika {0}" msgid "Posts filed under {0}" msgstr "Objave u kategoriji {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19437,15 +19638,15 @@ msgstr "Analitika pripremljenih izveštaja" msgid "Prepared Report User" msgstr "Korisnik pripremljenog izveštaja" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Prikaz pripremljenog izveštaja nije uspeo" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Priprema izveštaja" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Dodaj šablon na početak imejl poruke" @@ -19466,8 +19667,6 @@ msgstr "Pritisnite Enter da sačuvate" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19512,7 +19711,7 @@ msgstr "Pregled na {0}" msgid "Preview type" msgstr "Vrsta pregleda" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Pregled:" @@ -19583,16 +19782,16 @@ msgstr "Primarni ključ za doctype {0} ne može biti promenjen jer sadrži posto #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Štampa" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Štampa" @@ -19647,6 +19846,11 @@ msgstr "Greška u formatu za štampu" msgid "Print Format Field Template" msgstr "Šablon polja formata za štampu" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Format štampe za" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19657,6 +19861,10 @@ msgstr "Pomoć za format štampe" msgid "Print Format Type" msgstr "Vrsta formata štampe" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "Format štampe nije pronađen" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Format štampe {0} je onemogućen" @@ -19688,11 +19896,11 @@ msgstr "Sakrij štampu" msgid "Print Hide If No Value" msgstr "Sakrij štampu ukoliko nema vrednosti" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Jezik štampe" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Štampa je poslata na štampač!" @@ -19710,7 +19918,7 @@ msgstr "Server za štampu" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Podešavanje štampe" @@ -19820,6 +20028,10 @@ msgstr "Privatno" msgid "Private Files (MB)" msgstr "Privatni fajlovi (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Rezervna kopija privatnih fajlova:" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19830,7 +20042,7 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Ipak nastavi" @@ -19855,7 +20067,7 @@ msgstr "Profil" msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projekat" @@ -19942,6 +20154,10 @@ msgstr "Javni" msgid "Public Files (MB)" msgstr "Javni fajlovi (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Rezervna kopija javnih fajlova:" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19950,14 +20166,7 @@ msgstr "Javni fajlovi (MB)" msgid "Publish" msgstr "Objavi" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Objavi kao veb-stranicu" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19965,7 +20174,6 @@ msgstr "Objavi kao veb-stranicu" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20089,7 +20297,7 @@ msgstr "QR kod" msgid "QR Code for Login Verification" msgstr "QR kod za verifikaciju prijavljivanja" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ Tray neuspešno: " @@ -20186,7 +20394,6 @@ msgstr "Red(ovi)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "U redu" @@ -20209,19 +20416,11 @@ msgstr "U redu za podnošenje. Možete pratiti napredak preko {0}." msgid "Queued for backup. You will receive an email with the download link" msgstr "U redu za rezervnu kopiju. Dobićete imejl sa linkom za preuzimanje" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "{0} imejlova u redu" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Redovi" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "Imejlovi se stavljaju u red..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "{0} se stavlja u red za podnošenje" @@ -20311,7 +20510,7 @@ msgstr "Ocena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Neobrađene komande" @@ -20346,7 +20545,7 @@ msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Re: {0}" @@ -20422,7 +20621,7 @@ msgstr "Pročitao primalac na" msgid "Read mode" msgstr "Režim čitanja" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Pročitajte dokumentaciju za više informacija" @@ -20442,7 +20641,7 @@ msgstr "U realnom vremenu (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Obnovi" @@ -20588,12 +20787,12 @@ msgstr "Preusmeravanja" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis cache server nije pokrenut. Molimo Vas da kontaktirate administrator / tehničku podršku" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Vrati" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Vrati poslednju radnju" @@ -20807,11 +21006,11 @@ msgid "Referrer" msgstr "Izvor pristupa" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20850,7 +21049,7 @@ msgstr "Osvežavanje" msgid "Refreshing..." msgstr "Osvežavanje..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Registrovano, ali onemogućeno" @@ -20899,7 +21098,7 @@ msgstr "Ponovo povezano" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Ponovno učitavanje" @@ -20930,7 +21129,7 @@ msgstr "Zapamti poslednju izabranu vrednost" msgid "Remind At" msgstr "Podsetnik u" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Podseti me" @@ -21012,7 +21211,7 @@ msgstr "Uklonjeno" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21040,7 +21239,7 @@ msgstr "Prikazivanja oznaka sa leve strane i vrednosti sa desne strane u ovom od msgid "Reopen" msgstr "Ponovo otvori" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Ponovi" @@ -21140,6 +21339,8 @@ msgstr "Odgovori svima" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21155,8 +21356,11 @@ msgstr "Odgovori svima" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Izveštaj" @@ -21225,7 +21429,7 @@ msgstr "Menadžer izveštavanja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Naziv izveštaja" @@ -21277,11 +21481,11 @@ msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite na msgid "Report has no numeric fields, please change the Report Name" msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izveštaja" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Dostignuto je ograničenje izveštaja" @@ -21289,7 +21493,7 @@ msgstr "Dostignuto je ograničenje izveštaja" msgid "Report timed out." msgstr "Izveštaj je istekao." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Izveštaj je uspešno ažuriran" @@ -21297,7 +21501,7 @@ msgstr "Izveštaj je uspešno ažuriran" msgid "Report was not saved (there were errors)" msgstr "Izveštaj nije sačuvan (dogodile su se greške)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Izveštaj sa više od 10 kolona izgleda bolje u pejzažnom režimu." @@ -21310,7 +21514,7 @@ msgstr "Izveštaj {0}" msgid "Report {0} deleted" msgstr "Izveštaj {0} je obrisan" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Izveštaj {0} je onemogućen" @@ -21333,7 +21537,7 @@ msgstr "Izveštaji" msgid "Reports & Masters" msgstr "Izveštaji i master podaci" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Izveštaji su već u redu" @@ -21518,6 +21722,31 @@ msgstr "Vrati na podrazumevana podešavanja" msgid "Reset your password" msgstr "Resetuj svoju lozinku" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Resurs" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Dokumentacija o resursu" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Naziv resursa" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "URI politike resursa" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "URI uslova korišćenja resursa" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21643,10 +21872,8 @@ msgstr "Opozovi" msgid "Revoked" msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21749,7 +21976,7 @@ msgstr "Dozvole uloga" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" @@ -21783,7 +22010,7 @@ msgstr "Replikacija uloga" msgid "Role and Level" msgstr "Uloga i nivo" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Uloga je postavljena prema vrsti korisnika {0}" @@ -21857,7 +22084,6 @@ msgstr "Metod zaokruživanja" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21871,7 +22097,6 @@ msgstr "Metod zaokruživanja" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21898,7 +22123,7 @@ msgstr "Preusmeravanje putanje" msgid "Route: Example \"/app\"" msgstr "Putanja: Primer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Red" @@ -21989,7 +22214,7 @@ msgstr "Pravilo" msgid "Rule Conditions" msgstr "Uslovi pravila" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Pravilo za ovu vrstu doctype, uloga, nivo dozvole i ukoliko vlasnik već postoji." @@ -22178,12 +22403,12 @@ msgstr "Subota" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22210,7 +22435,7 @@ msgstr "Sačuvaj kao" msgid "Save Customizations" msgstr "Sačuvaj prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Sačuvaj izveštaj" @@ -22229,7 +22454,7 @@ msgstr "Sačuvaj dokument." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22274,32 +22499,17 @@ msgstr "Skeniraj QR kod i unesi prikazani kod." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Raspored" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Zakazati slanje biltena" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Zakazati slanje u" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Zakazati slanje" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Zakazati slanje za kasnije" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Zakazano" @@ -22333,17 +22543,6 @@ msgstr "Vrsta zakazanog zadatka" msgid "Scheduled Jobs Logs" msgstr "Evidencije zakazanih zadataka" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Zakazano slanje" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Zakazano za slanje" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Zakazano izvršavanje za skriptu {0} je ažurirano" @@ -22412,6 +22611,11 @@ msgstr "Opseg" msgid "Scopes" msgstr "Opsezi" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Podržani opseg" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22555,6 +22759,11 @@ msgstr "Pretraga..." msgid "Searching ..." msgstr "Pretraživanje ..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekundi" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22602,7 +22811,7 @@ msgstr "Podešavanja bezbednosti" msgid "See all Activity" msgstr "Pogledaj sve aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Pogledaj sve prethodne izveštaje." @@ -22670,8 +22879,8 @@ msgstr "Izaberi" msgid "Select All" msgstr "Izaberi sve" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22687,7 +22896,7 @@ msgid "Select Column" msgstr "Izaberi kolonu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Izaberi kolone" @@ -22737,7 +22946,7 @@ msgstr "Izaberite vrste dokumenata kako biste postavili koje korisničke dozvole #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Izaberi polje" @@ -22808,7 +23017,7 @@ msgid "Select Page" msgstr "Izaberi stranicu" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Izaberi format štampe" @@ -22900,13 +23109,13 @@ msgstr "Izaberi bar jedan zapis za štampanje" msgid "Select atleast 2 actions" msgstr "Izaberi bar 2 radnje" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Izaberi stavku iz liste" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Izaberi više stavki iz liste" @@ -22944,9 +23153,7 @@ msgstr "Izaberite {0}" msgid "Self approval is not allowed" msgstr "Samopotvrda nije dozvoljena" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Pošalji" @@ -22977,11 +23184,6 @@ msgstr "Pošalji obaveštenje na" msgid "Send Email Alert" msgstr "Pošalji imejl upozorenje" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "Pošalji imejl u" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23029,7 +23231,7 @@ msgstr "Pošalji sada" msgid "Send Print as PDF" msgstr "Pošalji kao PDF za štampu" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Pošalji potvrdu o čitanju" @@ -23039,38 +23241,16 @@ msgstr "Pošalji potvrdu o čitanju" msgid "Send System Notification" msgstr "Pošalji sistemsko obaveštenje" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Pošalji testni imejl" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Pošalji svim zaduženima" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Pošalji link za otkazivanje pretplate" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Pošalji link za prikaz na vebu" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Pošalji imejl dobrodošlice" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Pošalji testni imejl" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Pošalji ponovo" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23114,14 +23294,10 @@ msgstr "Pošalji upite na ovu imejl adresu" msgid "Send login link" msgstr "Pošalji link za prijavu" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Pošalji mi kopiju" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Pošalji sada" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23137,19 +23313,15 @@ msgstr "Pošalji poruku za otkazivanje pretplate u imejlu" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Pošiljalac" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Imejl pošiljaoca" @@ -23166,9 +23338,7 @@ msgid "Sender Field should have Email in options" msgstr "Polje pošiljaoca treba da ima imejl među opcijama" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Naziv pošiljaoca" @@ -23188,18 +23358,9 @@ msgstr "Sendgrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Slanje" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Slanje imejlova" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Slanje u toku..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23207,8 +23368,6 @@ msgstr "Slanje u toku..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Poslato" @@ -23278,7 +23437,7 @@ msgstr "Serija {0} je već iskorišćena u {1}" msgid "Server Action" msgstr "Serverska radnja" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverska greška" @@ -23297,7 +23456,7 @@ msgstr "IP adresa servera" msgid "Server Script" msgstr "Serverska skripta" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfiguraciji komandne linije." @@ -23336,15 +23495,15 @@ msgstr "Podešavanje podrazumevane sesije" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Podrazumevane vrednosti sesije" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Podrazumevane vrednosti sesije su sačuvane" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Sesija je istekla" @@ -23376,7 +23535,7 @@ msgstr "Postavi" msgid "Set Banner from Image" msgstr "Postavi baner iz slike" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Postavi grafikon" @@ -23402,7 +23561,7 @@ msgstr "Postavi filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Postavi nivo" @@ -23598,7 +23757,7 @@ msgstr "Postavljanje sistema" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23644,7 +23803,7 @@ msgstr "Postavke > Korisnik" msgid "Setup > User Permissions" msgstr "Postavke > Korisničke dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Postavke automatskog imejla" @@ -23733,6 +23892,8 @@ msgstr "Prečice" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Prikaži" @@ -23759,6 +23920,12 @@ msgstr "Prikaži apsolutne vrednosti" msgid "Show All" msgstr "Prikaži sve" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Prikaži metapodatke autorizacionog servera" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Prikaži kalendar" @@ -23839,7 +24006,7 @@ msgstr "Prikaži izbor jezika" msgid "Show Line Breaks after Sections" msgstr "Prikaži prelom linije nakon odeljka" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Prikaži linkove" @@ -23876,6 +24043,12 @@ msgstr "Prikaži pregled iskačućeg prozora" msgid "Show Processlist" msgstr "Prikaži listu procesa" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Prikaži metapodatke zaštićenog resursa" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Prikaži povezane greške" @@ -23902,8 +24075,14 @@ msgstr "Prikaži naslove odeljaka" msgid "Show Sidebar" msgstr "Prikaži bočnu traku" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Prikaži ključ za prijavljivanje putem društvenih mreža kao autorizacioni server" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Prikaži oznake" @@ -23932,6 +24111,12 @@ msgstr "Prikaži obilazak" msgid "Show Traceback" msgstr "Prikaži sled greške" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Prikaži vrednosti iznad grafikona" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Prikaži upozorenja" @@ -23985,6 +24170,12 @@ msgstr "Prikaži ceo obrazac umesto brzog unosa u modalnom prozoru" msgid "Show in Module Section" msgstr "Prikaži u odeljku modula" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Prikaži u metapodacima resursa" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24065,12 +24256,12 @@ msgstr "Bočna traka i komentari" msgid "Sign Up and Confirmation" msgstr "Registracija i potvrda" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Registracija je onemogućena" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Registruj se" @@ -24156,8 +24347,10 @@ msgstr "Preskoči" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Preskoči autorizaciju" @@ -24321,6 +24514,16 @@ msgstr "SocketIO transportni režim" msgid "Soft-Bounced" msgstr "Privremeno neuspešno" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "ID softvera" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Verzija softvera" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Neke kolone mogu biti isečene prilikom štampanja u PDF formatu. Pokušajte da broj kolona bude manji od 10." @@ -24388,7 +24591,7 @@ msgstr "Polje za sortiranje {0} mora biti važeći naziv polja" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24478,7 +24681,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standardno" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType ne može biti obrisan." @@ -24494,7 +24697,7 @@ msgstr "Standardno nije postavljeno" msgid "Standard Permissions" msgstr "Standardne dozvole" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Standardni format štampe ne može biti ažuriran" @@ -24681,7 +24884,6 @@ msgstr "Vremenski interval statistike" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24706,7 +24908,6 @@ msgstr "Vremenski interval statistike" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24717,7 +24918,7 @@ msgstr "Vremenski interval statistike" msgid "Status" msgstr "Status" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status ažuriran" @@ -24847,8 +25048,6 @@ msgstr "Poddomen" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24857,10 +25056,9 @@ msgstr "Poddomen" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Naslov" @@ -24899,7 +25097,7 @@ msgstr "Red čekanja za podnošenje" msgid "Submit" msgstr "Podnesi" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Podnesi" @@ -24957,7 +25155,7 @@ msgstr "Podnesite ovaj dokument da biste završili ovaj korak." msgid "Submit this document to confirm" msgstr "Podnesite ovaj dokument da biste potvrdili" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Podnesi {0} dokumenata?" @@ -25051,7 +25249,7 @@ msgstr "Poruka o uspehu" msgid "Success title" msgstr "Naslov uspeha" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Uspešno! Spremni ste za nastavak 👍" @@ -25106,7 +25304,7 @@ msgstr "Predloži optimizacije" msgid "Suggested Indexes" msgstr "Predloži indekse" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Predloženo korisničko ime: {0}" @@ -25119,7 +25317,7 @@ msgstr "Predloženo korisničko ime: {0}" msgid "Sum" msgstr "Zbir" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Zbir za {0}" @@ -25228,7 +25426,7 @@ msgstr "Sinhronizovanje" msgid "Syncing {0} of {1}" msgstr "Sinhronizovanje {0} od {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Greška u sintaksi" @@ -25406,6 +25604,7 @@ msgstr "Evidencije sistema" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25465,6 +25664,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "URI uslova korišćenja" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25535,7 +25739,7 @@ msgstr "Skraćena tabela" msgid "Table updated" msgstr "Tabela ažurirana" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabela {0} ne može biti prazna" @@ -25643,7 +25847,7 @@ msgstr "Upozorenja u šablonu" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Privremeno onemogućeno" @@ -25662,10 +25866,6 @@ msgstr "ID testnog zadatka" msgid "Test Spanish" msgstr "Testiraj španski" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Testni imejl poslat na {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test_Datoteka" @@ -25733,10 +25933,6 @@ msgstr "Hvala Vam na imejlu" msgid "Thank you for your feedback!" msgstr "Hvala Vam na povratnim informacijama!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Hvala Vam na interesovanju za prijavu na naša obaveštenja" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Hvala Vam na poruci" @@ -25805,7 +26001,7 @@ msgstr "API ključ za internet pretraživač dobijen putem Google Cloud konzole, "\"APIs & Services\" > \"Credentials\"\n" "" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Promene su vraćene na prethodno stanje." @@ -25863,11 +26059,11 @@ msgstr "Sledeći dani za zadatak su ponovljeni: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "Sledeća skripta zaglavlja će dodati trenutni datum u element klase 'header-content' u 'HTML zaglavlje'" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Sledeće vrednosti nisu važeće: {0}. Dozvoljene vrednosti su: {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Sledeće vrednosti ne postoje za: {0}: {1}" @@ -25906,7 +26102,7 @@ msgstr "Sledeći obilazak će početi od mesta na kojem je korisnik stao." msgid "The number of seconds until the request expires" msgstr "Broj sekundi do isteka zahteva" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Lozinka za Vaš nalog je istekla." @@ -25923,15 +26119,15 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku " -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Link za resetovanje lozinke je istekao" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -25943,7 +26139,7 @@ msgstr "Uloga {0} treba da bude prilagođena uloga." msgid "The selected document {0} is not a {1}." msgstr "Izabrani dokument {0} nije {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem se ažurira. Molimo Vas da osvežite stranicu za nekoliko trenutaka." @@ -26004,7 +26200,7 @@ msgstr "Nemate predstojećih događaja." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Nema {0} za ovaj {1}, zašto ne biste započeli jedan!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26033,7 +26229,7 @@ msgstr "Trenutno nema ničeg novog da se prikaže." msgid "There is some problem with the file url: {0}" msgstr "Došlo je do problema sa URL adresom fajla: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26057,7 +26253,7 @@ msgstr "Došlo je do grešaka" msgid "There were errors while creating the document. Please try again." msgstr "Došlo je do grešaka prilikom kreiranja dokumenta. Molimo Vas da pokušate ponovo." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Došlo je do greške prilikom slanja imejla. Molimo Vas da pokušate ponovo." @@ -26071,6 +26267,12 @@ msgstr "Došlo je do grešaka prilikom postavljanja naziva, molimo Vas da kontak msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Ove najave će se pojaviti unutar obaveštenja koje se može zatvoriti, ispod navigacione trake." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Ova polja se koriste za pružanje metapodataka resursnog servera klijentima koji šalju upite na \"well known protected resource\" endpoint." + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26096,7 +26298,7 @@ msgstr "Autentifikacija putem eksternih aplikacija" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ova valuta je onemogućena. Omogućite je da biste je koristili u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Ova Kanban tabla će biti privatna" @@ -26120,7 +26322,7 @@ msgstr "Ove godine" msgid "This action is irreversible. Do you wish to continue?" msgstr "Ova radnja je nepovratna. Da li želite da nastavite?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Ova radnja je dozvoljena samo za {}" @@ -26147,7 +26349,7 @@ msgstr "Ovaj doctype nema nepovezanih polja koja treba ukloniti" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Ovaj doctype ima neizvršene migracije, pokrenite 'bench migrate' pre izmene kako biste izbegli gubitak izmena." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Ovaj dokument se ne može trenutno obrisati jer ga drugi korisnik uređuje. Pokušajte ponovo kasnije." @@ -26163,7 +26365,7 @@ msgstr "Ovaj dokument ima nesačuvane izmene koje možda neće biti prikazane u msgid "This document is already amended, you cannot ammend it again" msgstr "Ovaj dokument je već izmenjen i ne može ponovo biti izmenjen" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Ovaj dokument je trenutno zaključan i čeka na izvršenje. Pokušajte ponovo kasnije." @@ -26228,7 +26430,7 @@ msgstr "Ovaj provajder geolokacije još uvek nije podržan." msgid "This goes above the slideshow." msgstr "Ovo se prikazuje iznad prezentacije." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ovo je izveštaj koji se generiše u pozadini. Postavite odgovarajuće filtere i zatim generišite novi izveštaj." @@ -26284,15 +26486,7 @@ msgstr "Ovo može biti odštampano na više stranica" msgid "This month" msgstr "Ovaj mesec" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Ovaj bilten je zakazan za slanje na {0}" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Ovaj bilten je zakazan za slanje za kasniji datum. Da li ste sigurni da želite da ga pošaljete sada?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}." @@ -26300,7 +26494,7 @@ msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pr msgid "This report was generated on {0}" msgstr "Ovaj izveštaj je generisan na {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Ovaj izveštaj je generisan {0}." @@ -26366,7 +26560,7 @@ msgstr "Ovo će resetovati obilazak i prikazati je svim korisnicima. Da li ste s msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Ovo će trenutno prekinuti zadatak i može biti rizično, da li ste sigurni? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Zagušeno" @@ -26404,7 +26598,6 @@ msgstr "Četvrtak" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Vreme" @@ -26630,10 +26823,8 @@ msgid "Title of the page" msgstr "Naslov stranice" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Za" @@ -26687,7 +26878,7 @@ msgstr "Da biste dodali dinamičke vrednosti iz dokumenta, koristite jinja oznak "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Da biste omogućili veće ograničenje za ažuriranje izveštaja, podesite ih u podešavanju sistema." @@ -26723,7 +26914,7 @@ msgstr "Da biste izvršili izvoz ovog koraka kao JSON, povežite ga u dokumentu msgid "To generate password click {0}" msgstr "Za generisanje lozinke kliknite {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Za ažurirani izveštaj kliknite na {0}." @@ -26798,7 +26989,7 @@ msgstr "Prebaci u prikaz mreže" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" @@ -26819,6 +27010,12 @@ msgstr "Token" msgid "Token Cache" msgstr "Keš tokena" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Metod verifikacije za endpoint tokena" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26846,7 +27043,7 @@ msgstr "Previše dokumenata" msgid "Too Many Requests" msgstr "Previše zahteva" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Previše promena baze podatka u jednoj radnji." @@ -26854,7 +27051,7 @@ msgstr "Previše promena baze podatka u jednoj radnji." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše zadataka u pozadini u redu čekanja ({0}). Molimo Vas da pokušate ponovo kasnije." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Previše korisnika se registrovalo u poslednje vreme, stoga je registracija privremeno onemogućena. Pokušajte ponovo za sat vremena" @@ -26916,9 +27113,9 @@ msgstr "Gore desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Ukupno" @@ -26944,16 +27141,8 @@ msgstr "Ukupno slika" msgid "Total Outgoing Emails" msgstr "Ukupno izlaznih imejlova" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Ukupno primaoca" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Ukupno pretplatnika" @@ -26962,11 +27151,6 @@ msgstr "Ukupno pretplatnika" msgid "Total Users" msgstr "Ukupno korisnika" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Ukupno pregleda" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27054,7 +27238,7 @@ msgstr "Prati ključne tačke dokumenta" msgid "Tracking" msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "URL za praćenje je generisan i kopiran u međuspremnik" @@ -27101,7 +27285,7 @@ msgstr "Tranizicija" msgid "Translatable" msgstr "Moguće prevođenje" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Prevedi podatke" @@ -27134,6 +27318,11 @@ msgstr "Prevod" msgid "Translations" msgstr "Prevodi" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Prevodilac" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27356,33 +27545,65 @@ msgstr "URL za dokumentaciju ili pomoć" msgid "URL must start with http:// or https://" msgstr "URL mora početi sa http:// ili https://" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL stranicе sa ljudski čitljivim informacijama koje mogu biti neophodne programerima." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL veb-stranice koja pruža informacije o klijentu." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL stranicе sa ljudski čitljivim informacijama o uslovima korišćenja zaštićenog resursa." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL stranicе sa ljudski čitljivim informacijama o uslovima pod kojima klijent može da koristi podatke." + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "URL stranice" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL koji vodi ka ljudski čitljivim dokumentom o pravilima korišćenja za klijenta. Treba da bude prikazan krajnjem korisniku pre autorizacije." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL koji vodi ka ljudski čitljivim dokumentom o uslovima korišćenja za klijenta. Treba da bude prikazan krajnjem korisniku pre autorizacije." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL logotipa klijenta." + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "URL ka kojem vodi klik na prezentaciju slika" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM kampanja" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM medijum" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM izvor" @@ -27415,7 +27636,7 @@ msgstr "Nije moguće otvoriti priloženi fajl. Da li ste ga izvezli kao CSV?" msgid "Unable to read file format for {0}" msgstr "Nije moguće pročitati format fajla za {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Nije moguće poslati imejl zbog nedostajućeg imejl naloga. Molimo Vas da postavite podrazumevani nalog u Podešavanjima > Imejl nalog" @@ -27432,7 +27653,7 @@ msgstr "Nije moguće upisati format fajla za {0}" msgid "Unassign Condition" msgstr "Ukloni dodeljivanje uslova" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Neuhvaćeni izuzetak" @@ -27440,16 +27661,20 @@ msgstr "Neuhvaćeni izuzetak" msgid "Unchanged" msgstr "Neizmenjeno" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Poništi" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Poništi poslednju radnju" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Navodnici nisu pravilno izbegnuti u tekstualnom izrazu: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Zaustavi praćenje" @@ -27472,6 +27697,14 @@ msgstr "Neobrađeni imejlovi" msgid "Unique" msgstr "Jedinstveno" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "Jedinstveni ID koji dodeljuje programer klijenata, a koristi se za identifikaciju klijentskog softvera koji će se dinamički registrovati.
\n" +"Treba da ostane isti kroz više verzija ili ažuriranja softvera." + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Nepoznat" @@ -27480,7 +27713,7 @@ msgstr "Nepoznat" msgid "Unknown Column: {0}" msgstr "Nepoznata kolona: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Nepoznat metod zaokruživanja: {}" @@ -27527,7 +27760,7 @@ msgstr "Poništi odabir svega" msgid "Unshared" msgstr "Nije podeljeno" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Otkazivanje pretplate" @@ -27547,10 +27780,15 @@ msgstr "Parametri otkazivanja pretplate" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Otkazana pretplata" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Nepodržana funkcija ili neispravan naziv polja: {0}" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Kolona bez naziva" @@ -27673,7 +27911,7 @@ msgstr "Ažurirano na novu verziju 🎉" msgid "Updated successfully" msgstr "Uspešno ažurirano" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Ažuriranje" @@ -27951,7 +28189,7 @@ msgstr "Korisnik ne može da kreira" msgid "User Cannot Search" msgstr "Korisnik ne može da pretražuje" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Korisnik promenjen" @@ -28057,12 +28295,12 @@ msgstr "Korisnička dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Korisničke dozvole" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke dozvole" @@ -28163,15 +28401,15 @@ msgstr "Korisnik sa imejl adresom {0} ne postoji" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Korisnik sa imejlom: {0} ne postoji u sistemu. Molimo Vas da kontaktirate 'Sistem administratora' da kreira korisnika za Vas." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Korisnik {0} ne može biti obrisan" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Korisnik {0} ne može biti onemogućen" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Korisnik {0} ne može biti preimenovan" @@ -28192,7 +28430,7 @@ msgstr "Korisnik {0} nema dozvolu da kreira radni prostor." msgid "User {0} has requested for data deletion" msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} se predstavlja kao {1}" @@ -28221,7 +28459,7 @@ msgstr "URI sa podacima o korisniku" msgid "Username" msgstr "Korisničko ime" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Korisničko ime {0} već postoji" @@ -28361,15 +28599,15 @@ msgstr "Vrednost promenjena" msgid "Value To Be Set" msgstr "Vrednost koju treba postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Vrednost se ne može promeniti za {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Vrednost ne može biti negativna za" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Vrednost ne može biti negativna za {0}: {1}" @@ -28395,6 +28633,12 @@ msgstr "Vrednost iz ovog polja biće postavljena kao rok u odeljku za uraditi" msgid "Value must be one of {0}" msgstr "Vrednost mora biti jedna od {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Vrednost \"None\" ukazuje na javnog klijenta. U tom slučaju tajna klijenta nije pružena klijentu, dok se za razmenu tokena koristi PKCE mehanizam." + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28408,7 +28652,7 @@ msgstr "Vrednost je prevelika" msgid "Value {0} missing for {1}" msgstr "Vrednost {0} nedostaje za {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Vrednost {0} mora biti u važećem formatu trajanja: d h m s" @@ -28488,7 +28732,7 @@ msgstr "Prikaz" msgid "View All" msgstr "Prikaži sve" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Prikaži istoriju izmena" @@ -28732,7 +28976,7 @@ msgstr "Veb-stranica" msgid "Web Page Block" msgstr "Blok veb-stranice" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "URL veb-stranice" @@ -28775,6 +29019,7 @@ msgstr "Prikaz na vebu" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28833,7 +29078,6 @@ msgstr "URL webhook-a" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28841,9 +29085,7 @@ msgid "Website" msgstr "Veb-sajt" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Analitika veb-sajta" @@ -29043,11 +29285,11 @@ msgstr "URL za dobrodošlicu" msgid "Welcome Workspace" msgstr "Dobro došli u radni prostor" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Imejl dobrodošlice je poslat" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Dobro došli u {0}" @@ -29133,7 +29375,7 @@ msgstr "Biće prikazano samo ukoliko su naslovi odeljaka omogućeni" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Planirani zadaci će se izvršavati samo jednom dnevno za neaktivne sajtove. Postavite na 0 da biste izbegli automatsko isključivanje planera." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Sa zaglavljem" @@ -29274,12 +29516,12 @@ msgstr "Radni tok je uspešno ažuriran" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Radni prostor" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Radni prostor {0} ne postoji" @@ -29401,7 +29643,7 @@ msgstr "Polje Y ose" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y polje" @@ -29462,7 +29704,7 @@ msgstr "Žuta" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29502,11 +29744,11 @@ msgstr "Prijavljeni ste kao drugi korisnik." msgid "You are not allowed to access this resource" msgstr "Nemate dozvolu da pristupite ovom resursu" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u polju {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u redu {3}, polje {4}" @@ -29529,7 +29771,7 @@ msgstr "Nemate dozvolu da uređujete izveštaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Nemate dozvolu da izvezete doctype {}" @@ -29537,11 +29779,11 @@ msgstr "Nemate dozvolu da izvezete doctype {}" msgid "You are not allowed to print this report" msgstr "Nemate dozvolu da odštampate ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca" @@ -29557,7 +29799,7 @@ msgstr "Nije Vam dozvoljeno da pristupite ovoj stranici bez prijavljivanja." msgid "You are not permitted to access this page." msgstr "Nemate dozvolu da pristupite ovoj stranici." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup" @@ -29565,7 +29807,7 @@ msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sada pratite ovaj dokument. Dobijaćete dnevna obaveštenja putem imejla. Možete ovo promeniti u podešavanjima korisnika." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Dozvoljeno Vam je da ažurirate redosled, nemojte uklanjati ili dodavati aplikacije." @@ -29610,7 +29852,7 @@ msgstr "Možete promeniti politiku čuvanja podataka u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti sa uvodnom obukom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovaj {0} umesto da ga obrišete." @@ -29652,7 +29894,7 @@ msgstr "Možete izabrati jednu od sledećih," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavljuje sa iste mreže." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Možete pokušati da promenite filtere Vašeg izveštaja." @@ -29729,11 +29971,15 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite ovu radnju" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "Nemate dozvolu za pristup polju: {0}" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29741,19 +29987,19 @@ msgstr "Nemate dozvolu za pristup {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "Nemate dozvolu da otkažete sve povezane dokumente." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Nemate pristup izveštaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvole za pristup DocType-u {0}." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Nemate dozvolu za pristup ovom fajlu" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Nemate dozvolu da dobijate izveštaj za: {0}" @@ -29818,15 +30064,15 @@ msgstr "Vi ste poslednji put ovo uredili" msgid "You must add atleast one link." msgstr "Morate dodati barem jedan link." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Neophodna Vam je dozvola '{0}' na {1} {2} da biste izvršili ovu radnju." @@ -29846,7 +30092,7 @@ msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Morate biti u razvojnom režimu da biste uredili standardni veb-obrazac" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristupili rezervnim kopijama." @@ -29929,7 +30175,7 @@ msgstr "Prestali ste da pratite ovaj dokument" msgid "You viewed this" msgstr "Pregledali ste ovo" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Prijavljeni ste kao drugi korisnik na drugoj kartici. Osvežite ovu stranicu da biste nastavili rad u sistemu." @@ -29970,11 +30216,11 @@ msgstr "Vaš nalog je zaključan i biće ponovo omogućen nakon {0} sekundi" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Vaša dodela za {0} {1} je uklonjena od strane {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Vaš internet pretraživač ne podržava zvučni element." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Vaš internet pretraživač ne podržava video element." @@ -29994,11 +30240,11 @@ msgstr "Vaš obrazac je uspešno ažuriran" msgid "Your login id is" msgstr "Vaš ID za prijavljivanje je" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Nova lozinka je uspešno postavljena." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Stara lozinka je netačna." @@ -30012,7 +30258,7 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, molimo Vas da se prijavite ponovo da biste nastavili." @@ -30024,7 +30270,7 @@ msgstr "Vaš sajt je trenutno na održavanju ili se ažurira." msgid "Your verification code is {0}" msgstr "Vaš verifikacioni kod je {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Nula" @@ -30048,7 +30294,7 @@ msgstr "_doctype" msgid "_report" msgstr "_izveštaj" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" @@ -30071,7 +30317,7 @@ msgstr "after_insert" msgid "amend" msgstr "izmeni" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "i" @@ -30128,8 +30374,8 @@ msgstr "kreiraj" msgid "cyan" msgstr "cijan" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "d" @@ -30243,7 +30489,7 @@ msgstr "imejl" msgid "email inbox" msgstr "prijemna pošta imejla" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "prazno" @@ -30295,8 +30541,8 @@ msgstr "siva" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip nije pronađen u PATH! Ovo je neophodno za pravljenje rezervne kopije." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" @@ -30329,7 +30575,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "oznaka" @@ -30369,8 +30615,8 @@ msgstr "login_required" msgid "long" msgstr "dugo" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30559,8 +30805,8 @@ msgstr "odgovor" msgid "restored {0} as {1}" msgstr "vraćeno {0} kao {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30853,7 +31099,7 @@ msgstr "{0} nije dozvoljeno menjati {1}, nakon što je podneto od {2} za {3}" msgid "{0} Report" msgstr "{0} izveštaj" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} izveštaji" @@ -30894,7 +31140,7 @@ msgstr "{0} je već otkazao pretplatu" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} je već otkazao pretplatu za {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} i {1}" @@ -30902,7 +31148,7 @@ msgstr "{0} i {1}" msgid "{0} are currently {1}" msgstr "{0} je trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} su neophodni" @@ -30932,7 +31178,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} je otkazao ovaj dokument {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} ne može biti izmenjen jer nije otkazan. Molimo Vas da otkažete dokument pre nego što napravite izmenu." @@ -31000,7 +31246,11 @@ msgstr "{0} ne postoji u redu {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} polje ne može biti postavljeno kao jedinstveno u {1}, jer postoje nejedinstvene postojeće vrednosti" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "Polja {0} ne smeju da sadrže backticks (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "{0} format nije mogao biti određen iz vrednosti u ovoj koloni. Podrazumevano na {1}." @@ -31020,11 +31270,7 @@ msgstr "{0} h" msgid "{0} has already assigned default value for {1}." msgstr "{0} je već dodelio podrazumevanu vrednost za {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} je uspešno dodat u Imejl grupu." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} je napustio razgovor u {1} {2}" @@ -31094,6 +31340,10 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezno" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "{0} nije zavisna tabela od {1}" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} nije polje za doctype {1}" @@ -31115,7 +31365,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeći DocType ili dinamički link" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća imejl adresa" @@ -31123,11 +31373,11 @@ msgstr "{0} nije važeća imejl adresa" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} nije važeća ISO 3166 ALPHA-2 šifra." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} nije važeći naziv" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} nije važeći broj telefona" @@ -31135,15 +31385,15 @@ msgstr "{0} nije važeći broj telefona" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} nije važeće stanje radnog toka. Molimo Vas da ažurirate svoj radni tok i pokušate ponovo." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} nije važeći matični DocType za {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} nije važeće matično polje za {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jedan od sledećih {1}" @@ -31167,7 +31417,7 @@ msgstr "{0} nije jedan od {1}" msgid "{0} is not set" msgstr "{0} nije postavljen" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype" @@ -31177,7 +31427,8 @@ msgstr "{0} je jedno od {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je neophodno" @@ -31190,11 +31441,11 @@ msgstr "{0} je postavljeno" msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "odabrano {0} stavki" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se upravo predstavio kao Vi. Naveo je sledeći razlog: {1}" @@ -31227,23 +31478,23 @@ msgstr "pre {0} minuta" msgid "{0} months ago" msgstr "pre {0} meseci" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} mora biti nakon {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} mora počinjati sa '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} ne sme biti nijedno od {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} mora biti jedan od {1}" @@ -31255,7 +31506,7 @@ msgstr "{0} mora prvo biti postavljeno" msgid "{0} must be unique" msgstr "{0} mora biti jedinstveno" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} mora biti {1} {2}" @@ -31284,16 +31535,12 @@ msgstr "{0} od {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redova sa zavisnim podacima)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} od {1} poslato" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "samo {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} ili {1}" @@ -31330,11 +31577,11 @@ msgstr "{0} je uklonio svoj zadatak." msgid "{0} role does not have permission on any doctype" msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} red#{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} je uspešno sačuvano" @@ -31376,7 +31623,7 @@ msgstr "{0} je podneo ovaj dokument {1}" msgid "{0} subscribers added" msgstr "{0} pretplatnika dodato" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} da biste prestali da primate imejl ove vrste" @@ -31446,11 +31693,11 @@ msgstr "{0} {1} ne postoji, izaberite novo tačku za spajanje" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} nije pronađen" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podneti zapis ne može biti obrisan. Prvo morate {2} otkazati {3}." @@ -31563,7 +31810,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} je postavljeno na stanje {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} u odnosu na {2}" @@ -31599,11 +31846,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na msgid "{} Complete" msgstr "{} završeno" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Potencijalno nevažeći python kod.
{}" @@ -31625,7 +31872,7 @@ msgstr "{} polje ne može biti prazno." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} nije ispravan datum u tekstualnom formatu." diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po index 9110367e65..f093a0349d 100644 --- a/frappe/locale/sv.po +++ b/frappe/locale/sv.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-28 23:16\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}" msgid "'Recipients' not specified" msgstr "\"Mottagare\" inte angivet" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' är inte en giltig webbadress" @@ -140,7 +140,7 @@ msgstr "1 dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender Händelse Synkroniserad." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Rapport" @@ -148,7 +148,7 @@ msgstr "1 Rapport" msgid "1 comment" msgstr "1 kommentar" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "1 dag sedan" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "1 timme" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 timme sedan" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 minut sedan" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 månad sedan" @@ -179,37 +179,37 @@ msgstr "1 av 2" msgid "1 record will be exported" msgstr "1 post exporteras" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "1 sekund sedan" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 vecka sedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 år sedan" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "2 timmar sedan" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "2 månader sedan" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "2 veckor sedan" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "2 år sedan" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "3 minuter sedan" @@ -225,7 +225,7 @@ msgstr "4 timmar" msgid "5 Records" msgstr "5 Poster" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "5 dagar sedan" @@ -297,17 +297,17 @@ msgid "
\n" "
\n" "
\n" msgstr "
\n" -" Redigera lista över Nummer Serier i ruta. Regler:\n" +" Redigera lista över Namngivning Serier i ruta. Regler:\n" "
    \n" -"
  • Varje Nummer Serie Prefix på ny linje.
  • \n" +"
  • Varje Namngivning Serie Prefix på ny linje.
  • \n" "
  • Tillåtna specialtecken är \"/\" och \"-\"
  • \n" "
  • \n" -" Alternativt, ange antal siffror i Nummer Serie med punkt (.)\n" -" följt av hasch (#). Till exempel, \". ####\" betyder att Nummer Serie\n" +" Alternativt, ange antal siffror i Namngivning Serie med punkt (.)\n" +" följt av hasch (#). Till exempel, \". ####\" betyder att Namngivning Serie\n" " kommer att ha fyra siffror. Standard är fem siffror.\n" "
  • \n" "
  • \n" -" Du kan också använda variabler i Nummer Serie namn genom att sätta dem\n" +" Du kan också använda variabler i Namngivning Serie namn genom att sätta dem\n" " mellan (.) punkter\n" "
    \n" " Variabler som stöds:\n" @@ -321,8 +321,8 @@ msgstr "
    \n" " .{fieldname}. - fältnamn på dokument t.ex.\n" " branch\n" "
  • \n" -"
  • .FY. - Bokföringsår (erfordrar ERPNext installation)
  • \n" -"
  • .ABBR. - Bolagsförkortning (erfordrar ERPNext installation)
  • \n" +"
  • .FY. - Bokföringsår (erfordrar Affärssystem installation)
  • \n" +"
  • .ABBR. - Bolagsförkortning (erfordrar Affärssystem installation)
  • \n" "
\n" " \n" " \n" @@ -706,11 +706,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Hej," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Rapporter & Inställningar" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Varning: Detta fält är system genererad och kan skrivas över av framtida uppdateringar. Ändra det med {0} istället." @@ -737,6 +732,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "DocType namn ska börja med bokstav och kan bara bestå av bokstäver, siffror, mellanslag, understreck och bindestreck" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "System instans kan fungera som en OAuth Klient, Resurs eller Auktorisering Server. Denna DocType innehåller inställningar som rör alla tre." + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Utvalt inlägg måste ha omslagsbild" @@ -771,6 +771,15 @@ msgstr "Symbol för denna valuta. För t.ex. $" msgid "A template already exists for field {0} of {1}" msgstr "Det finns redan en mall för fält {0} av {1}" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "Version identifierande sträng för klientprogramvara.\n" +"
\n" +"Värdet ska ändras vid varje uppdatering av klient programvara med samma Programvara ID." + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Ord i sig är lätt att gissa." @@ -1015,7 +1024,6 @@ msgstr "Exakt antal kan inte hämtas, klicka här för att se alla dokument" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1032,7 +1040,7 @@ msgstr "Åtgärd / Sökväg" msgid "Action Complete" msgstr "Åtgärd Klar" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Åtgärd Misslyckades" @@ -1081,10 +1089,10 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "Åtgärder" @@ -1146,8 +1154,8 @@ msgstr "Aktivitet Logg" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Lägg till" @@ -1164,7 +1172,7 @@ msgstr "Lägg till / Uppdatera" msgid "Add A New Rule" msgstr "Lägg till Ny Regel" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Lägg till Bilaga" @@ -1188,7 +1196,7 @@ msgstr "Lägg till Kant Längst Upp" msgid "Add Card to Dashboard" msgstr "Lägg till i Översikt Panel" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Lägg till Diagram i Översikt Panel" @@ -1197,8 +1205,8 @@ msgid "Add Child" msgstr "Lägg till Underval" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1234,7 +1242,7 @@ msgid "Add Gray Background" msgstr "Lägg till Grå Bakgrund" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Lägg till Grupp" @@ -1259,7 +1267,7 @@ msgstr "Lägg till Deltagare" msgid "Add Query Parameters" msgstr "Lägg till Fråge Parametrar" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Lägg till Roller" @@ -1269,7 +1277,7 @@ msgstr "Lägg till Rad " #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "Lägg till Signatur" @@ -1292,12 +1300,12 @@ msgstr "Lägg till Prenumeranter" msgid "Add Tags" msgstr "Lägg till Taggar" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Lägg till Taggar" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Lägg till Mall" @@ -1404,7 +1412,7 @@ msgid "Add tab" msgstr "Lägg till flik" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Lägg till i Översikt Panel" @@ -1559,11 +1567,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administratör" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Administratör Inloggad" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administratör loggade in {0} {1} via IP Adress {2}." @@ -1671,6 +1679,14 @@ msgstr "Varna" msgid "Alerts and Notifications" msgstr "Varningar och Aviseringar" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias kan inte vara SQL nyckelord: {0}" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "Alias måste vara sträng" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1711,7 +1727,6 @@ msgstr "Justera Värde" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1727,7 +1742,7 @@ msgstr "Hela Dagen" #: frappe/website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" -msgstr "Alla Bilder bifogade till Hemsida Bildspel ska vara publika" +msgstr "Alla Bilder bifogade till Hemsida Bildspel ska vara allmänna bilder" #: frappe/public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" @@ -2042,6 +2057,12 @@ msgstr "Tillåt i Hänvisningar" msgid "Allowed Modules" msgstr "Tillåtna Moduler" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Tillåten Allmän Klient Ursprung" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2058,7 +2079,43 @@ msgstr "Tillåtna inbäddning av domäner" msgid "Allowing DocType, DocType. Be careful!" msgstr "Tillåter DocType, DocType. Var försiktig!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "Tillåter klienter att hämta metadata från /.well-known/oauth-authorization-server slutpunkt. Referens: RFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Tillåter klienter att hämta metadata från slutpunkt /.well-known/oauth-protected-resource. Referens: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Tillåter klienter att registrera sig själva utan manuell åtgärd. Registrering skapar OAuth Client post. Referens: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Tillåter klienter att visa detta som en auktorisering server när de frågar slutpunkt /.well-known/oauth-protected-resource." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Tillåter att aktiverad Social Inloggning Nyckel Bas URL visas som auktorisering server." + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "Tillåter hoppa över auktorisering om användare har aktiva tokens." + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Redan Registrerad" @@ -2117,12 +2174,12 @@ msgstr "Ändra" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" -msgstr "Ändra Nummer Serie Sekvens" +msgstr "Ändra Namngivning Serie Sekvens" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" -msgstr "Ändrade Dokument Namn Inställningar" +msgstr "Ändrad Dokument Namngivning Inställningar" #. Label of the amended_documents_section (Section Break) field in DocType #. 'Document Naming Settings' @@ -2147,17 +2204,17 @@ msgstr "Ändring" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "Ändring Nummer Serie Åsidosättande " +msgstr "Ändring Namngivning Serie Åsidosättande" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Ändring Ej Tillåten" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." -msgstr "Ändring av Nummer Serie uppdaterad." +msgstr "Ändring Namngivning Regler uppdaterad." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Fel inträffade vid konfiguration av Session Standard" @@ -2238,16 +2295,6 @@ msgstr "Förutom System Ansvarig kan roller med Ange användarbehörighet rätt msgid "App" msgstr "App" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "App Klient ID" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "App Klient Hemlighet" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2261,21 +2308,24 @@ msgstr "App Logotyp " #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "App Namn" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "App Namn (Klient Namn)" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "App hittades inte för modul: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "App {0} är inte installerad" @@ -2340,7 +2390,7 @@ msgstr "Tillämpad På" msgid "Apply" msgstr "Tillämpa" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Tillämpa Tilldelning Regel" @@ -2421,7 +2471,7 @@ msgstr "Arkiverad" msgid "Archived Columns" msgstr "Arkiverade Kolumner" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Är du säker på att du vill ta bort tilldelningar?" @@ -2453,7 +2503,7 @@ msgstr "Är du säker på att du vill ta bort flik? Alla avsnitt och fält i fli msgid "Are you sure you want to discard the changes?" msgstr "Är du säker på att du vill ignorera ändringar?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Är du säker på att du vill skapa ny rapport?" @@ -2489,10 +2539,6 @@ msgstr "Är du säker på att du vill återställa alla anpassningar?" msgid "Are you sure you want to save this document?" msgstr "Är du säker på att du vill spara detta dokument?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Är du säker på att du vill skicka detta nyhetsbrev nu?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2525,16 +2571,16 @@ msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1} msgid "Assign Condition" msgstr "Tilldela Villkor" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Tilldela till" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tilldela till" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Tilldela till Användare Grupp" @@ -2686,7 +2732,7 @@ msgstr "Minst ett fält av Överordnad Dokument Typ erfordras" msgid "Attach" msgstr "Bifoga" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Bifoga Dokument Utskrift" @@ -2746,9 +2792,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Bifogat till namn måste vara en sträng eller ett heltal" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Bilaga" @@ -2775,20 +2819,17 @@ msgid "Attachment Removed" msgstr "Bilaga Borttagen" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Bilagor" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "Försöker ansluta till QZ Aktivitet Fält..." -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "Försöker starta QZ Aktivitet Fält..." @@ -2796,11 +2837,6 @@ msgstr "Försöker starta QZ Aktivitet Fält..." msgid "Attribution" msgstr "Tillskrivning" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Mottagare" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2845,6 +2881,11 @@ msgstr "Autentisering misslyckades när E-post meddelande togs emot från E-pos msgid "Author" msgstr "Skapad Av" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Auktorisering" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3018,7 +3059,7 @@ msgstr "Autokomplettera" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Autoincrement" -msgstr "Stega upp" +msgstr "Autoökning" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -3079,7 +3120,7 @@ msgstr "Avatar" msgid "Average" msgstr "Medel" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "Genomsnitt av {0}" @@ -3184,7 +3225,7 @@ msgstr "B9" msgid "BCC" msgstr "Hemlig Kopia Till" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "Hemlig Kopia Till" @@ -3227,7 +3268,7 @@ msgstr "Bakgrund Bild" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Bakgrund Jobb" @@ -3257,7 +3298,7 @@ msgstr "Bakgrund Tjänster" #: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" -msgstr "Säkerhetskopiering Kryptering Nyckel" +msgstr "Kryptering Nyckel" #: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" @@ -3778,7 +3819,7 @@ msgstr "Skugg Knapp" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" -msgstr "Efter \"Nummer Serie\"." +msgstr "Efter \"Namngivning Serie\"" #: frappe/website/doctype/web_page/web_page.js:111 #: frappe/website/doctype/web_page/web_page.js:118 @@ -3803,19 +3844,19 @@ msgstr "Efter skript" #. DocType 'User' #: frappe/core/doctype/user/user.json msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" -msgstr "Frångå begränsad IP Adress Kontroll om Två Faktor Autentisering är Aktiverad" +msgstr "Ignorera begränsad IP Adress Kontroll om Två Faktor Autentisering är Aktiverad" #. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "Frångå Två Faktor Autentisering för Användare som loggar in från begränsad IP Adress" +msgstr "Ignorera Två Faktor Autentisering för Användare som loggar in från begränsad IP Adress" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "Frångå begränsad IP Adress kontroll om Två Faktor Autentisering är Aktiverad" +msgstr "Ignorera begränsad IP Adress kontroll om Två Faktor Autentisering är Aktiverad" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -3833,7 +3874,7 @@ msgstr "ANNULLERAD" msgid "CC" msgstr "Kopia Till" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "Kopia Till" @@ -3956,10 +3997,8 @@ msgstr "Återuppringning Benämning" msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3997,7 +4036,7 @@ msgstr "Kan inte byta namn eftersom kolumn {0} redan finns under DocType." #: frappe/core/doctype/doctype/doctype.py:1163 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" -msgstr "Kan bara ändra till/från Autoincrement namngivningsregel när det inte finns några data i doctype" +msgstr "Kan bara ändra till/från Autoökning namngivning regel när det inte finns några data i doctype" #. Description of the 'Apply User Permission On' (Link) field in DocType 'User #. Type' @@ -4026,7 +4065,7 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns." msgid "Cancel" msgstr "Annullera" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annullera" @@ -4044,11 +4083,7 @@ msgstr "Annullera" msgid "Cancel All Documents" msgstr "Annullera Alla Dokument" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Annullera Schemaläggning" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annullera {0} dokument?" @@ -4115,11 +4150,11 @@ msgstr "Kan inte annullera före godkännande.Se Övergång {0}" msgid "Cannot cancel {0}." msgstr "Kan inte annullera {0}." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Kan inte ändra dokument status från 0 (Utkast) till 2 (Annullerad)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)" @@ -4147,7 +4182,7 @@ msgstr "Kan inte skapa privat arbetsyta för andra användare" msgid "Cannot delete Home and Attachments folders" msgstr "Kan inte ta bort Hem och Bilaga mappar" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Kan inte ta bort eller annullera eftersom {0} {1} är länkat till {2} {3} {4}" @@ -4202,7 +4237,7 @@ msgstr "Kan inte redigera standard diagram" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Kan inte redigera standard rapport.Kopiera och skapa ny" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "Kan inte redigera annullerad dokument" @@ -4239,7 +4274,7 @@ msgstr "Kan inte mappa flera skrivare till enskild utskrift format." msgid "Cannot import table with more than 5000 rows." msgstr "Kan inte importera tabell med fler än 5000 rader." -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "Kan inte länka annullerad dokument: {0}" @@ -4284,7 +4319,7 @@ msgstr "Kan inte uppdatera {0}" msgid "Cannot use sub-query in order by" msgstr "Kan inte använda underfråga i ordna efter" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "Kan inte använda {0} i ordna/gruppera efter" @@ -4310,7 +4345,7 @@ msgstr "Kort" msgid "Card Break" msgstr "Kort Brytning" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Kort Titel" @@ -4341,10 +4376,6 @@ msgstr "Kategori Beskrivning" msgid "Category Name" msgstr "Kategori Namn" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Cent" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4453,7 +4484,7 @@ msgstr "Diagram Inställningar" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Diagram Namn" @@ -4510,10 +4541,6 @@ msgstr "Markera" msgid "Check Request URL" msgstr "Kontrollera Begärd URL" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Kontrollera felaktiga länkar" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "Markera kolumner för att välja, dra för att ange ordning." @@ -4537,10 +4564,6 @@ msgstr "Välj detta för att tvinga användare att välja serie innan den kan sp msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "Aktivera för att hela numeriska värdet visas (t.ex. 1.234.567 i stället för 1,2 miljoner)." -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Kontrollerar felaktiga länkar..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Kontrollerar ett ögonblick" @@ -4587,6 +4610,10 @@ msgstr "Underordnad tabell {0} för fält {1}" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "Underordnade frågefält för '{0}' måste vara lista eller tupel." + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Välj Befintligt Kort eller skapa Ny Kort" @@ -4626,15 +4653,19 @@ msgstr "Stad/Ort" msgid "Clear" msgstr "Rensa" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Rensa & Lägg till Mall" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Rensa & Lägg till Mall" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Rensa Alla" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Rensa Tilldelning" @@ -4660,7 +4691,7 @@ msgstr "Rensa Logg Efter (dagar)" msgid "Clear User Permissions" msgstr "Rensa Användare Rättigheter" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "Rensa e-post meddelande och lägg till mall" @@ -4676,10 +4707,6 @@ msgstr "Klicka på Anpassa för att lägga till din första widget" msgid "Click here" msgstr "Klicka här" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Klicka här att verifiera" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Klicka på fil för att välja det." @@ -4759,8 +4786,10 @@ msgid "Client Credentials" msgstr "Klient Inloggningsppgifter" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "Klient ID" @@ -4776,6 +4805,12 @@ msgstr "Klient ID" msgid "Client Information" msgstr "Klient Information" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Klient Metadata" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4788,13 +4823,32 @@ msgstr "Klient Skript" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Klient Hemlighet" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Grundläggande Klient Hemlighet" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Klient Hemlig Post" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "Klient URI" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4879,7 +4933,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Fäll In" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fäll In Alla" @@ -4934,7 +4988,7 @@ msgstr "Infällbar beror på (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5021,11 +5075,11 @@ msgstr "Kolumner" msgid "Columns / Fields" msgstr "Kolumner / Fält" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Kolumner baserade på" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "Kombination av Medgivande Typ ( {0} ) och Svars Typ ( {1} ) är inte tillåtet" @@ -5184,7 +5238,7 @@ msgstr "Klar" msgid "Complete By" msgstr "Klar Senast" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Slutför Registrering" @@ -5274,6 +5328,12 @@ msgstr "Villkor Beskrivning" msgid "Conditions" msgstr "Villkor" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Konfiguration" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5290,7 +5350,7 @@ msgstr "Konfigurera Kolumner" #: frappe/core/doctype/recorder/recorder_list.js:200 msgid "Configure Recorder" -msgstr "Konfigurera Inspelare" +msgstr "Konfigurera Inspelning" #: frappe/public/js/print_format_builder/Field.vue:103 msgid "Configure columns for {0}" @@ -5304,7 +5364,7 @@ msgid "Configure how amended documents will be named.
\n\n" "Default Naming will make the amended document to behave same as new documents." msgstr "Konfigurera hur ändrade dokument ska namnges.\n\n" "Standard är att följa ändring sekvens som lägger till version nummer i slutet av ursprungliga namn.\n" -"Standard Nummer Serie gör att ändrade dokument fungerar på samma sätt som nya dokument." +"Standard Namngivning Serie gör att ändrade dokument fungerar på samma sätt som nya dokument." #. Description of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -5312,7 +5372,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Konfigurera olika aspekter av hur dokument namn fungerar som att namnge serier, aktuell räknare." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bekräfta" @@ -5321,7 +5381,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Bekräfta" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Bekräfta Åtkomst" @@ -5334,7 +5394,7 @@ msgstr "Bekräfta Borttagning av Konto" msgid "Confirm New Password" msgstr "Bekräfta Ny Lösenord" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Bekräfta Lösenord" @@ -5343,17 +5403,12 @@ msgstr "Bekräfta Lösenord" msgid "Confirm Request" msgstr "Bekräfta Begäran" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "Bekräfta E-post" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Bekräftelse E-post Mall" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Bekräftad" @@ -5380,8 +5435,8 @@ msgstr "Ansluten App" msgid "Connected User" msgstr "Ansluten Användare" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "Ansluten till QZ Aktivitet Fält!" @@ -5473,6 +5528,11 @@ msgstr "Kontakta Oss Inställningar" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Kontakt Alternativ, som 'Försäljning Förfrågning, Support Förfrågning' osv på ny rad eller separerade med komma tecken." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakter" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "Innehåller {0} säkerhetskorrigering" @@ -5484,8 +5544,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5493,8 +5551,7 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5518,10 +5575,8 @@ msgstr "Innehåll (Markdown)" msgid "Content Hash" msgstr "Innehåll Hash" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5578,7 +5633,7 @@ msgstr "Bidrag Status" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "Kontrollerar om nya användare kan registrera sig med denna Sociala Inloggning Nyckel. Om ej vald, respekteras webbplats inställningar." -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Kopierad till urklipp." @@ -5594,7 +5649,7 @@ msgstr "Kopiera inbäddningskod" msgid "Copy error to clipboard" msgstr "Kopiera fel till urklipp" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Kopiera till Urklipp" @@ -5619,7 +5674,7 @@ msgstr "Rätt version : " msgid "Could not connect to outgoing email server" msgstr "Kan inte ansluta till utgående E-post Server" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "Kunde inte hitta {0}" @@ -5627,6 +5682,10 @@ msgstr "Kunde inte hitta {0}" msgid "Could not map column {0} to field {1}" msgstr "Kunde inte mappa kolumn {0} till fält {1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "Kunde inte parsa fält: {0}" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Kunde inte starta: " @@ -5643,7 +5702,7 @@ msgstr "Kunde inte spara. Kontrollera angivna uppgifter" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Antal" @@ -5682,7 +5741,7 @@ msgstr "Räknare" msgid "Country" msgstr "Land" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Land Kod Erfordras" @@ -5714,7 +5773,7 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5728,13 +5787,13 @@ msgstr "Skapa & Fortsätt" msgid "Create Address" msgstr "Skapa Adress" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Skapa Kort" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Skapa Diagram" @@ -5813,11 +5872,6 @@ msgstr "Skapa {0}" msgid "Create a {0} Account" msgstr "Skapa {0} Konto" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Skapa och skicka e-post till specifik grupp av prenumeranter med jämna mellanrum." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Skapa eller Redigera Utskrift Format" @@ -6166,6 +6220,10 @@ msgstr "Anpassad Översättning" msgid "Custom field renamed to {0} successfully." msgstr "Anpassat fält bytte namn till {0}." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt eller None, fick {1}" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6199,12 +6257,12 @@ msgstr "Anpassningar för {0} som exporterades till:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Anpassa" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassa" @@ -6223,7 +6281,7 @@ msgstr "Anpassa Översikt Panel" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Anpassa Formulär" @@ -6239,7 +6297,7 @@ msgstr "Anpassa Formulär Fält" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Customize properties, naming, fields and more for standard doctypes" -msgstr "Anpassa egenskaper, namn, fält och mer för standard doctypes" +msgstr "Anpassa egenskaper, namngivning, fält och mer för standard doctypes" #: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" @@ -6349,7 +6407,7 @@ msgstr "Mörk Tema" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Översikt Panel" @@ -6516,7 +6574,6 @@ msgstr "Databas Version" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6580,6 +6637,11 @@ msgstr "Dag" msgid "Day of Week" msgstr "Veckodag" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dagar" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6653,7 +6715,7 @@ msgstr "Standard Adress Mall kan inte tas bort" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Amendment Naming" -msgstr "Standard Ändring Namn" +msgstr "Standard Ändring Namngivning" #. Label of the default_app (Select) field in DocType 'System Settings' #. Label of the default_app (Select) field in DocType 'User' @@ -6691,7 +6753,7 @@ msgstr "Standard Brevhuvud" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Naming" -msgstr "Standard Nummer Serie" +msgstr "Standard Namngivning Serie" #. Label of the default_outgoing (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -6844,15 +6906,16 @@ msgstr "Försenad" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Ta bort" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Ta bort" @@ -6888,7 +6951,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Ta bort Flik" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Ta bort och Skapa Ny" @@ -6930,12 +6993,12 @@ msgstr "Ta bort flik" msgid "Delete this record to allow sending to this email address" msgstr "Ta bort denna post för att tillåta utskick till denna E-post" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Ta bort {0} Post permanent?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Ta bort {0} Poster permanent?" @@ -7159,6 +7222,7 @@ msgstr "Skrivbord Tema" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7342,8 +7406,8 @@ msgstr "Inaktivera Registrering" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Inaktiverad" @@ -7352,7 +7416,7 @@ msgstr "Inaktiverad" msgid "Disabled Auto Reply" msgstr "Inaktiverad Autosvar" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7513,6 +7577,7 @@ msgstr "Status för följande tillstånd är ändrad:
{0}

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "Fel vid anslutning till QZ Aktivitet Fält...

Du måste ha QZ Aktivitet Fält App installerad och igång för att kunna använda Direkt Utskrift funktion.

Klicka här för att ladda ner och installera QZ App .
Klicka här för att lära dig mer om Direkt Utskrift." @@ -9290,6 +9359,14 @@ msgstr "Fel i Avisering" msgid "Error in print format on line {0}: {1}" msgstr "Fel i Utskrift Format på rad {0}: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Fel i {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Fel vid parsning av nästlade filter: {0}" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Fel vid anslutning till E-post Konto {0}" @@ -9455,7 +9532,7 @@ msgstr "Exekverar Kod" msgid "Executing..." msgstr "Kör..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Exekvering Tid: {0} sek" @@ -9481,11 +9558,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandera" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandera Alla" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Experimentell" @@ -9538,13 +9619,13 @@ msgstr "Förfallo Tid för QR Kod Bild Sida" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Export" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Export" @@ -9760,7 +9841,7 @@ msgstr "Misslyckades att exportera python typ tips" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 msgid "Failed to generate names from the series" -msgstr "Misslyckades att skapa namn serie" +msgstr "Misslyckades att skapa namn från serie" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" @@ -9902,8 +9983,8 @@ msgstr "Hämtar standard Global Sökning dokument." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9974,7 +10055,7 @@ msgstr "Fält att Spåra" msgid "Field type cannot be changed for {0}" msgstr "Fält Typ kan inte ändras för {0}" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "Fält {0} finns inte på {1}" @@ -10017,7 +10098,7 @@ msgstr "Fält Namn '{0}' är i konflikt med {1} av namn {2} i {3}" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Fält Namn är begränsad till 64 tecken ({0})" @@ -10033,7 +10114,7 @@ msgstr "Fält Namn som kommer att vara DocType för den här länk fält." msgid "Fieldname {0} appears multiple times" msgstr "Fält Namn {0} visas flera gånger" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fält Namn {0} kan inte ha special tecken som {1}" @@ -10085,6 +10166,10 @@ msgstr "Fält `file_name` eller `file_url` måste anges för fil" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Filter måste vara lista eller tupel när as_list är aktiverad" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "Fält måste vara sträng, lista, tupel, pypika Fält eller pypika Funktion" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10250,6 +10335,14 @@ msgstr "Filter Namn" msgid "Filter Values" msgstr "Filtervärden" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "Filtervillkor saknas efter operator: {0}" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Filterfält får inte innehålla bakåttecken (`)." + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filter..." @@ -10461,7 +10554,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Följ" @@ -10469,7 +10562,7 @@ msgstr "Följ" msgid "Followed by" msgstr "Följd av" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Följande Rapport Filter saknar värden:" @@ -10493,10 +10586,6 @@ msgstr "Följande fält saknar värde" msgid "Following fields have missing values:" msgstr "Följande fält saknar värde:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "Följande länkar är brutna i e-postinnehållet: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10657,7 +10746,7 @@ msgstr "För Användare" msgid "For Value" msgstr "För Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "För jämförelse, använd >5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)." @@ -10913,15 +11002,13 @@ msgid "Friday" msgstr "Fredag" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "Från" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Från" @@ -10937,7 +11024,7 @@ msgstr "Från Datum" msgid "From Date Field" msgstr "Från Datum" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Från DocType" @@ -10988,7 +11075,7 @@ msgstr "Full Bredd" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Funktion" @@ -10997,10 +11084,14 @@ msgstr "Funktion" msgid "Function Based On" msgstr "Funktion Baserad på" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "Funktion {0} är inte vitlistad." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "Funktion {0} erfordrar argument men inga angavs" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Extra noder kan endast skapas under 'grupp' typ noder" @@ -11062,7 +11153,7 @@ msgstr "Allmän" msgid "Generate Keys" msgstr "Skapa Nycklar" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Skapa Ny Rapport" @@ -11070,8 +11161,8 @@ msgstr "Skapa Ny Rapport" msgid "Generate Random Password" msgstr "Skapa Slumpmässig Lösenord" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "Skapa Spårning URL" @@ -11100,7 +11191,7 @@ msgstr "Hämta Dagens Alerts" #: frappe/desk/page/backups/backups.js:21 msgid "Get Backup Encryption Key" -msgstr "Hämta Säkerhetskopiering Kryptering Nyckel" +msgstr "Hämta Kryptering Nyckel" #. Label of the get_contacts (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -11131,7 +11222,7 @@ msgstr "Hämta PDF" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Get a preview of generated names with a series." -msgstr "Förhandsgranskning av Nummer Serie." +msgstr "Förhandsvisning av Namngivning Serie." #: frappe/public/js/frappe/list/list_sidebar.js:305 msgid "Get more insights with" @@ -11186,7 +11277,7 @@ msgstr "Globala Genvägar" msgid "Global Unsubscribe" msgstr "Globalt Avregistrering" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Gå" @@ -11350,8 +11441,6 @@ msgstr "Google Kontakter - kunde inte uppdatera kontakt i Google Kontakter {0}, msgid "Google Contacts Id" msgstr "Google Kontakter ID" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11388,6 +11477,7 @@ msgstr "Google" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11482,6 +11572,10 @@ msgstr "Gruppera Efter Typ" msgid "Group By field is required to create a dashboard chart" msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "Gruppera Efter måste vara sträng" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Grupp Nod" @@ -11496,7 +11590,7 @@ msgstr "Grupp Objekt Klass" msgid "Group your custom doctypes under modules" msgstr "Gruppera dina anpassade doctypes under moduler" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "Grupperad Efter {0}" @@ -11530,7 +11624,6 @@ msgstr "HH: mm: ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11544,11 +11637,10 @@ msgstr "HH: mm: ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11777,7 +11869,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "Här är din spårning URL" @@ -11813,12 +11905,17 @@ msgstr "Dold " msgid "Hidden Fields" msgstr "Dolda fält" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "Dolda kolumner inkluderar: {0}" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Dölj" @@ -11925,7 +12022,7 @@ msgstr "Dölj Sidofält, Meny och Kommentarer" msgid "Hide Standard Menu" msgstr "Dölj Standard Meny" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Dölj Taggar" @@ -11980,7 +12077,7 @@ msgstr "Regel med högre prioritet tillämpas först" msgid "Highlight" msgstr "Höjdpunkt" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "Tips: Inkludera symboler, siffror och stora bokstäver i lösenord" @@ -12053,20 +12150,30 @@ msgstr "Timvis Underhåll" msgid "Hourly rate limit for generating password reset links" msgstr "Antal länkar som kan skapas per timme för byte av lösenord" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Timmar" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Hur ska denna valuta formateras? Om inte angiven, kommer system standard att användas" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Läsbart namn avsett att visas för slutanvändare." + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Antar att du inte har tillgång till någon arbetsyta ännu, men du kan skapa en bara för dig själv. Klicka på knappen Skapa Arbetsyta för att skapa en.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12330,7 +12437,7 @@ msgstr "Om du uppdaterar, välj \"Skriv över\" annars kommer befintliga rader i #: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "Om du laddar upp ny information, blir \"Nummer Serie\" obligatorisk, om det finns." +msgstr "Om du laddar upp ny information, blir \"Namngivning Serie\" erfordrad, om det finns." #: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." @@ -12471,7 +12578,7 @@ msgstr "Bild Fält måste vara av typ Bifoga Bild" msgid "Image link '{0}' is not valid" msgstr "Bild Länk \"{0}\" är inte giltig" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Bild Optimerad" @@ -12519,7 +12626,7 @@ msgstr "Implicit" msgid "Import" msgstr "Importera" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "Importera" @@ -12747,11 +12854,15 @@ msgstr "Inkludera Tema från Appar" msgid "Include Web View Link in Email" msgstr "Inkludera Länk till Webbvy i E-post" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Inkludera Filter" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "Inkludera dolda kolumner" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Inkludera Fördjupning" @@ -12818,11 +12929,11 @@ msgstr "Felaktig Användare eller Lösenord" msgid "Incorrect Verification code" msgstr "Felaktig Verifiering Kod" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Felaktigt värde i rad {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Felaktigt värde:" @@ -12909,7 +13020,7 @@ msgstr "Infoga \tOvan" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Infoga Efter" @@ -12974,11 +13085,11 @@ msgstr "Instruktioner" msgid "Instructions Emailed" msgstr "Instruktioner skickade per E-post" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" @@ -13100,7 +13211,7 @@ msgstr "Ogiltig" msgid "Invalid \"depends_on\" expression" msgstr "Ogiltig 'depends_on' uttryck" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ogiltig uttryck 'beroende på' i filter {0}" @@ -13128,7 +13239,7 @@ msgstr "Ogiltig Villkor: {}" msgid "Invalid Credentials" msgstr "Ogiltiga Uppgifter" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Ogiltigt Datum" @@ -13136,7 +13247,7 @@ msgstr "Ogiltigt Datum" msgid "Invalid DocType" msgstr "Ogiltig DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Ogiltig DocType: {0}" @@ -13148,6 +13259,11 @@ msgstr "Ogiltigt Fält Namn" msgid "Invalid File URL" msgstr "Ogiltig Fil URL" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "Ogiltigt Filter" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "Ogiltig Filter Format för fält {0} av typ {1}. Försök att använda filter ikon på fält för att ange den korrekt" @@ -13160,7 +13276,7 @@ msgstr "Ogiltig Filter Värde" msgid "Invalid Home Page" msgstr "Ogiltig Webbplats" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Ogiltig Länk" @@ -13178,7 +13294,7 @@ msgstr "Ogiltig E-post Server. Rätta till och försök igen." #: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" -msgstr "Ogiltig Nummer Serie: {}" +msgstr "Ogiltig Namngivning Serie: {}" #: frappe/core/doctype/rq_job/rq_job.py:113 #: frappe/core/doctype/rq_job/rq_job.py:122 @@ -13194,7 +13310,7 @@ msgstr "Ogiltig Alternativ" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Ogiltig Utgående E-Post Server eller Port: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Ogiltig Utdata Format" @@ -13206,13 +13322,13 @@ msgstr "Ogiltig Åsidosättning" msgid "Invalid Parameters." msgstr "Ogiltiga Parametrar" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Ogiltigt Lösenord" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Ogiltig Telefon Nummer" @@ -13256,11 +13372,39 @@ msgstr "Ogiltig Webbhook Hemlighet" msgid "Invalid aggregate function" msgstr "Ogiltig aggregatfunktion" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare." + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna." + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Ogiltig argumenttyp: {0}. Endast strängar, siffror och None är tillåtna." + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och understreck är tillåtna." + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "Ogiltiga tecken i tabellnamn: {0}" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Ogiltig Kolumn" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Ogiltig villkorstyp i nästlade filter: {0}" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "Ogiltig riktning i Sortera Efter: {0}. Måste vara 'ASC' eller 'DESC'." + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Ogiltig dokument status" @@ -13272,10 +13416,30 @@ msgstr "Ogiltig uttryck angiven i filter {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ogiltig uttryck angiven i sortering {0} ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "Ogiltig fältformat för SELECT: {0}. Fältnamn måste vara enkla, bakåtkvalificerade, tabellkvalificerade, alias eller '*'." + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" eller \"child_table.field\"." + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Ogiltig fältnamn i funktion: {0}. Endast enkla fältnamn är tillåtna." + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Ogiltig Fält Namn {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "Ogiltigt fältnamn: {0}" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "Ogiltig fälttyp: {0}" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ogiltig Fält Namn '{0}' i automatisk namn" @@ -13284,11 +13448,26 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn" msgid "Invalid file path: {0}" msgstr "Ogiltig Sökväg: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel." + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldname.target_fieldname'." + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Ogiltig Filter: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor och None är tillåtna." + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "Ogiltigt funktion ordbok format" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13300,7 +13479,7 @@ msgstr "Ogiltig namn typ (heltal) för varchar namn kolumn" #: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" -msgstr "Ogiltig nummer serie {}: punkt (.) saknas" +msgstr "Ogiltig namngivning serie {}: punkt (.) saknas" #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" @@ -13310,10 +13489,22 @@ msgstr "Ogiltig eller skadat innehåll för import" msgid "Invalid redirect regex in row #{}: {}" msgstr "Ogiltigt omdirigering regex på rad #{}: {}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Ogiltiga begäran argument" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "Ogiltig enkelt filterformat: {0}" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Ogiltig start för filtervillkor: {0}. Förväntade lista eller tupel." + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "Ogiltig sträng litteral format: {0}" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "Ogiltig mall fil för import" @@ -13481,7 +13672,7 @@ msgstr "Är Privat" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "Är Publik" +msgstr "Är Allmän" #. Label of the is_published_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -13721,8 +13912,8 @@ msgstr "Jobb Inaktiv" msgid "Join video conference with {0}" msgstr "Anslut till Videokonferens med {0}" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Hoppa till Fält" @@ -13755,11 +13946,11 @@ msgstr "Anslagstavla Bord Kolumn" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Anslagstavla Bord Namn" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Anslagstavla Inställningar" @@ -14047,7 +14238,7 @@ msgstr "Etikett erfordras" msgid "Landing Page" msgstr "Webbplats" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Landskap" @@ -14343,7 +14534,7 @@ msgstr "Letter" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14471,6 +14662,10 @@ msgstr "Gillar" msgid "Limit" msgstr "Begränsa" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Gränsvärde får inte vara negativt heltal" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14653,7 +14848,7 @@ msgstr "Länkar" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Lista" @@ -14683,7 +14878,7 @@ msgstr "Lista Filter" msgid "List Settings" msgstr "Lista Inställningar" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Lista Inställningar" @@ -14734,6 +14929,7 @@ msgid "Load Balancing" msgstr "Last Balansering" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14754,7 +14950,7 @@ msgstr "Läs in mer" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Laddar" @@ -14966,6 +15162,11 @@ msgstr "Inloggning med användarnamn och lösenord är inte tillåtet." msgid "Login with {0}" msgstr "Logga in med {0}" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "Logotyp URI" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15083,7 +15284,7 @@ msgstr "'namn' sökbar i Global Sökning" #. Label of the make_attachment_public (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Make Attachment Public (by default)" -msgstr "Gör bilaga Publik (som standard)" +msgstr "Gör bilaga Allmän (som standard)" #. Label of the make_attachments_public (Check) field in DocType 'DocType' #. Label of the make_attachments_public (Check) field in DocType 'Customize @@ -15091,7 +15292,7 @@ msgstr "Gör bilaga Publik (som standard)" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" -msgstr "Bilagor Publika som Standard" +msgstr "Bilagor Allmänna som Standard" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' @@ -15109,7 +15310,7 @@ msgstr "Skapa {0}" #: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" -msgstr "Publik Sida" +msgstr "Allmän Sida" #: frappe/desk/page/setup_wizard/install_fixtures.py:28 msgid "Male" @@ -15117,7 +15318,7 @@ msgstr "Man" #: frappe/www/me.html:56 msgid "Manage 3rd party apps" -msgstr "Hantera tredjepartsappar" +msgstr "Hantera Tredjepartsappar" #. Description of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -15152,7 +15353,7 @@ msgstr "Erfordrad Beroende Av" msgid "Mandatory Depends On (JS)" msgstr "Erfodrad Beroende Av (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Erfodrad Information saknas:" @@ -15252,11 +15453,9 @@ msgstr "Markera som Skräp" msgid "Mark as Unread" msgstr "Markera som Oläst" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15321,7 +15520,7 @@ msgstr "Maximum Längd" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "Max Antal Rapportrader" +msgstr "Maximal Antal Rapportrader" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -15377,7 +15576,7 @@ msgstr "Innebörd av Godkänn, Annullera, Ändra" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15445,7 +15644,6 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15458,11 +15656,10 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15473,16 +15670,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Meddelande" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Meddelande (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Meddelande (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15509,7 +15696,7 @@ msgstr "Meddelande Skickad" msgid "Message Type" msgstr "Meddelande Typ" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Meddelande Urlippt" @@ -15587,6 +15774,12 @@ msgstr "Meta Benämning" msgid "Meta title for SEO" msgstr "Meta Benämning för SEO" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Metadata" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15606,7 +15799,7 @@ msgstr "Meta Benämning för SEO" msgid "Method" msgstr "Sätt" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "Metod ej Tillåten" @@ -15656,6 +15849,11 @@ msgstr "Minimum Lösenord Värde" msgid "Minor" msgstr "Minor" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minuter" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15695,7 +15893,7 @@ msgstr "Fält Värde saknas" msgid "Missing Fields" msgstr "Fält Värden saknas" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Saknade Filter Erfodras" @@ -15703,7 +15901,7 @@ msgstr "Saknade Filter Erfodras" msgid "Missing Permission" msgstr "Tillstånd Saknas" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Värde Saknas" @@ -15769,7 +15967,7 @@ msgstr "Ändrad Av" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16051,7 +16249,7 @@ msgstr "Måste omges av '()' och inkludera '{0}', som är platshållare för Anv msgid "Must be of type \"Attach Image\"" msgstr "Måste vara av typ 'Bifoga Bild'" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Behörigheter saknas till den här rapport." @@ -16069,7 +16267,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16168,17 +16366,17 @@ msgstr "Namngivning Alternativ:\n" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" -msgstr "Nummer Serie Regel" +msgstr "Namngivining Regel" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "Nummer Serie" +msgstr "Namngivning Serie" #: frappe/model/naming.py:260 msgid "Naming Series mandatory" -msgstr "Nummer Serie erfordras" +msgstr "Namngivning Serie erfordras" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -16213,12 +16411,12 @@ msgstr "Toppfält Mall" msgid "Navbar Template Values" msgstr "Toppfält Mall Värden" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigera lista ner" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigera lista upp" @@ -16237,10 +16435,14 @@ msgstr "Navigation Inställningar" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares privat arbetsyta" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Negativ Värde" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Nästlade filter måste anges som lista eller tupel." + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "Nested set fel. Kontakta Administratör." @@ -16323,7 +16525,7 @@ msgstr "Ny Händelse" msgid "New Folder" msgstr "Ny Mapp" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Ny Anslagstavla" @@ -16346,10 +16548,6 @@ msgstr "Ny Meddelande från Webbplats Kontakt Sida" msgid "New Name" msgstr "Ny Namn" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Ny Nyhetsbrev" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Ny Avisering" @@ -16362,7 +16560,7 @@ msgstr "Ny Nummer Kort" msgid "New Onboarding" msgstr "Ny Introduktion" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Ny Lösenord" @@ -16407,7 +16605,28 @@ msgstr "Ny Arbetsflöde Namn" msgid "New Workspace" msgstr "Ny Arbetsyta" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "Ny radseparerad lista över tillåtna URL:er för allmänna klienter (t.ex. https://frappe.io), eller * för att acceptera alla.\n" +"
\n" +"Allmänna klienter är begränsade som standard." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Ny radseparerad lista med omfångsvärden." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Ny radseparerad lista med strängar som representerar sätt att kontakta personer som är ansvariga för denna klient, vanligtvis e-postadresser." + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Ny lösenord kan inte vara samma som gammalt lösenord" @@ -16431,7 +16650,7 @@ msgstr "Ny värde att ange" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16439,19 +16658,19 @@ msgstr "Ny värde att ange" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Ny {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Ny {0} skapad" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Ny {0} {1} har lagts till i Översikt Panel {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Ny {0} {1} skapad" @@ -16463,52 +16682,17 @@ msgstr "Ny {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Nya {} versioner för följande appar finns tillgängliga" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "Nyskapad användare {0} har inga roller aktiverade." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Nyhetsbrev" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Nyhetsbrev Bilaga" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Nyhetsbrev E-post Grupp" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Nyhetsbrev Ansvarig" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Nyhetsbrev redan skickad" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "Nyhetsbrev måste publiceras för att skicka webbvylänk i E-post" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Nyhetsbrev ska ha minst en mottagare" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Nyhetsbrev" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16625,7 +16809,7 @@ msgstr "Nästa på Klick" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nej" @@ -16654,7 +16838,7 @@ msgid "No Copy" msgstr "Ingen Kopia" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16766,11 +16950,11 @@ msgstr "Inga Träffar" msgid "No Results found" msgstr "Inga Träffar" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Inga Roller Specificerade" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Ingen Välj Fält Hittad" @@ -16798,10 +16982,6 @@ msgstr "Inga varningar för idag" msgid "No automatic optimization suggestions available." msgstr "Ingen automatisk optimering förslag tillgänglig." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "Inga brutna länkar hittades i e-post" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Inga Ändringar" @@ -16838,7 +17018,7 @@ msgstr "Inga kontakter upplagda än." msgid "No contacts linked to document" msgstr "Inga Kontakter länkade till dokument" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Ingen Data att exportera" @@ -16858,7 +17038,7 @@ msgstr "Ingen E-post Konto kopplad till Användare. Lägg till konto under Anvä msgid "No failed logs" msgstr "Inga Misslyckade Logg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd Anpassa Formulär för att lägga till anpassat fält av typ \"Välj\"." @@ -16917,7 +17097,7 @@ msgstr "Antal Rader (Max 500)" msgid "No of Sent SMS" msgstr "Antal Skickade SMS" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "Ingen Behörighet för {0}" @@ -17010,6 +17190,12 @@ msgstr "Ej Negativ" msgid "Non-Conforming" msgstr "Ej Kompatibel" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Ingen" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Ingen: Slut på Arbetsflöde" @@ -17024,7 +17210,7 @@ msgstr "Normaliserade Kopior" msgid "Normalized Query" msgstr "Normaliserad Fråga" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Ej Tillåtet" @@ -17045,7 +17231,7 @@ msgstr "Ej Underordnad Av" msgid "Not Equals" msgstr "Inte Lika" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Hittades Inte" @@ -17071,16 +17257,16 @@ msgstr "Ej Länkad till någon post" msgid "Not Nullable" msgstr "Ej Nollställbar" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Inte Tillåtet" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "Ej Tillåtet att läsa {0}" @@ -17090,8 +17276,8 @@ msgstr "Ej Tillåtet att läsa {0}" msgid "Not Published" msgstr "Ej Publicerad" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17108,7 +17294,6 @@ msgstr "Ej Visad" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Ej Skickad" @@ -17125,7 +17310,7 @@ msgstr "Ej Angiven" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Ej giltig Komma Separerad Värde (CSV Fil)" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Ej giltig Användare Bild." @@ -17141,7 +17326,7 @@ msgstr "Ej giltig Användare" msgid "Not active" msgstr "Inte Aktiv" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "Ej tillåtet för {0}: {1}" @@ -17182,7 +17367,7 @@ msgstr "Ej i Utvecklar Läge! Ändra site_config.json eller skapa 'Anpassad' Doc #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Ej Tillåtet" @@ -17360,7 +17545,7 @@ msgstr "Avisera om Obesvarade för (i minuter)" msgid "Notify users with a popup when they log in" msgstr "Avisera Användare med Meddelande vid första Inloggning" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Nu" @@ -17503,6 +17688,11 @@ msgstr "OAuth Inställningar" msgid "OAuth Scope" msgstr "OAuth omfattning" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "OAuth Inställningar" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth är aktiverad men inte auktoriserad. Använd \"Auktorisera API Tillgång\" knapp för att göra detta." @@ -17575,6 +17765,10 @@ msgstr "Offset X" msgid "Offset Y" msgstr "Offset Y" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Förskjutning får inte vara negativt heltal" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Gammalt Lösenord" @@ -17646,7 +17840,7 @@ msgstr "På eller efter" msgid "On or Before" msgstr "På eller före" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "{0}, {1} skrev" @@ -17722,7 +17916,7 @@ msgstr "Endast Administratör kan redigera" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Endast Administratör kan spara standard rapport. Byt namn och spara." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Endast Administratör får använda Inspelare" @@ -17748,7 +17942,7 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor" msgid "Only allowed to export customizations in developer mode" msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "Endast utkast dokument kan ångras" @@ -17779,7 +17973,7 @@ msgstr "Endast rapporter av typ Report Generator kan redigeras" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Endast standard DocTypes får anpassas från Anpasning Formulär." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Endast administratör kan ta bort standard DocType." @@ -17787,7 +17981,7 @@ msgstr "Endast administratör kan ta bort standard DocType." msgid "Only the assignee can complete this to-do." msgstr "Endast den som tilldelats kan slutföra denna Att Göra." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Endast {0} e-post rapporter är tillåtna per Användare." @@ -17823,7 +18017,7 @@ msgstr "Öppna Awesomebar" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 #: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 msgid "Open Communication" -msgstr "Öppna Konversation" +msgstr "Öppna Kommunikation" #: frappe/templates/emails/new_notification.html:10 msgid "Open Document" @@ -17875,7 +18069,7 @@ msgstr "Öppna konsol" msgid "Open in a new tab" msgstr "Öppna i ny flik" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Öppna List Post" @@ -17920,7 +18114,7 @@ msgstr "Öppnad" msgid "Operation" msgstr "Åtgärd" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "Operatören måste vara en av {0}" @@ -17930,7 +18124,7 @@ msgstr "Operatören måste vara en av {0}" msgid "Optimize" msgstr "Optimera" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Optimerar bild..." @@ -18019,6 +18213,10 @@ msgstr "Orange" msgid "Order" msgstr "Order" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "Sortera Efter måste vara sträng" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18031,7 +18229,7 @@ msgstr "Bolag Historik" msgid "Org History Heading" msgstr "Bolag Historik Huvud Rubrik" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Orientering" @@ -18113,9 +18311,11 @@ msgstr "Ansvarig" msgid "PATCH" msgstr "PATCH" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18410,11 +18610,11 @@ msgstr "Överordnad Dokument Typ erfordras för att skapa ett Översikt Panel Di msgid "Parent is the name of the document to which the data will get added to." msgstr "Överordnad är namn på dokument som data kommer att läggas till." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "Gruppering av överordnad till underordnad eller underordnad till överordnad är inte tillåten." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Överordnad till underordnad eller underordnad till annan underordnad är inte tillåten." -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "Överordnad fält är inte specificerad i {0}: {1}" @@ -18474,11 +18674,11 @@ msgstr "Passiv" msgid "Password" msgstr "Lösenord" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Lösenord skickat via E-post" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Lösenord Återställning" @@ -18512,11 +18712,11 @@ msgstr "Lösenord saknas i E-post Konto" msgid "Password not found for {0} {1} {2}" msgstr "Lösenord hittades inte för {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e-post" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Lösenord angiven" @@ -18524,11 +18724,11 @@ msgstr "Lösenord angiven" msgid "Password size exceeded the maximum allowed size" msgstr "Lösenord längd överskred maximum tillåten längd." -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Lösenord längd överskred maximum tillåten längd." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Lösenord stämmer inte" @@ -18536,10 +18736,6 @@ msgstr "Lösenord stämmer inte" msgid "Passwords do not match!" msgstr "Lösenord stämmer inte!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Tidigare datum är inte tillåtna för Schemaläggning." - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Klistra In" @@ -18685,7 +18881,7 @@ msgstr "Godkänn {0}?" msgid "Permanently delete {0}?" msgstr "Permanent ta bort {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "Behörighet Fel" @@ -18794,22 +18990,22 @@ msgstr "Tillåtna Roller" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Personal" -msgstr "Personlig" +msgstr "Personal" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" -msgstr "Personlig Data Borttagning Begäran" +msgstr "Personligt Data Borttagning Begäran" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Personal Data Deletion Step" -msgstr "Personlig Data Borttagning Steg" +msgstr "Personligt Data Borttagning Steg" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "Personlig data Nedladdning Begäran" +msgstr "Personligt Data Nedladdning Begäran" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' @@ -18837,11 +19033,11 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon Nummer." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefon Nummer {0} som anges i fält {1} är inte giltig." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18899,7 +19095,7 @@ msgstr "Kopiera Webbplats Tema för att anpassa." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Installera ldap3 bibliotek via pip3 för att använda ldap funktion." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Skapa Diagram" @@ -18915,7 +19111,7 @@ msgstr "Lägg till ämne i E-post" msgid "Please add a valid comment." msgstr "Lägg till giltig kommentar." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Be Administratör att verifiera din registrering" @@ -18947,7 +19143,7 @@ msgstr "Kontrollera filter värden angivna för Översikt Panel Diagram: {}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Kontrollera värde för uppsättning 'Hämta från' för fält {0}" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Kontrollera din E-post för verifiering" @@ -19012,7 +19208,7 @@ msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Aktivera PopUp" @@ -19029,23 +19225,23 @@ msgstr "Aktivera {} innan du fortsätter." msgid "Please ensure that your profile has an email address" msgstr "Se till att din profil har E-post" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Ange Access Token URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Ange Auktorisering URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Ange Bas URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Ange Klient ID innan social inloggning är aktiverad" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "Ange Klient hemlighet innan social inloggning är aktiverad" @@ -19053,7 +19249,7 @@ msgstr "Ange Klient hemlighet innan social inloggning är aktiverad" msgid "Please enter OpenID Configuration URL" msgstr "Ange OpenID Konfiguration URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Ange omdirigering URL" @@ -19065,7 +19261,7 @@ msgstr "Ange giltig e-postadress." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Ange både din e-post och meddelande så att vi kan återkomma till dig. Tack!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Ange Lösenord" @@ -19078,11 +19274,11 @@ msgstr "Ange lösenordet för: {0}" msgid "Please enter valid mobile nos" msgstr "Ange mobil nummer" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Ange ny lösenord." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Ange ditt gamla lösenord." @@ -19098,7 +19294,7 @@ msgstr "Logga in för att lämna kommentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Kontrollera att Referens Dokument för Konversation inte är cirkulärt länkade." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "Uppdatera för att se senaste dokument." @@ -19110,10 +19306,6 @@ msgstr "Ta bort skrivare mappning i Skrivare Inställningar och försök igen." msgid "Please save before attaching." msgstr "Spara före bifoga." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Spara Nyhetsbrev före skicka" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Spara dokument före tilldelning" @@ -19142,11 +19334,11 @@ msgstr "Välj Entitet Typ" msgid "Please select Minimum Password Score" msgstr "Välj Minsta Lösenord Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Välj X och Y fält" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Välj landskod för fält {1}." @@ -19162,7 +19354,7 @@ msgstr "Välj fil eller URL" msgid "Please select a valid csv file with data" msgstr "Välj giltig CSV fil med data" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Välj giltig datum filter" @@ -19170,7 +19362,7 @@ msgstr "Välj giltig datum filter" msgid "Please select applicable Doctypes" msgstr "Välj tillämpliga DocTypes" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Välj minst en kolumn från {0} för att sortera/gruppera" @@ -19200,11 +19392,11 @@ msgstr "Ange E-postadress" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Ange skrivare mappning för detta utskrift format i Utskrift Inställningar" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Ange Filter" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Ange filter värde i Rapport Sortering Tabell." @@ -19218,7 +19410,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard." #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." -msgstr "Ange Nummer Serie som ska användas" +msgstr "Ange Namngivning Serie som ska användas." #: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" @@ -19228,7 +19420,7 @@ msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inst msgid "Please setup a message first" msgstr "Försäljning Order Meddelande" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Ange Standard E-post Konto från Inställningar > E-post > E-post Konto" @@ -19240,7 +19432,7 @@ msgstr "Ange standard utgående e-postkonto från Verktyg > E-postkonto" msgid "Please specify" msgstr "Specificera" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Ange giltig överordnad DocType för {0}" @@ -19277,14 +19469,19 @@ msgstr "Uppdatera {} innan du fortsätter." msgid "Please use a valid LDAP search filter" msgstr "Använd giltig LDAP Sökfilter" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Verifiera din e-postadress" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Använd följande länkar för att ladda ner säkerhetskopior." #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Besök https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key för mer information." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "Princip URI" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19330,7 +19527,7 @@ msgstr "Portal Meny Post" msgid "Portal Settings" msgstr "Portal Inställningar" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Porträtt" @@ -19374,6 +19571,10 @@ msgstr "Poster av {0}" msgid "Posts filed under {0}" msgstr "Poster arkiverade under {0}" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Potentiell farligt innehåll i sträng litteral: {0}" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19433,15 +19634,15 @@ msgstr "Förberedd Rapport Analys" msgid "Prepared Report User" msgstr "Förberedd Rapport Användare" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Förberedd Rapport Misslyckad" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Förbereder Rapport" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Lägg mall före e-post meddelande" @@ -19462,8 +19663,6 @@ msgstr "Tryck på Enter att Spara" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19498,7 +19697,7 @@ msgstr "Förhandsgransknig Läge" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" -msgstr "Förhandsgranskning av genererade namn" +msgstr "Förhandsvisning av skapade namn" #: frappe/public/js/frappe/views/render_preview.js:19 msgid "Preview on {0}" @@ -19508,7 +19707,7 @@ msgstr "Förhandsgranskning på {0}" msgid "Preview type" msgstr "Förhandsgranskning typ" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Förhandsgranska:" @@ -19579,16 +19778,16 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Utskrift" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Utskrift" @@ -19643,6 +19842,11 @@ msgstr "Utskrift Format Fel" msgid "Print Format Field Template" msgstr "Utskrift Format Fält Mall" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Utskriftsformat för" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19653,6 +19857,10 @@ msgstr "Utskrift Format Hjälp" msgid "Print Format Type" msgstr "Utskrift Format Typ" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "Utskriftsformat hittades inte" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Utskrift Format {0} är inaktiverad" @@ -19684,11 +19892,11 @@ msgstr "Dölj" msgid "Print Hide If No Value" msgstr "Dölj Utskrift om Ingen Värde" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Utskrift Språk" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "Utskrift Skickad till skrivare!" @@ -19706,7 +19914,7 @@ msgstr "Skrivar Server" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Utskrift Inställningar" @@ -19816,6 +20024,10 @@ msgstr "Privat" msgid "Private Files (MB)" msgstr "Privata Filer (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Privata Filer Säkerhetskopiering:" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19826,7 +20038,7 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }} msgid "Proceed" msgstr "Fortsätt" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Fortsätt Ändå" @@ -19851,7 +20063,7 @@ msgstr "Profil" msgid "Progress" msgstr "Framsteg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Projekt" @@ -19930,7 +20142,7 @@ msgstr "Leverantör Namn" #: frappe/public/js/frappe/views/interaction.js:78 #: frappe/public/js/frappe/views/workspace/workspace.js:440 msgid "Public" -msgstr "Publik" +msgstr "Allmän" #. Label of the public_files_size (Float) field in DocType 'System Health #. Report' @@ -19938,6 +20150,10 @@ msgstr "Publik" msgid "Public Files (MB)" msgstr "Allmänna Filer (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Allmänna Filer Säkerhetskopiering:" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19946,14 +20162,7 @@ msgstr "Allmänna Filer (MB)" msgid "Publish" msgstr "Publicera" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Publicera som Webbsida" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19961,7 +20170,6 @@ msgstr "Publicera som Webbsida" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20049,12 +20257,12 @@ msgstr "Lila" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "Tryck ut Avisering Inställningar" +msgstr "Skicka ut Avisering Inställningar" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notifications" -msgstr "Tryck ut Aviseringar" +msgstr "Skicka ut Aviseringar" #. Label of the push_to_google_calendar (Check) field in DocType 'Google #. Calendar' @@ -20085,7 +20293,7 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "QR kod för Inloggning Verifiering" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ Aktivitet Fält Misslyckades:" @@ -20182,7 +20390,6 @@ msgstr "Kö(er)" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "I Kö" @@ -20205,19 +20412,11 @@ msgstr "I Kö för Godkännade. Du kan spåra framsteg över {0}." msgid "Queued for backup. You will receive an email with the download link" msgstr "I Kö för Säkerhetskopiering. Du kommer att få E-post meddelande med hämtning länk" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr " I Kö {0} e-post meddelande" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Kö " -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "E-post i kö..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "I Kö {0} för Godkännade" @@ -20307,7 +20506,7 @@ msgstr "Bedömning" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "Rå Kommand" @@ -20342,7 +20541,7 @@ msgstr "Sv:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Sv: {0}" @@ -20418,7 +20617,7 @@ msgstr "Läst av Mottagare(Datum)" msgid "Read mode" msgstr "Läs läge " -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Läs dokumentation för att reda på mer" @@ -20438,7 +20637,7 @@ msgstr "Realtid (SocketIO)" msgid "Reason" msgstr "Anledning" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Uppdatera" @@ -20507,17 +20706,17 @@ msgstr "Mottagare" #. Name of a DocType #: frappe/core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "Inspelare" +msgstr "Inspelning" #. Name of a DocType #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" -msgstr "Inspelare Fråga" +msgstr "Inspelning Fråga" #. Name of a DocType #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json msgid "Recorder Suggested Index" -msgstr "Spela in Föreslagna Index" +msgstr "Inspelning Föreslagna Index" #: frappe/core/doctype/user_permission/user_permission_help.html:2 msgid "Records for following doctypes will be filtered" @@ -20584,12 +20783,12 @@ msgstr "Omdirigeringar" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "Redis server är inte igång . Kontakta Administratör / Teknisk support" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "Återskapa" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Återskapa senaste åtgärd" @@ -20803,11 +21002,11 @@ msgid "Referrer" msgstr "Referens" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20846,7 +21045,7 @@ msgstr "Uppdaterar" msgid "Refreshing..." msgstr "Uppdaterar..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Registrerad men inaktiverad" @@ -20895,7 +21094,7 @@ msgstr "Omlänkad" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Ladda om" @@ -20926,7 +21125,7 @@ msgstr "Kom ihåg Senast Valda Värde" msgid "Remind At" msgstr "Påminn Mig" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Påminn mig" @@ -21008,7 +21207,7 @@ msgstr "Borttagen" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21036,7 +21235,7 @@ msgstr "Rendera etikett till vänster och värde till höger i detta sektion" msgid "Reopen" msgstr "Öppna Igen" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Upprepa" @@ -21136,6 +21335,8 @@ msgstr "Svara Alla" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21151,8 +21352,11 @@ msgstr "Svara Alla" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Rapport" @@ -21221,7 +21425,7 @@ msgstr "Rapport Ansvarig" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Rapport Namn" @@ -21273,11 +21477,11 @@ msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn" msgid "Report has no numeric fields, please change the Report Name" msgstr "Rapport har inga numeriska fält, ändra rapport namn" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Rapport initierad, klicka för att se status" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Rapport gräns nådd" @@ -21285,7 +21489,7 @@ msgstr "Rapport gräns nådd" msgid "Report timed out." msgstr "Rapport förföll." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Rapport är uppdaterad" @@ -21293,7 +21497,7 @@ msgstr "Rapport är uppdaterad" msgid "Report was not saved (there were errors)" msgstr "Rapport är inte sparad (det fanns fel)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Rapport med mer än 10 kolumner ser bättre ut i Liggande Läge." @@ -21306,7 +21510,7 @@ msgstr "Rapport {0}" msgid "Report {0} deleted" msgstr "Rapport {0} raderad" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "Rapport {0} är inaktiverad" @@ -21329,7 +21533,7 @@ msgstr "Rapporter" msgid "Reports & Masters" msgstr "Rapporter & Inställningar" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Rapporter redan i Kö" @@ -21363,7 +21567,7 @@ msgstr "Begäran Beskrivning" #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Headers" -msgstr "Rubriker för Begäran" +msgstr "Begäran Rubriker" #. Label of the request_id (Data) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json @@ -21514,6 +21718,31 @@ msgstr "Återställ Standard" msgid "Reset your password" msgstr "Återställ ditt lösenord" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Resurs" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Resurs Dokumentation" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Resurs Namn" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "Resurs Princip URI" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "Resurs TOS URI" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21639,10 +21868,8 @@ msgstr "Återkalla" msgid "Revoked" msgstr "Återkallad" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21745,7 +21972,7 @@ msgstr "Roll Behörigheter" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" @@ -21779,7 +22006,7 @@ msgstr "Rollreplikering" msgid "Role and Level" msgstr "Roll och Nivå" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Rollen angiven enligt användare typ {0}" @@ -21853,7 +22080,6 @@ msgstr "Avrundning Sätt" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21867,7 +22093,6 @@ msgstr "Avrundning Sätt" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21894,7 +22119,7 @@ msgstr "Sökväg Omdirigeringar" msgid "Route: Example \"/app\"" msgstr "Sökväg: Exempel \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Rad" @@ -21985,7 +22210,7 @@ msgstr "Regel" msgid "Rule Conditions" msgstr "Regel Villkor" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Regel för denna kombination av doctype, roll, åtkomstnivå och om ansvarig redan finns." @@ -22174,12 +22399,12 @@ msgstr "Lördag" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22206,7 +22431,7 @@ msgstr "Spara Som" msgid "Save Customizations" msgstr "Spara Anpassningar" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Spara Rapport" @@ -22225,7 +22450,7 @@ msgstr "Spara Dokument ==>" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22270,32 +22495,17 @@ msgstr "Skanna QR Kod och ange resulterande koden som visas." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Schema" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Schemalägg Nyhetsbrev" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Datum och Tid att Skicka" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Schemalägg Skicka" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Schemalägg Skicka vid senare tillfälle" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Schemalagd" @@ -22329,17 +22539,6 @@ msgstr "Schemalagd Jobb" msgid "Scheduled Jobs Logs" msgstr "Schemalagda Jobb Logg" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Schemalagd Sändning" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Schemalagd Att Skicka" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "Schemalagd körning av Skript {0} är uppdaterad" @@ -22408,6 +22607,11 @@ msgstr "Omfatning" msgid "Scopes" msgstr "Omfattningar" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Omfattningar som Stöds" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22551,6 +22755,11 @@ msgstr "Sök..." msgid "Searching ..." msgstr "Söker..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekunder" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22598,7 +22807,7 @@ msgstr "Säkerhet Inställningar" msgid "See all Activity" msgstr "Visa All Aktivitet" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Visa alla tidigare rapporter." @@ -22666,8 +22875,8 @@ msgstr "Välj i Listan" msgid "Select All" msgstr "Välj Alla" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22683,7 +22892,7 @@ msgid "Select Column" msgstr "Välj Kolumn" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Välj Kolumner" @@ -22733,7 +22942,7 @@ msgstr "Välj Dokument Typer för att ange vilka användarbehörigheter som anv #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Välj Fält" @@ -22804,7 +23013,7 @@ msgid "Select Page" msgstr "Välj Sida" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Välj Utskrift Mall" @@ -22896,13 +23105,13 @@ msgstr "Välj minst en post för utskrift" msgid "Select atleast 2 actions" msgstr "Välj minst två åtgärder" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Välj List Artikel" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Välj flera List Artiklar" @@ -22940,9 +23149,7 @@ msgstr "Välj {0}" msgid "Self approval is not allowed" msgstr "Ej Tillåtet att godkänna själv " -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Skicka" @@ -22973,11 +23180,6 @@ msgstr "Skicka Avisering" msgid "Send Email Alert" msgstr "Skicka E-post Avisering" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "Skicka E-post" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23025,7 +23227,7 @@ msgstr "Skicka Nu" msgid "Send Print as PDF" msgstr "Skicka Utskrift som PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Skicka Läskvitto" @@ -23035,38 +23237,16 @@ msgstr "Skicka Läskvitto" msgid "Send System Notification" msgstr "Skicka System Avisering" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Skicka test e-post" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Skicka till alla Tilldelade" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Skicka Avregistrering Länk" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Skicka Webb Vy Länk" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Skicka Välkomst E-post" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Skicka test e-post" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Skicka igen" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23110,14 +23290,10 @@ msgstr "Skicka Förfrågningar till denna E-post" msgid "Send login link" msgstr "Skicka Inloggning Länk" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Skicka Kopia till mig" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Skicka nu" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23133,19 +23309,15 @@ msgstr "Skicka Avregistrering Meddelande i E-post" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Avsändare" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Avsändare E-post" @@ -23162,9 +23334,7 @@ msgid "Sender Field should have Email in options" msgstr "Avsändare Fält ska ha E-post i Alternativ" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Avsändare Namn" @@ -23184,18 +23354,9 @@ msgstr "Sendgrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Skickar" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "Skickar e-post" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Skickar..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23203,8 +23364,6 @@ msgstr "Skickar..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Skickad" @@ -23254,27 +23413,27 @@ msgstr "Sekvens ID" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Series List for this Transaction" -msgstr "Nummer Serie Lista för denna Transaktion" +msgstr "Namngivning Serie Lista för denna Transaktion" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" -msgstr "Nummer Serie uppdaterad för {}" +msgstr "Namngivning Serie uppdaterad för {}" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" -msgstr "Nummer Serie räknare för {} är uppdaterad till {}" +msgstr "Namngivning Serie räknare för {} är uppdaterad till {}" #: frappe/core/doctype/doctype/doctype.py:1109 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" -msgstr "Nummer Serie {0} används redan i {1}" +msgstr "Namngivning Serie {0} används redan i {1}" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Server Action" msgstr "Server Åtgärd" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Server Fel" @@ -23293,7 +23452,7 @@ msgstr "Server IP" msgid "Server Script" msgstr "Server Skript" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench." @@ -23332,15 +23491,15 @@ msgstr "Session Standard Inställningar" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Session Inställningar" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Session Inställningar Sparade" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Session Förföll" @@ -23372,7 +23531,7 @@ msgstr "Ange" msgid "Set Banner from Image" msgstr "Ange Banderoll från Bild" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Skapa Diagram" @@ -23398,7 +23557,7 @@ msgstr "Ange Filter" msgid "Set Filters for {0}" msgstr "Ange Filter för {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Ange Nivå" @@ -23410,7 +23569,7 @@ msgstr "Ange gräns" #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "Ange Nummer Serie alternativ för transaktioner" +msgstr "Ange Namngivning Serie alternativ för transaktioner." #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23469,7 +23628,7 @@ msgstr "Ange som Privat" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" -msgstr "Ange som Publik" +msgstr "Ange som Allmän" #: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" @@ -23594,7 +23753,7 @@ msgstr "Konfigurerar System" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23640,7 +23799,7 @@ msgstr "Inställningar > Användare" msgid "Setup > User Permissions" msgstr "Inställningar > Användar Behörigheter" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Automatisk E-post Rapport" @@ -23655,7 +23814,7 @@ msgstr "Konfigurering Klar" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" -msgstr "Ange Nummer Serie för Transaktioner" +msgstr "Ange Namngivning Serie för Transaktioner" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" @@ -23729,6 +23888,8 @@ msgstr "Genvägar" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Visa" @@ -23755,6 +23916,12 @@ msgstr "Visa Absoluta Värden" msgid "Show All" msgstr "Visa Alla" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Visa Auth Server Metadata" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Visa Kalender" @@ -23835,7 +24002,7 @@ msgstr "Visa Språk Väljare" msgid "Show Line Breaks after Sections" msgstr "Visa Rad Brytningar efter Sektioner" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Visa Länkar" @@ -23872,6 +24039,12 @@ msgstr "Visa Förhandsgranska Pop-upp" msgid "Show Processlist" msgstr "Visa Process Lista" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Visa Skyddade Resurser Metadata" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "Visa Relaterade Fel" @@ -23898,8 +24071,14 @@ msgstr "Visa Sektion Huvud Rubriker" msgid "Show Sidebar" msgstr "Visa Sidofält" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Visa Social Inloggningsnyckel som Auktorisering Server" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Visa Taggar" @@ -23928,6 +24107,12 @@ msgstr "Visa Formulär Tur" msgid "Show Traceback" msgstr "Visa Spårning" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Visa Värden över Diagram" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Visa Varningar" @@ -23981,6 +24166,12 @@ msgstr "Visa Fullständig Formulär istället för Snabbt Redigering Läge" msgid "Show in Module Section" msgstr "Visa i Modul Sektion" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Visa i Resurs Metadata" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24061,12 +24252,12 @@ msgstr "Sidofält och Kommentarer" msgid "Sign Up and Confirmation" msgstr "Registrering och Bekräftelse" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Registrering är inaktiverad" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Registrera" @@ -24152,8 +24343,10 @@ msgstr "Hoppa Över" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Hoppa Över Auktorisering" @@ -24317,6 +24510,16 @@ msgstr "SocketIO Transport Sätt" msgid "Soft-Bounced" msgstr "Soft-Bounced" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "Programvara" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Programvaruversion" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "Vissa kolumner kan utelämnas vid utskrift till PDF. Försök hålla antal kolumner under 10." @@ -24384,7 +24587,7 @@ msgstr "Sortering Fält {0} måste vara giltig fält namn" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24474,7 +24677,7 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kan inte tas bort." @@ -24490,7 +24693,7 @@ msgstr "Standard Ej Angiven" msgid "Standard Permissions" msgstr "Standard Behörigheter" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Standard Utskrift Format kan inte uppdateras" @@ -24677,7 +24880,6 @@ msgstr "Statistik Tid Intervall" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24702,7 +24904,6 @@ msgstr "Statistik Tid Intervall" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24713,7 +24914,7 @@ msgstr "Statistik Tid Intervall" msgid "Status" msgstr "Status" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Status Uppdaterad" @@ -24843,8 +25044,6 @@ msgstr "Underdomän" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24853,10 +25052,9 @@ msgstr "Underdomän" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Ämne" @@ -24895,7 +25093,7 @@ msgstr "Godkännande Kö" msgid "Submit" msgstr "Godkänn" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Godkänn" @@ -24953,7 +25151,7 @@ msgstr "Godkänn detta dokument för att slutföra detta steg." msgid "Submit this document to confirm" msgstr "Tryck på Spara/Godkänn för att genomföra." -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Godkänn {0} dokument?" @@ -25047,7 +25245,7 @@ msgstr "Klart Meddelande" msgid "Success title" msgstr "Klart Benämning" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Klart! 👍" @@ -25102,7 +25300,7 @@ msgstr "Föreslå Optimeringar" msgid "Suggested Indexes" msgstr "Föreslagen Indexering" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Föreslagen Användarnamn: {0}" @@ -25115,7 +25313,7 @@ msgstr "Föreslagen Användarnamn: {0}" msgid "Sum" msgstr "Summa" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Summa av {0}" @@ -25224,7 +25422,7 @@ msgstr "Synkroniserar" msgid "Syncing {0} of {1}" msgstr "Synkroniserar {0} av {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Syntaxfel" @@ -25402,6 +25600,7 @@ msgstr "System Logg" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25461,6 +25660,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "TOS URI" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25531,7 +25735,7 @@ msgstr "Tabell Optimerad" msgid "Table updated" msgstr "Tabell Uppdaterad" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tabell {0} kan inte vara tom" @@ -25639,7 +25843,7 @@ msgstr "Mall Varningar" msgid "Templates" msgstr "Mallar" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Tillfälligt Inaktiverad" @@ -25658,10 +25862,6 @@ msgstr "Test Jobb ID" msgid "Test Spanish" msgstr "Testa Spanska" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Test E-post skickad till {0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test Mapp" @@ -25729,10 +25929,6 @@ msgstr "Tack för din E-post" msgid "Thank you for your feedback!" msgstr "Tack för återkoppling!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Tack för prenumereration på vårt nyghetsbrev" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Tack för ditt meddelande" @@ -25770,7 +25966,7 @@ msgstr "Nästa Schemalagda datum kan inte vara senare än Slut Datum." #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" -msgstr "Tryck ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration" +msgstr "Skicka ut Relä Server URL nyckel (`push_relay_server_url`) saknas i webbplats konfiguration" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 msgid "The User record for this request has been auto-deleted due to inactivity by system admins." @@ -25797,7 +25993,7 @@ msgid "The browser API key obtained from the Google Cloud Console under \"API och tjänster\" > \"Inloggning Uppgifter\"" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Ändringarna är återställda." @@ -25855,11 +26051,11 @@ msgstr "Följande Tilldelning Dagar är återkommande: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "Följande Brevhuvud Skript kommer att lägga till aktuell datum till ett element i \"Brevhuvud HTML\" med klass \"header-content\"" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Följande värden är ogiltiga: {0}. Värden måste vara en av {1}" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "Följande värden finns inte för {0}: {1}" @@ -25898,7 +26094,7 @@ msgstr "Nästa Formulär Tur börjar där användare slutade." msgid "The number of seconds until the request expires" msgstr "Antal sekunder tills begäran upphör att gälla" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Ditt Konto Lösenord har gått ut." @@ -25915,15 +26111,15 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under " -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Länk för återställning av lösenord har upphört att gälla" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Länk för återställning av lösenord har antingen använts tidigare eller är ogiltig" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs är inte tillgänglig" @@ -25935,7 +26131,7 @@ msgstr "Roll {0} ska vara anpassad roll." msgid "The selected document {0} is not a {1}." msgstr "Vald dokument {0} är inte {1}." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Systemet håller på att uppdateras. Uppdatera igen efter en stund." @@ -25996,7 +26192,7 @@ msgstr "Det finns inga kommande händelser för dig." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Det finns inga {0} för denna {1}, varför startar du inte en!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter redan i kö:" @@ -26025,7 +26221,7 @@ msgstr "Det finns inget nytt att visa dig just nu." msgid "There is some problem with the file url: {0}" msgstr "Det finns problem med fil url: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter som redan finns i kö:" @@ -26049,13 +26245,13 @@ msgstr "Det fanns fel" msgid "There were errors while creating the document. Please try again." msgstr "Det fanns fel när dokument skapades . Försök igen." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "Det fanns fel när e-post skickades. Försök igen." #: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" -msgstr "Det uppstod några fel vid namn angivning, kontakta administratören" +msgstr "Det uppstod några fel vid namngivning, kontakta administratör" #. Description of the 'Announcement Widget' (Text Editor) field in DocType #. 'Navbar Settings' @@ -26063,6 +26259,12 @@ msgstr "Det uppstod några fel vid namn angivning, kontakta administratören" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Dessa meddelande kommer att visas i en avviserbar varning under Navigering fält." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Dessa fält används för att tillhandahålla resurs server metadata till klienter som frågar slutpunkt för \"välkänd skyddad resurs\"." + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26088,7 +26290,7 @@ msgstr "Tredje Parts Autentisering" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Denna Valuta är inaktiverad. Aktivera det att använda i transaktioner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Detta Anslagstavla Bord kommer att vara privat" @@ -26112,7 +26314,7 @@ msgstr "I År" msgid "This action is irreversible. Do you wish to continue?" msgstr "Denna åtgärd är oåterkallelig. Vill du fortsätta?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Åtgärd är endast tillåten för {}" @@ -26139,7 +26341,7 @@ msgstr "Denna doctype har inga övergivna fält att trimma" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Denna doctype har pågående migrering, kör 'bench migrate' innan du ändrar doctype för att undvika att förlora ändringar." -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Detta dokument kan inte tas bort just nu eftersom det ändras av en annan användare. Försök igen senare." @@ -26155,7 +26357,7 @@ msgstr "Detta dokument har osparade ändringar som kanske inte visas i slutlig P msgid "This document is already amended, you cannot ammend it again" msgstr "Detta dokument är redan ändrad, du kan inte ändra det igen" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Detta dokument är för närvarande låst och står i kö för exekvering. Försök igen senare." @@ -26194,7 +26396,7 @@ msgstr "Den här filen är offentlig och kan nås av vem som helst, även utan a #: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." -msgstr "Denna fil är publik. Den kan nås utan autentisering." +msgstr "Denna fil är allmän fil. Den kan nås utan autentisering." #: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" @@ -26219,7 +26421,7 @@ msgstr "Denna geolokalisering leverantör stöds inte ännu." msgid "This goes above the slideshow." msgstr "Text ovanför Bildspel." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Detta är bakgrund rapport. Ange lämplig filter och skapa ny rapport." @@ -26275,15 +26477,7 @@ msgstr "Detta kan skrivas ut på flera sidor" msgid "This month" msgstr "Nuvarande Månad" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Detta nyhetsbrev är planerat att skickas {0}" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Detta nyhetsbrev var planerat att skickas vid ett senare datum. Är du säker på att du vill skicka den nu?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället." @@ -26291,7 +26485,7 @@ msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i w msgid "This report was generated on {0}" msgstr "Rapport skapades {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Denna rapport skapades {0}." @@ -26357,7 +26551,7 @@ msgstr "Detta återställer Formulär Tur och visar den för alla användare. Ä msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Detta avslutar jobb omedelbart och kan vara farligt, är du säker?" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "Strypt" @@ -26395,7 +26589,6 @@ msgstr "Torsdag" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Tid" @@ -26415,12 +26608,12 @@ msgstr "Tid Intervall" #. Label of the timeseries (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series" -msgstr "Tid Nummer Serie" +msgstr "Tid Namngivning Serie" #. Label of the based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series Based On" -msgstr "Tid Nummer Serie Baserad på" +msgstr "Tid Namngivning Serie Baserad på" #. Label of the time_taken (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -26465,7 +26658,7 @@ msgstr "Tid i sekunder att behålla QR Kod Bild på server. Min: 240\n" "
" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "För att tillåta fler rapporter uppdatera gräns i System Inställningar." @@ -26712,7 +26903,7 @@ msgstr "För att exportera detta steget som JSON, länka det till Introduktion d msgid "To generate password click {0}" msgstr "För att generera lösenord klicka på {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Klicka på {0} att hämta uppdaterad rapport." @@ -26787,7 +26978,7 @@ msgstr "Växla Rutnät Vy" msgid "Toggle Sidebar" msgstr "Växla Sidofält" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Växla Sidofält" @@ -26808,6 +26999,12 @@ msgstr "Token" msgid "Token Cache" msgstr "Token Cache" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Token Slutpunkt Auth Metod" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26835,7 +27032,7 @@ msgstr "För Många Dokument" msgid "Too Many Requests" msgstr "För Många Begäran" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "För många ändringar i databas i en enda åtgärd." @@ -26843,7 +27040,7 @@ msgstr "För många ändringar i databas i en enda åtgärd." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "För många bakgrundsjobb i kö ({0}). Försök igen efter en tid." -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Alltför många Användare registrerade sig nyligen, så registrering är inaktiverad. Försök igen om en timme" @@ -26905,9 +27102,9 @@ msgstr "Topp Höger" msgid "Topic" msgstr "Ämne" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Totalt" @@ -26933,16 +27130,8 @@ msgstr "Totalt Antal Bilder" msgid "Total Outgoing Emails" msgstr "Totalt Utgående E-post " -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Totalt Antal Mottagare" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Totalt Antal Prenumeranter" @@ -26951,11 +27140,6 @@ msgstr "Totalt Antal Prenumeranter" msgid "Total Users" msgstr "Totalt Användare" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Totalt Antal Visningar" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27043,7 +27227,7 @@ msgstr "Spåra milstolpar för alla dokument" msgid "Tracking" msgstr "Spårning" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "Spårning URL skapad och kopierad till urklipp" @@ -27090,7 +27274,7 @@ msgstr "Övergångar" msgid "Translatable" msgstr "Översättningbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "Översätt Data" @@ -27123,6 +27307,11 @@ msgstr "Översättning" msgid "Translations" msgstr "Översättningar" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Översättare" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27178,7 +27367,7 @@ msgstr "Försök igen" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" -msgstr "Prova Nummer Serie" +msgstr "Prova Namngivning Serie" #: frappe/printing/page/print/print.js:189 #: frappe/printing/page/print/print.js:195 @@ -27345,33 +27534,65 @@ msgstr "URL för dokumentation eller hjälp" msgid "URL must start with http:// or https://" msgstr "URL måste börja med http:// eller https://" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL till läsbar sida med information som utvecklare kan behöva." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL till webbsida som innehåller information om klient." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL till läsbar sida med information om skyddad resurs användarvillkor." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL till läsbar sida med information om krav på hur klient kan använda data." + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "Sida URL" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL med läsbar princip dokument för klient. Ska visas för slutanvändare före auktorisering." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL med läsbar dokument med användarvillkor för klient. Ska visas för slutanvändare före auktorisering." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL som refererar till logotyp för klient." + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "Omdirigering URL när du klickar på Bildspel Bild" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM Kampanj" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM Medium" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM Källa" @@ -27404,7 +27625,7 @@ msgstr "Kan inte öppna bifogad fil. Är den exporterad som CSV?" msgid "Unable to read file format for {0}" msgstr "Kan inte läsa fil format för {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Kunde inte att skicka e-post på grund av att standard e-post konto saknas. Ange standard e-post konto från Inställningar > E-post Konto" @@ -27421,7 +27642,7 @@ msgstr "Kunde inte skriva fil format för {0}" msgid "Unassign Condition" msgstr "Inaktivera Villkor" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "Ofångat Undantag" @@ -27429,16 +27650,20 @@ msgstr "Ofångat Undantag" msgid "Unchanged" msgstr "Oförändrad" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Ångra" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Ångra Senaste Åtgärd" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Oescapede citattecken i sträng literal: {0}" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Sluta Följa" @@ -27461,6 +27686,15 @@ msgstr "Ohanterad E-post " msgid "Unique" msgstr "Unik" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "Unikt ID som tilldelas av klient utvecklare och som används för att identifiera klientprogramvara som ska registreras dynamiskt.\n" +"
\n" +"Ska förbli detsamma för flera versioner eller uppdateringar av programvara." + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Okänd" @@ -27469,7 +27703,7 @@ msgstr "Okänd" msgid "Unknown Column: {0}" msgstr "Okänd Kolumn: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Okänd Avrundning Sätt: {}" @@ -27516,7 +27750,7 @@ msgstr "Avmarkera Alla" msgid "Unshared" msgstr "Odelad" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Avregistrera" @@ -27536,10 +27770,15 @@ msgstr "Avregistrering Parameter" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Avregistrerad" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Namnlös Kolumn" @@ -27578,7 +27817,7 @@ msgstr "Uppdatera" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "Uppdatera Ändring Namn" +msgstr "Uppdatera Ändrad Namngivning" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -27608,13 +27847,13 @@ msgstr "Uppdatera lösenord" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "Uppdatera Nummer Serie Räknare" +msgstr "Uppdatera Namngivning Serie Räknare" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "Uppdatera Nummer Serie Sekvens" +msgstr "Uppdatera Namngivning Serie Sekvens" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -27662,7 +27901,7 @@ msgstr "Uppdaterad till ny Version 🎉" msgid "Updated successfully" msgstr "Uppdaterad" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Uppdaterar" @@ -27677,7 +27916,7 @@ msgstr "Uppdatera E-post kö status. E-post kommer att hämtas vid nästa schema #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" -msgstr "Uppdatering av räknare kan leda till dokument namn konflikter om det inte görs på rätt sätt" +msgstr "Uppdatering av räknare kan leda till dokument namngivning konflikter om det inte görs på rätt sätt" #: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" @@ -27685,7 +27924,7 @@ msgstr "Uppdaterar Standard Inställningar" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" -msgstr "Uppdaterar Nummer Serie Alternativ" +msgstr "Uppdaterar Namngivning Serie Alternativ" #: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." @@ -27940,7 +28179,7 @@ msgstr "Användare kan inte Skapa" msgid "User Cannot Search" msgstr "Användare kan inte Söka" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Användare Ändrad" @@ -28046,12 +28285,12 @@ msgstr "Användare Behörighet" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Användare Behörigheter" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Användare Behörigheter" @@ -28152,15 +28391,15 @@ msgstr "Användare med E-post {0} finns inte" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "Användare med E-post: {0} finns inte. Be 'System Administratör' om hjälp." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Användare {0} kan inte tas bort" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Användare {0} kan inte inaktiveras" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Användare {0} kan inte byta namn" @@ -28181,7 +28420,7 @@ msgstr "Användare {0} har inte behörighet att skapa Arbetsyta." msgid "User {0} has requested for data deletion" msgstr "Användare {0} begärde radering av data" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "Användare {0} efterliknade som {1}" @@ -28210,7 +28449,7 @@ msgstr "Användare Info URI" msgid "Username" msgstr "Användarnamn" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Användare Namn {0} finns redan" @@ -28350,15 +28589,15 @@ msgstr "Värde Ändrad" msgid "Value To Be Set" msgstr "Värde som ska Anges" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Värde kan inte ändras för {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Värde kan inte vara negativ för" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "Värde kan inte vara negativ för {0}: {1}" @@ -28384,6 +28623,12 @@ msgstr "Värde från detta fältet kommer att anges som Förfallo Datum i Att-G msgid "Value must be one of {0}" msgstr "Värde måste vara ett av {0}" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Värdet \"None\" innebär allmän klient. I ett sådant fall ges inte Klient Hemlighet till klient och token utbyte använder PKCE." + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28397,7 +28642,7 @@ msgstr "Värde för hög" msgid "Value {0} missing for {1}" msgstr "Värde {0} saknas för {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Värde {0} måste ha giltig varaktighet format: d h m s" @@ -28477,7 +28722,7 @@ msgstr "Visa" msgid "View All" msgstr "Visa Alla" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Visa Audit Spår" @@ -28637,7 +28882,7 @@ msgstr "Varning: DATAFÖRLUST ÖVERHÄNGANDE! Om du fortsätter kommer följande #: frappe/core/doctype/doctype/doctype.py:1125 msgid "Warning: Naming is not set" -msgstr "Varning: Namngivning är inte satt" +msgstr "Varning: Namngivning är inte angiven" #: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" @@ -28646,7 +28891,7 @@ msgstr "Varning: Kan inte hitta {0} i någon tabell relaterad till {1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" -msgstr "Varning: Uppdatering av räknare kan leda till dokument namn konflikter om det inte görs på rätt sätt" +msgstr "Varning: Uppdatering av räknare kan leda till dokument namngivning konflikter om det inte görs på rätt sätt" #: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" @@ -28721,7 +28966,7 @@ msgstr "Webbsida" msgid "Web Page Block" msgstr "Webbsida Avsnitt" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "Webbsida URL" @@ -28764,6 +29009,7 @@ msgstr "Webb Vy" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28822,7 +29068,6 @@ msgstr "Webhook URL" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28830,9 +29075,7 @@ msgid "Website" msgstr "Webbplats" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Webbplats Analys" @@ -29032,11 +29275,11 @@ msgstr "Välkommen URL" msgid "Welcome Workspace" msgstr "Välkommen Arbetsyta" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Välkomst E-post skickad" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Välkommen till {0}" @@ -29122,7 +29365,7 @@ msgstr "Kommer visas bara om sektion rubriker är aktiverade" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Kör schemalagda jobb endast en gång om dagen för inaktiva webbplatser. Ange som 0 för att undvika att schemaläggare inaktiveras automatiskt." -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Med Brevhuvud" @@ -29263,12 +29506,12 @@ msgstr "Arbetsflöde är uppdaterad" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Arbetsyta" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Arbetsyta {0} finns inte" @@ -29390,7 +29633,7 @@ msgstr "Y Axel Fält" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y Fält" @@ -29451,7 +29694,7 @@ msgstr "Gul" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29491,11 +29734,11 @@ msgstr "Du efterliknar som en annan användare." msgid "You are not allowed to access this resource" msgstr "Du har inte behörighet att komma åt denna resurs" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i fält {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i rad {3}, fält {4}" @@ -29518,7 +29761,7 @@ msgstr "Du har inte behörighet att redigera rapport." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Du har inte behörighet att exportera {} doctype" @@ -29526,11 +29769,11 @@ msgstr "Du har inte behörighet att exportera {} doctype" msgid "You are not allowed to print this report" msgstr "Du har inte behörighet att skriva ut denna rapport" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Du har inte behörighet att skicka e-post i kopplad till detta dokument" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument" @@ -29546,7 +29789,7 @@ msgstr "Du har inte behörighet att komma åt denna sida utan inloggning." msgid "You are not permitted to access this page." msgstr "Du har inte behörighet att komma åt den här sidan." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att komma åt" @@ -29554,7 +29797,7 @@ msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att ko msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Du följer nu detta dokument och kommer att få dagliga uppdateringar via e-post. Ändra detta i Användare Inställningar." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Du får bara uppdatera ordning, inte ta bort eller lägga till appar." @@ -29599,7 +29842,7 @@ msgstr "Ändra lagring regel från {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Du kan fortsätta med Introduktion efter att utforskning av denna sida" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Du kan inaktivera denna {0} istället för att ta bort." @@ -29641,7 +29884,7 @@ msgstr "Välja en från följande," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Ange ett högt värde här om flera användare kommer att logga in från samma nätverk." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Du kan försöka ändra Filter i Rapport." @@ -29718,11 +29961,15 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "Du har inte behörighet att slutföra åtgärd" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "Du har inte åtkomstbehörighet till fält: {0}" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "Du har inte behörighet att komma åt {0}: {1}." @@ -29730,19 +29977,19 @@ msgstr "Du har inte behörighet att komma åt {0}: {1}." msgid "You do not have permissions to cancel all linked documents." msgstr "Du har inte behörighet att annullera alla länkade dokument." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Du har inte behörighet till Rapport: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "Du har inte behörighet att komma åt {0} DocType." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Du har inte behörighet att komma åt den här filen" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "Du har inte behörighet att hämta rapport {0}" @@ -29807,21 +30054,21 @@ msgstr "Du ändrade detta" msgid "You must add atleast one link." msgstr "Du måste lägga till minst en länk." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Du måste vara inloggad för att använda detta formulär." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Du måste logga in för att godkänna detta formulär" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "Du behöver '{0}' behörighet på {1} {2} för att utföra denna åtgärd." #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." -msgstr "Du måste vara Arbetsyta Ansvarig för att ta bort publik arbetsyta." +msgstr "Du måste vara Arbetsyta Ansvarig för att ta bort allmän arbetsyta." #: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" @@ -29835,7 +30082,7 @@ msgstr "Du måste vara systemanvändare för att komma åt denna sida." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Du måste vara i Utvecklarläge att redigera Standard Webb Formulär" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha tillgång till säkerhetskopior." @@ -29918,7 +30165,7 @@ msgstr "Du slutade följa detta dokument" msgid "You viewed this" msgstr "Du visade detta" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Inloggad som annan användare från annan flik. Uppdatera dennna sidan för att fortsätta använda system." @@ -29959,11 +30206,11 @@ msgstr "Konto är låst och kommer att låsas upp efter {0} sekunder" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "Din tilldelning {0} {1} togs bort av {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Webbläsare stöder inte ljud element." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Webbläsare stöder inte video element." @@ -29983,11 +30230,11 @@ msgstr "Ditt formulär är uppdaterad" msgid "Your login id is" msgstr "Ditt Inlogging ID är" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Ditt lösenord är ändrad." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Ditt gamla lösenord är felaktig." @@ -30001,7 +30248,7 @@ msgstr "Bolag Namn och Adress för E-post Sidfot." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Din session har gått ut, logga in igen för att fortsätta." @@ -30013,7 +30260,7 @@ msgstr "Webbplats genomgår underhåll eller uppdateras." msgid "Your verification code is {0}" msgstr "Din verifiering kod är {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Noll" @@ -30037,7 +30284,7 @@ msgstr "_doctype" msgid "_report" msgstr "_rapport" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "\"as_iterator\" fungerar bara med \"as_list=True\" eller \"as_dict=True\"" @@ -30060,7 +30307,7 @@ msgstr "efter_infoga" msgid "amend" msgstr "ändra" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "och" @@ -30117,8 +30364,8 @@ msgstr "skapa" msgid "cyan" msgstr "cyan" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "d" @@ -30232,7 +30479,7 @@ msgstr "E-post" msgid "email inbox" msgstr "e-post inkorg" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "tom" @@ -30284,8 +30531,8 @@ msgstr "grå" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip hittades inte i SÖKVÄG! Erfordras för att skapa säkerhetskopia." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" @@ -30318,7 +30565,7 @@ msgstr "användare@bolag" msgid "just now" msgstr "just nu" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "etikett" @@ -30358,8 +30605,8 @@ msgstr "Inloggning Erfordras " msgid "long" msgstr "lång" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "m" @@ -30548,8 +30795,8 @@ msgstr "svar" msgid "restored {0} as {1}" msgstr "återställde {0} som {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30842,7 +31089,7 @@ msgstr "{0} Ej Tillåtet att ändra {1} efter godkännande från {2} till {3}" msgid "{0} Report" msgstr "{0} Rapport" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} Rapporter" @@ -30883,7 +31130,7 @@ msgstr "{0} redan avregistrerad" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} redan avregistrerad för {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} och {1}" @@ -30891,7 +31138,7 @@ msgstr "{0} och {1}" msgid "{0} are currently {1}" msgstr "{0} är för närvarande {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} erfordras" @@ -30921,7 +31168,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} annullerade detta dokument {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} kan inte ändras eftersom det inte är annullerat. Annullera dokument innan du skapar ändring." @@ -30989,7 +31236,11 @@ msgstr "{0} finns inte på rad {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} fält kan inte anges som unikt i {1}, eftersom det inte finns unika befintliga värden" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "{0} fält får inte innehålla bakåttecken (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "{0} format kunde inte fastställas från värden i denna kolumn. Standard Inställning är {1}." @@ -31009,11 +31260,7 @@ msgstr "{0} h" msgid "{0} has already assigned default value for {1}." msgstr "{0} är redan tilldelat standard värde för {1}." -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} är lagd till E-post Grupp." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} har lämnat konversation i {1} {2}" @@ -31083,6 +31330,10 @@ msgstr "{0} är som {1}" msgid "{0} is mandatory" msgstr "{0} är erfodrad" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "{0} är inte undertabell till {1}" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0} är inte ett fält av doctype {1}" @@ -31104,7 +31355,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} är inte en giltig DocType för Dynamisk Länk" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} är inte giltig E-post" @@ -31112,11 +31363,11 @@ msgstr "{0} är inte giltig E-post" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} är inte giltig ISO 3166 ALPHA-2 kod." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} är inte giltigt Namn" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} är inte giltigt Telefon Nummer" @@ -31124,15 +31375,15 @@ msgstr "{0} är inte giltigt Telefon Nummer" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} är inte giltig tillstånd för Arbetsflöde. Uppdatera Arbetsflöde och försök igen." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0} är inte en giltig överordnad DocType för {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0} är inte ett giltigt överordnat fält för {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av följande {1}" @@ -31156,7 +31407,7 @@ msgstr "{0} är inte en av {1}" msgid "{0} is not set" msgstr "{0} är inte angiven" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} är nu standard utskrift format för {1} DocType" @@ -31166,7 +31417,8 @@ msgstr "{0} är en av {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} erfordras" @@ -31179,11 +31431,11 @@ msgstr "{0} är angiven" msgid "{0} is within {1}" msgstr "{0} är inom {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} artiklar valda" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} efterliknade som du. De gav detta skäl: {1}" @@ -31216,23 +31468,23 @@ msgstr "{0} minuter sedan" msgid "{0} months ago" msgstr "{0} månader sedan" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0} måste vara efter {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} måste börja med '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} måste vara lika med '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} måste inte vara någon av {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} måste vara en av {1}" @@ -31244,7 +31496,7 @@ msgstr "{0} måste anges först" msgid "{0} must be unique" msgstr "{0} måste vara unik" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0} måste vara {1} {2}" @@ -31273,16 +31525,12 @@ msgstr "{0} av {1}" msgid "{0} of {1} ({2} rows with children)" msgstr "{0} av {1} ({2} rader med underordnade)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} av {1} skickade" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "{0} ." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} eller {1}" @@ -31319,11 +31567,11 @@ msgstr "{0} tog bort sin tilldelning." msgid "{0} role does not have permission on any doctype" msgstr "{0} roll har inte tillstånd på någon doctype" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} rad #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} sparad" @@ -31365,7 +31613,7 @@ msgstr "{0} godkände detta dokument {1}" msgid "{0} subscribers added" msgstr "{0} prenumeranter tillagda" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "{0} för att sluta ta emot E-post meddelande av denna typ" @@ -31435,11 +31683,11 @@ msgstr "{0} {1} finns inte, välj ett nytt mål för att slå samman" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} är länkad till följande godkända dokument: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} hittades inte" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Godkänd Post kan inte tas bort. Du måste {2} Annullera {3} det först." @@ -31552,7 +31800,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} är satt på tillstånd {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} mot {2}" @@ -31588,11 +31836,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name msgid "{} Complete" msgstr "{} Klar" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "{} Ogiltig python kod på rad {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Möjligen ogiltig python kod.
{}" @@ -31614,7 +31862,7 @@ msgstr "{} fält kan inte vara tom." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} är inte giltig datum sträng." diff --git a/frappe/locale/th.po b/frappe/locale/th.po index 4491b9aac4..2fe8ca9cc7 100644 --- a/frappe/locale/th.po +++ b/frappe/locale/th.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-22 21:46\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -59,11 +59,11 @@ msgstr "" #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 msgid "${values.doctype_name} has been added to queue for optimization" -msgstr "" +msgstr "${values.doctype_name} ถูกเพิ่มในคิวสำหรับการปรับปรุง" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "© Frappe Technologies Pvt. Ltd. and contributors" -msgstr "" +msgstr "© Frappe Technologies Pvt. Ltd. และผู้ร่วมพัฒนา" #. Label of the head_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -72,59 +72,59 @@ msgstr "" #: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" -msgstr "" +msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}" #: frappe/core/doctype/doctype/doctype.py:1354 msgid "'In Global Search' not allowed for type {0} in row {1}" -msgstr "" +msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}" #: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" -msgstr "" +msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}" #: frappe/custom/doctype/customize_form/customize_form.py:362 msgid "'In List View' not allowed for type {0} in row {1}" -msgstr "" +msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" -msgstr "" +msgstr "ผู้รับ ไม่ได้ระบุ" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" -msgstr "" +msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง" #: frappe/core/doctype/doctype/doctype.py:1348 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "" +msgstr "'{0}' ไม่อนุญาตสำหรับประเภท {1} ในแถว {2}" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" -msgstr "" +msgstr "(จำเป็น)" #: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" -msgstr "" +msgstr "** ล้มเหลว: {0} ถึง {1}: {2}" #: frappe/public/js/frappe/list/list_settings.js:135 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" -msgstr "" +msgstr "+ เพิ่ม / ลบฟิลด์" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "" +msgstr "0 - ร่าง; 1 - ส่ง; 2 - ยกเลิก" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "" +msgstr "0 คือสูงสุด" #: frappe/public/js/frappe/form/grid_row.js:876 msgid "1 = True & 0 = False" -msgstr "" +msgstr "1 = จริง & 0 = เท็จ" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -134,104 +134,104 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 วัน" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." -msgstr "" +msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" -msgstr "" +msgstr "1 รายงาน" #: frappe/website/doctype/blog_post/blog_post.py:380 msgid "1 comment" -msgstr "" +msgstr "1 ความคิดเห็น" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" -msgstr "" +msgstr "1 วันที่ผ่านมา" #: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 ชั่วโมง" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" -msgstr "" +msgstr "1 ชั่วโมงที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" -msgstr "" +msgstr "1 นาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" -msgstr "" +msgstr "1 เดือนที่แล้ว" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 จาก 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" -msgstr "" +msgstr "1 รายการจะถูกส่งออก" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" -msgstr "" +msgstr "1 วินาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" -msgstr "" +msgstr "1 สัปดาห์ที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" -msgstr "" +msgstr "1 ปีที่แล้ว" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" -msgstr "" +msgstr "2 ชั่วโมงที่แล้ว" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" -msgstr "" +msgstr "2 เดือนที่แล้ว" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" -msgstr "" +msgstr "2 สัปดาห์ที่แล้ว" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" -msgstr "" +msgstr "2 ปีที่แล้ว" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" -msgstr "" +msgstr "3 นาทีที่แล้ว" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 นาที" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 ชั่วโมง" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" -msgstr "" +msgstr "5 รายการ" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" -msgstr "" +msgstr "5 วันที่ผ่านมา" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" -msgstr "" +msgstr "; ไม่อนุญาตในเงื่อนไข" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' @@ -247,7 +247,7 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} ไม่ใช่ URL ที่ถูกต้อง" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2268,90 +2316,86 @@ msgstr "" #: frappe/public/js/frappe/web_form/web_form.js:185 msgid "Are you sure you want to discard the changes?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?" #: frappe/public/js/frappe/form/toolbar.js:120 msgid "Are you sure you want to merge {0} with {1}?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการรวม {0} กับ {1}?" #: frappe/public/js/frappe/views/kanban/kanban_view.js:108 msgid "Are you sure you want to proceed?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" #: frappe/core/doctype/rq_job/rq_job_list.js:25 msgid "Are you sure you want to re-enable scheduler?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการเปิดใช้งานตัวจัดตารางเวลาอีกครั้ง?" #: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการเชื่อมโยงการสื่อสารนี้กับ {0} อีกครั้ง?" #: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบงานที่ล้มเหลวทั้งหมด?" #: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบตัวกรอง {0}?" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการรีเซ็ตการปรับแต่งทั้งหมด?" #: frappe/workflow/doctype/workflow/workflow.js:125 msgid "Are you sure you want to save this document?" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่ว่าต้องการบันทึกเอกสารนี้?" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" -msgstr "" +msgstr "คุณแน่ใจหรือไม่?" #. Label of the arguments (Code) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Arguments" -msgstr "" +msgstr "อาร์กิวเมนต์" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "" +msgstr "อารีอัล" #: frappe/core/page/permission_manager/permission_manager_help.html:11 msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." -msgstr "" +msgstr "เพื่อเป็นแนวทางปฏิบัติที่ดีที่สุด อย่ากำหนดกฎการอนุญาตชุดเดียวกันให้กับบทบาทที่แตกต่างกัน แต่ให้กำหนดบทบาทหลายบทบาทให้กับผู้ใช้คนเดียวกัน" #: frappe/desk/form/assign_to.py:107 msgid "As document sharing is disabled, please give them the required permissions before assigning." -msgstr "" +msgstr "เนื่องจากการแชร์เอกสารถูกปิดใช้งาน โปรดให้สิทธิ์ที่จำเป็นก่อนที่จะกำหนด" #: frappe/templates/emails/account_deletion_notification.html:3 msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" -msgstr "" +msgstr "ตามคำขอของคุณ บัญชีและข้อมูลของคุณบน {0} ที่เชื่อมโยงกับอีเมล {1} ได้ถูกลบอย่างถาวร" #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,10 +3040,10 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "" +msgstr "BCC" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3647,12 +3686,12 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "CC" -msgstr "" +msgstr "สำเนาถึง" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "สำเนาถึง" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -3661,7 +3700,7 @@ msgstr "" #: frappe/public/js/frappe/color_picker/color_picker.js:20 msgid "COLOR PICKER" -msgstr "" +msgstr "ตัวเลือกสี" #. Label of the css_section (Section Break) field in DocType 'Custom HTML #. Block' @@ -3676,13 +3715,13 @@ msgstr "" #. Label of the css_class (Small Text) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "CSS Class" -msgstr "" +msgstr "คลาส CSS" #. Description of the 'Element Selector' (Data) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "CSS selector for the element you want to highlight." -msgstr "" +msgstr "ตัวเลือก CSS สำหรับองค์ประกอบที่คุณต้องการเน้น" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' @@ -3694,26 +3733,26 @@ msgstr "" #. Label of the cta_label (Data) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA Label" -msgstr "" +msgstr "ป้าย CTA" #. Label of the cta_url (Data) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "CTA URL" -msgstr "" +msgstr "URL ของ CTA" #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Cache" -msgstr "" +msgstr "แคช" #: frappe/sessions.py:35 msgid "Cache Cleared" -msgstr "" +msgstr "ล้างแคชแล้ว" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 msgid "Calculate" -msgstr "" +msgstr "คำนวณ" #. Label of a Link in the Tools Workspace #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' @@ -3722,70 +3761,68 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Calendar" -msgstr "" +msgstr "ปฏิทิน" #. Label of the calendar_name (Data) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Calendar Name" -msgstr "" +msgstr "ชื่อปฏิทิน" #. Name of a DocType #: frappe/desk/doctype/calendar_view/calendar_view.json #: frappe/public/js/frappe/list/base_list.js:207 msgid "Calendar View" -msgstr "" +msgstr "มุมมองปฏิทิน" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/contacts/doctype/contact/contact.js:55 #: frappe/desk/doctype/event/event.json msgid "Call" -msgstr "" +msgstr "โทร" #. Label of the call_to_action (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action" -msgstr "" +msgstr "การเรียกร้องให้ดำเนินการ" #. Label of the call_to_action_url (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "" +msgstr "URL การเรียกร้องให้ดำเนินการ" #. Label of the cta_section (Section Break) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Call to Action" -msgstr "" +msgstr "การเรียกร้องให้ดำเนินการ" #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Message" -msgstr "" +msgstr "ข้อความการเรียกกลับ" #. Label of the callback_title (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Callback Title" -msgstr "" +msgstr "ชื่อการเรียกกลับ" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 #: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" -msgstr "" +msgstr "กล้อง" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "" +msgstr "แคมเปญ" #. Label of the campaign_description (Small Text) field in DocType 'UTM #. Campaign' #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Campaign Description (Optional)" -msgstr "" +msgstr "คำอธิบายแคมเปญ (ไม่บังคับ)" #: frappe/public/js/frappe/form/templates/set_sharing.html:4 #: frappe/public/js/frappe/form/templates/set_sharing.html:50 @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4890,7 +4942,7 @@ msgstr "" #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." -msgstr "" +msgstr "การเปลี่ยนแปลงสถานะการเผยแพร่ความคิดเห็น สามารถทำได้เฉพาะผู้เขียนต้นฉบับหรือผู้ดูแลระบบเท่านั้น" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "ผู้ติดต่อ" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5389,50 +5442,50 @@ msgstr "" #. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." -msgstr "" +msgstr "ควบคุมว่าสามารถให้ผู้ใช้ใหม่ลงทะเบียนโดยใช้คีย์การเข้าสู่ระบบโซเชียลนี้ได้หรือไม่ หากไม่ได้ตั้งค่า จะใช้การตั้งค่าเว็บไซต์" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." -msgstr "" +msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 msgid "Copy Link" -msgstr "" +msgstr "คัดลอกลิงก์" #: frappe/website/doctype/web_form/web_form.js:29 msgid "Copy embed code" -msgstr "" +msgstr "คัดลอกรหัสฝัง" #: frappe/public/js/frappe/request.js:620 msgid "Copy error to clipboard" -msgstr "" +msgstr "คัดลอกข้อผิดพลาดไปยังคลิปบอร์ด" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" -msgstr "" +msgstr "คัดลอกไปยังคลิปบอร์ด" #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" -msgstr "" +msgstr "ลิขสิทธิ์" #: frappe/custom/doctype/customize_form/customize_form.py:122 msgid "Core DocTypes cannot be customized." -msgstr "" +msgstr "ไม่สามารถปรับแต่ง DocTypes หลักได้" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." -msgstr "" +msgstr "โมดูลหลัก {0} ไม่สามารถค้นหาใน Global Search ได้" #: frappe/printing/page/print/print.js:620 msgid "Correct version :" -msgstr "" +msgstr "เวอร์ชันที่ถูกต้อง:" #: frappe/email/smtp.py:78 msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -5996,39 +6052,39 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_form/web_form.json msgid "Customization" -msgstr "" +msgstr "การปรับแต่ง" #: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" -msgstr "" +msgstr "การปรับแต่งถูกละทิ้ง" #: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" -msgstr "" +msgstr "รีเซ็ตการปรับแต่ง" #: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
{1}" -msgstr "" +msgstr "การปรับแต่งสำหรับ {0} ถูกส่งออกไปยัง:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" -msgstr "" +msgstr "ปรับแต่ง" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" -msgstr "" +msgstr "ปรับแต่ง" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "" +msgstr "ปรับแต่งตารางย่อย" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" -msgstr "" +msgstr "ปรับแต่งแดชบอร์ด" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6036,18 +6092,18 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" -msgstr "" +msgstr "ปรับแต่งฟอร์ม" #: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" -msgstr "" +msgstr "ปรับแต่งฟอร์ม - {0}" #. Name of a DocType #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" -msgstr "" +msgstr "ปรับแต่งฟิลด์ฟอร์ม" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -6108,46 +6164,46 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:398 #: frappe/website/report/website_analytics/website_analytics.js:23 msgid "Daily" -msgstr "" +msgstr "รายวัน" #: frappe/templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." -msgstr "" +msgstr "ส่งสรุปเหตุการณ์รายวันสำหรับกิจกรรมในปฏิทินที่ตั้งค่าการเตือน" #: frappe/desk/doctype/event/event.py:100 msgid "Daily Events should finish on the Same Day." -msgstr "" +msgstr "กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Daily Long" -msgstr "" +msgstr "รายวันแบบยาว" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Daily Maintenance" -msgstr "" +msgstr "การบำรุงรักษารายวัน" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Danger" -msgstr "" +msgstr "อันตราย" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Dark" -msgstr "" +msgstr "มืด" #. Label of the dark_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Dark Color" -msgstr "" +msgstr "สีเข้ม" #: frappe/public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" -msgstr "" +msgstr "ธีมมืด" #. Label of the dashboard (Check) field in DocType 'User' #. Label of a Link in the Build Workspace @@ -6162,9 +6218,9 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" -msgstr "" +msgstr "แดชบอร์ด" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6172,48 +6228,48 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" -msgstr "" +msgstr "แผนภูมิแดชบอร์ด" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json msgid "Dashboard Chart Field" -msgstr "" +msgstr "ฟิลด์แผนภูมิแดชบอร์ด" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" -msgstr "" +msgstr "ลิงก์แผนภูมิแดชบอร์ด" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" -msgstr "" +msgstr "แหล่งข้อมูลแผนภูมิแดชบอร์ด" #. Name of a role #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" -msgstr "" +msgstr "ผู้จัดการแดชบอร์ด" #. Label of the dashboard_name (Data) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "" +msgstr "ชื่อแดชบอร์ด" #. Name of a DocType #: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" -msgstr "" +msgstr "การตั้งค่าแดชบอร์ด" #: frappe/public/js/frappe/list/base_list.js:204 msgid "Dashboard View" -msgstr "" +msgstr "มุมมองแดชบอร์ด" #. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Dashboards" -msgstr "" +msgstr "แดชบอร์ด" #. Label of a Card Break in the Tools Workspace #. Label of the data (Code) field in DocType 'Deleted Document' @@ -6242,67 +6298,67 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Data" -msgstr "" +msgstr "ข้อมูล" #: frappe/public/js/frappe/form/controls/data.js:59 msgid "Data Clipped" -msgstr "" +msgstr "ข้อมูลถูกตัด" #. Name of a DocType #: frappe/core/doctype/data_export/data_export.json msgid "Data Export" -msgstr "" +msgstr "การส่งออกข้อมูล" #. Name of a DocType #. Label of the data_import (Link) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import" -msgstr "" +msgstr "การนำเข้าข้อมูล" #. Name of a DocType #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Data Import Log" -msgstr "" +msgstr "บันทึกการนำเข้าข้อมูล" #: frappe/core/doctype/data_export/exporter.py:174 msgid "Data Import Template" -msgstr "" +msgstr "แม่แบบการนำเข้าข้อมูล" #: frappe/custom/doctype/customize_form/customize_form.py:614 msgid "Data Too Long" -msgstr "" +msgstr "ข้อมูลยาวเกินไป" #. Label of the database (Data) field in DocType 'System Health Report' #. Label of the database_section (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database" -msgstr "" +msgstr "ฐานข้อมูล" #. Label of the engine (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Database Engine" -msgstr "" +msgstr "เอนจินฐานข้อมูล" #. Label of the database_processes_section (Section Break) field in DocType #. 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Database Processes" -msgstr "" +msgstr "กระบวนการฐานข้อมูล" #: frappe/public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" -msgstr "" +msgstr "การใช้งานขนาดแถวฐานข้อมูล" #. Name of a report #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" -msgstr "" +msgstr "การใช้งานพื้นที่จัดเก็บฐานข้อมูลตามตาราง" #: frappe/custom/doctype/customize_form/customize_form.py:248 msgid "Database Table Row Size Limit" -msgstr "" +msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล" #: frappe/public/js/frappe/doctype/index.js:40 msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." @@ -6311,7 +6367,7 @@ msgstr "" #. Label of the database_version (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database Version" -msgstr "" +msgstr "เวอร์ชันฐานข้อมูล" #. Label of the communication_date (Datetime) field in DocType 'Activity Log' #. Label of the communication_date (Datetime) field in DocType 'Communication' @@ -6329,11 +6385,10 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" -msgstr "" +msgstr "วันที่" #. Label of the date_format (Select) field in DocType 'Language' #. Label of the date_format (Select) field in DocType 'System Settings' @@ -6342,28 +6397,28 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json msgid "Date Format" -msgstr "" +msgstr "รูปแบบวันที่" #. Label of the section_break_dfrx (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/widgets/chart_widget.js:237 msgid "Date Range" -msgstr "" +msgstr "ช่วงวันที่" #. Label of the date_and_number_format (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Date and Number Format" -msgstr "" +msgstr "รูปแบบวันที่และตัวเลข" #: frappe/public/js/frappe/form/controls/date.js:247 msgid "Date {0} must be in format: {1}" -msgstr "" +msgstr "วันที่ {0} ต้องอยู่ในรูปแบบ: {1}" #: frappe/utils/password_strength.py:129 msgid "Dates are often easy to guess." -msgstr "" +msgstr "วันที่มักจะเดาได้ง่าย" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -6378,7 +6433,7 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Datetime" -msgstr "" +msgstr "วันที่และเวลา" #. Label of the day (Select) field in DocType 'Assignment Rule Day' #. Label of the day (Select) field in DocType 'Auto Repeat Day' @@ -6386,61 +6441,66 @@ msgstr "" #: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json #: frappe/public/js/frappe/views/calendar/calendar.js:277 msgid "Day" -msgstr "" +msgstr "วัน" #. Label of the day_of_week (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "วัน" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" -msgstr "" +msgstr "วันหลังจาก" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before" -msgstr "" +msgstr "วันก่อน" #. Label of the days_in_advance (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before or After" -msgstr "" +msgstr "วันก่อนหรือหลัง" #: frappe/public/js/frappe/request.js:252 msgid "Deadlock Occurred" -msgstr "" +msgstr "เกิดการล็อกตาย" #: frappe/templates/emails/password_reset.html:1 msgid "Dear" -msgstr "" +msgstr "เรียน" #: frappe/templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," -msgstr "" +msgstr "เรียน ผู้จัดการระบบ," #: frappe/templates/emails/account_deletion_notification.html:1 #: frappe/templates/emails/delete_data_confirmation.html:1 msgid "Dear User," -msgstr "" +msgstr "เรียน ผู้ใช้," #: frappe/templates/emails/download_data.html:1 msgid "Dear {0}" -msgstr "" +msgstr "เรียน {0}" #. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Debug Log" -msgstr "" +msgstr "บันทึกการดีบัก" #: frappe/public/js/frappe/views/reports/report_utils.js:308 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" -msgstr "" +msgstr "ตัวคั่นทศนิยมต้องเป็น '.' เมื่อการอ้างอิงถูกตั้งค่าเป็นไม่ใช่ตัวเลข" #: frappe/public/js/frappe/views/reports/report_utils.js:300 msgid "Decimal Separator must be a single character" -msgstr "" +msgstr "ตัวคั่นทศนิยมต้องเป็นตัวอักษรเดียว" #. Label of the default (Small Text) field in DocType 'DocField' #. Label of the default (Small Text) field in DocType 'Report Filter' @@ -6456,7 +6516,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" -msgstr "" +msgstr "ค่าเริ่มต้น" #: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" @@ -6593,24 +6653,24 @@ msgstr "" #. Label of the default_workspace (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Default Workspace" -msgstr "" +msgstr "พื้นที่ทำงานเริ่มต้น" #. Description of the 'Currency' (Link) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Default display currency" -msgstr "" +msgstr "สกุลเงินแสดงผลเริ่มต้น" #: frappe/core/doctype/doctype/doctype.py:1376 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" -msgstr "" +msgstr "ค่าเริ่มต้นสำหรับฟิลด์ประเภท 'Check' {0} ต้องเป็น '0' หรือ '1'" #: frappe/core/doctype/doctype/doctype.py:1389 msgid "Default value for {0} must be in the list of options." -msgstr "" +msgstr "ค่าดีฟอลต์สำหรับ {0} ต้องอยู่ในรายการตัวเลือก" #: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "" +msgstr "ค่าเริ่มต้น {0}" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -6620,33 +6680,33 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/defaultvalue/defaultvalue.json msgid "DefaultValue" -msgstr "" +msgstr "ค่าเริ่มต้น" #. Label of the defaults_section (Section Break) field in DocType 'DocField' #. Label of the sb2 (Section Break) field in DocType 'User' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "" +msgstr "ค่าเริ่มต้น" #: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" -msgstr "" +msgstr "อัปเดตค่าเริ่มต้นแล้ว" #. Description of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Defines actions on states and the next step and allowed roles." -msgstr "" +msgstr "กำหนดการกระทำในสถานะ ขั้นตอนถัดไป และบทบาทที่อนุญาต" #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." -msgstr "" +msgstr "กำหนดสถานะและกฎของเวิร์กโฟลว์สำหรับเอกสาร" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delayed" -msgstr "" +msgstr "ล่าช้า" #. Label of the delete (Check) field in DocType 'Custom DocPerm' #. Label of the delete (Check) field in DocType 'DocPerm' @@ -6657,101 +6717,102 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" -msgstr "" +msgstr "ลบ" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" -msgstr "" +msgstr "ลบ" #: frappe/www/me.html:65 msgid "Delete Account" -msgstr "" +msgstr "ลบบัญชี" #: frappe/public/js/frappe/form/grid.js:66 msgid "Delete All" -msgstr "" +msgstr "ลบทั้งหมด" #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" -msgstr "" +msgstr "ลบคอลัมน์" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 msgid "Delete Data" -msgstr "" +msgstr "ลบข้อมูล" #: frappe/public/js/frappe/views/kanban/kanban_view.js:106 msgid "Delete Kanban Board" -msgstr "" +msgstr "ลบกระดานคัมบัง" #: frappe/public/js/form_builder/components/Section.vue:125 msgctxt "Title of confirmation dialog" msgid "Delete Section" -msgstr "" +msgstr "ลบส่วน" #: frappe/public/js/form_builder/components/Tabs.vue:64 msgctxt "Title of confirmation dialog" msgid "Delete Tab" -msgstr "" +msgstr "ลบแท็บ" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" -msgstr "" +msgstr "ลบและสร้างใหม่" #: frappe/public/js/form_builder/components/Section.vue:203 msgctxt "Button text" msgid "Delete column" -msgstr "" +msgstr "ลบคอลัมน์" #: frappe/public/js/frappe/form/footer/form_timeline.js:741 msgid "Delete comment?" -msgstr "" +msgstr "ลบความคิดเห็น?" #: frappe/public/js/form_builder/components/Section.vue:205 msgctxt "Button text" msgid "Delete entire column with fields" -msgstr "" +msgstr "ลบทั้งคอลัมน์พร้อมฟิลด์" #: frappe/public/js/form_builder/components/Section.vue:134 msgctxt "Button text" msgid "Delete entire section with fields" -msgstr "" +msgstr "ลบทั้งส่วนพร้อมฟิลด์" #: frappe/public/js/form_builder/components/Tabs.vue:73 msgctxt "Button text" msgid "Delete entire tab with fields" -msgstr "" +msgstr "ลบทั้งแท็บพร้อมฟิลด์" #: frappe/public/js/form_builder/components/Section.vue:132 msgctxt "Button text" msgid "Delete section" -msgstr "" +msgstr "ลบส่วน" #: frappe/public/js/form_builder/components/Tabs.vue:71 msgctxt "Button text" msgid "Delete tab" -msgstr "" +msgstr "ลบแท็บ" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 msgid "Delete this record to allow sending to this email address" -msgstr "" +msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" -msgstr "" +msgstr "ลบ {0} รายการอย่างถาวร?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" -msgstr "" +msgstr "ลบ {0} รายการอย่างถาวร?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion @@ -6762,17 +6823,17 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Deleted" -msgstr "" +msgstr "ลบแล้ว" #. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "" +msgstr "ลบ DocType แล้ว" #. Name of a DocType #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" -msgstr "" +msgstr "ลบเอกสารแล้ว" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -6782,23 +6843,23 @@ msgstr "" #. Label of the deleted_name (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Name" -msgstr "" +msgstr "ลบชื่อแล้ว" #: frappe/desk/reportview.py:606 msgid "Deleted all documents successfully" -msgstr "" +msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว" #: frappe/desk/reportview.py:583 msgid "Deleting {0}" -msgstr "" +msgstr "กำลังลบ {0}" #: frappe/public/js/frappe/list/bulk_operations.js:202 msgid "Deleting {0} records..." -msgstr "" +msgstr "กำลังลบบันทึก {0}..." #: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." -msgstr "" +msgstr "กำลังลบ {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' @@ -6809,25 +6870,25 @@ msgstr "" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 msgid "Deletion of this document is only permitted in developer mode." -msgstr "" +msgstr "การลบเอกสารนี้ได้รับอนุญาตเฉพาะในโหมดนักพัฒนาเท่านั้น" #. Label of the delimiter_options (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Delimiter Options" -msgstr "" +msgstr "ตัวเลือกตัวคั่น" #: frappe/utils/csvutils.py:76 msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." -msgstr "" +msgstr "การตรวจจับตัวคั่นล้มเหลว ลองเปิดใช้งานตัวคั่นที่กำหนดเองและปรับตัวเลือกตัวคั่นตามข้อมูลของคุณ" #: frappe/public/js/frappe/views/reports/report_utils.js:296 msgid "Delimiter must be a single character" -msgstr "" +msgstr "ตัวคั่นต้องเป็นตัวอักษรเดียว" #. Label of the delivery_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delivery Status" -msgstr "" +msgstr "สถานะการจัดส่ง" #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7180,7 +7242,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "" +msgstr "ยกเลิก" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7690,120 +7753,120 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" -msgstr "" +msgstr "ต้องการประเภทเอกสารและฟังก์ชันเพื่อสร้างการ์ดตัวเลข" #: frappe/permissions.py:149 msgid "Document Type is not importable" -msgstr "" +msgstr "ประเภทเอกสารไม่สามารถนำเข้าได้" #: frappe/permissions.py:145 msgid "Document Type is not submittable" -msgstr "" +msgstr "ประเภทเอกสารไม่สามารถส่งได้" #. Label of the document_type (Link) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Document Type to Track" -msgstr "" +msgstr "ประเภทเอกสารที่ต้องติดตาม" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." -msgstr "" +msgstr "ประเภทเอกสาร {0} ถูกทำซ้ำ" #. Label of the user_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types" -msgstr "" +msgstr "ประเภทเอกสาร" #. Label of the select_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types (Select Permissions Only)" -msgstr "" +msgstr "ประเภทเอกสาร (เลือกสิทธิ์เท่านั้น)" #. Label of the section_break_2 (Section Break) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types and Permissions" -msgstr "" +msgstr "ประเภทเอกสารและสิทธิ์" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" -msgstr "" +msgstr "เอกสารถูกปลดล็อก" #: frappe/desk/form/document_follow.py:56 msgid "Document follow is not enabled for this user." -msgstr "" +msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้" #: frappe/public/js/frappe/list/list_view.js:1157 msgid "Document has been cancelled" -msgstr "" +msgstr "เอกสารถูกยกเลิกแล้ว" #: frappe/public/js/frappe/list/list_view.js:1156 msgid "Document has been submitted" -msgstr "" +msgstr "เอกสารถูกส่งแล้ว" #: frappe/public/js/frappe/list/list_view.js:1155 msgid "Document is in draft state" -msgstr "" +msgstr "เอกสารอยู่ในสถานะร่าง" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Document is only editable by users with role" -msgstr "" +msgstr "เอกสารสามารถแก้ไขได้เฉพาะผู้ใช้ที่มีบทบาท" #: frappe/core/doctype/communication/communication.js:182 msgid "Document not Relinked" -msgstr "" +msgstr "เอกสารไม่ได้เชื่อมโยงใหม่" #: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 msgid "Document renamed from {0} to {1}" -msgstr "" +msgstr "เอกสารถูกเปลี่ยนชื่อจาก {0} เป็น {1}" #: frappe/public/js/frappe/form/toolbar.js:164 msgid "Document renaming from {0} to {1} has been queued" -msgstr "" +msgstr "การเปลี่ยนชื่อเอกสารจาก {0} เป็น {1} ถูกจัดคิวแล้ว" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Document type is required to create a dashboard chart" -msgstr "" +msgstr "ต้องการประเภทเอกสารเพื่อสร้างแผนภูมิแดชบอร์ด" #: frappe/core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" -msgstr "" +msgstr "เอกสาร {0} ถูกกู้คืนแล้ว" #: frappe/workflow/doctype/workflow_action/workflow_action.py:203 msgid "Document {0} has been set to state {1} by {2}" -msgstr "" +msgstr "เอกสาร {0} ถูกตั้งค่าเป็นสถานะ {1} โดย {2}" #: frappe/client.py:430 msgid "Document {0} {1} does not exist" -msgstr "" +msgstr "เอกสาร {0} {1} ไม่มีอยู่" #. Label of the documentation (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" -msgstr "" +msgstr "ลิงก์เอกสารประกอบ" #. Label of the documentation_url (Data) field in DocType 'DocField' #. Label of the documentation_url (Data) field in DocType 'Module Onboarding' #: frappe/core/doctype/docfield/docfield.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Documentation URL" -msgstr "" +msgstr "URL เอกสารประกอบ" #: frappe/public/js/frappe/form/templates/form_dashboard.html:17 msgid "Documents" -msgstr "" +msgstr "เอกสาร" #: frappe/core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" -msgstr "" +msgstr "เอกสารถูกกู้คืนสำเร็จ" #: frappe/core/doctype/deleted_document/deleted_document_list.js:33 msgid "Documents that failed to restore" -msgstr "" +msgstr "เอกสารที่กู้คืนล้มเหลว" #: frappe/core/doctype/deleted_document/deleted_document_list.js:29 msgid "Documents that were already restored" -msgstr "" +msgstr "เอกสารที่ถูกกู้คืนแล้ว" #. Name of a DocType #. Label of the domain (Data) field in DocType 'Domain' @@ -7813,32 +7876,32 @@ msgstr "" #: frappe/core/doctype/has_domain/has_domain.json #: frappe/email/doctype/email_account/email_account.json msgid "Domain" -msgstr "" +msgstr "โดเมน" #. Label of the domain_name (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Domain Name" -msgstr "" +msgstr "ชื่อโดเมน" #. Name of a DocType #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" -msgstr "" +msgstr "การตั้งค่าโดเมน" #. Label of the domains_html (HTML) field in DocType 'Domain Settings' #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domains HTML" -msgstr "" +msgstr "โดเมน HTML" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "" +msgstr "อย่าเข้ารหัส HTML แท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้" #: frappe/public/js/frappe/data_import/import_preview.js:272 msgid "Don't Import" -msgstr "" +msgstr "อย่านำเข้า" #. Label of the override_status (Check) field in DocType 'Workflow' #. Label of the avoid_status_override (Check) field in DocType 'Workflow @@ -7846,12 +7909,12 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Don't Override Status" -msgstr "" +msgstr "อย่าเขียนทับสถานะ" #. Label of the mute_emails (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Don't Send Emails" -msgstr "" +msgstr "อย่าส่งอีเมล" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize @@ -7859,12 +7922,12 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "" +msgstr "อย่าเข้ารหัสแท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" -msgstr "" +msgstr "ไม่มีบัญชีใช่ไหม?" #: frappe/public/js/frappe/form/form_tour.js:16 #: frappe/public/js/frappe/ui/messages.js:238 @@ -7872,16 +7935,16 @@ msgstr "" #: frappe/public/js/print_format_builder/HTMLEditor.vue:5 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "เสร็จสิ้น" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Donut" -msgstr "" +msgstr "โดนัท" #: frappe/public/js/form_builder/components/EditableInput.vue:43 msgid "Double click to edit label" -msgstr "" +msgstr "ดับเบิลคลิกเพื่อแก้ไขป้ายกำกับ" #: frappe/core/doctype/file/file.js:15 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 @@ -7898,27 +7961,27 @@ msgstr "ดาวน์โหลด" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/page/backups/backups.js:4 msgid "Download Backups" -msgstr "" +msgstr "ดาวน์โหลดการสำรองข้อมูล" #: frappe/templates/emails/download_data.html:6 msgid "Download Data" -msgstr "" +msgstr "ดาวน์โหลดข้อมูล" #: frappe/desk/page/backups/backups.js:14 msgid "Download Files Backup" -msgstr "" +msgstr "ดาวน์โหลดการสำรองไฟล์" #: frappe/templates/emails/download_data.html:9 msgid "Download Link" -msgstr "" +msgstr "ดาวน์โหลดลิงก์" #: frappe/public/js/frappe/list/bulk_operations.js:134 msgid "Download PDF" -msgstr "" +msgstr "ดาวน์โหลด PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" -msgstr "" +msgstr "ดาวน์โหลดรายงาน" #. Label of the download_template (Button) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -7929,19 +7992,19 @@ msgstr "ดาวน์โหลดเทมเพลต" #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 #: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" -msgstr "" +msgstr "ดาวน์โหลดข้อมูลของคุณ" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "ดาวน์โหลดเป็น CSV" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" -msgstr "" +msgstr "ดาวน์โหลด vCard" #: frappe/contacts/doctype/contact/contact_list.js:4 msgid "Download vCards" -msgstr "" +msgstr "ดาวน์โหลด vCards" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" @@ -7950,83 +8013,83 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:73 #: frappe/public/js/frappe/ui/filters/filter.js:538 msgid "Draft" -msgstr "" +msgstr "ร่าง" #: frappe/public/js/frappe/views/workspace/blocks/header.js:46 #: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 #: frappe/public/js/frappe/widgets/base_widget.js:33 msgid "Drag" -msgstr "" +msgstr "ลาก" #: frappe/public/js/form_builder/components/Tabs.vue:189 msgid "Drag & Drop a section here from another tab" -msgstr "" +msgstr "ลากและวางส่วนที่นี่จากแท็บอื่น" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 msgid "Drag and drop files here or upload from" -msgstr "" +msgstr "ลากและวางไฟล์ที่นี่หรืออัปโหลดจาก" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." -msgstr "" +msgstr "ลากคอลัมน์เพื่อกำหนดลำดับ ความกว้างของคอลัมน์ถูกตั้งค่าเป็นเปอร์เซ็นต์ ความกว้างรวมไม่ควรเกิน 100 คอลัมน์ที่ทำเครื่องหมายเป็นสีแดงจะถูกลบ" #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 msgid "Drag elements from the sidebar to add. Drag them back to trash." -msgstr "" +msgstr "ลากองค์ประกอบจากแถบด้านข้างเพื่อเพิ่ม ลากกลับไปที่ถังขยะ" #: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 msgid "Drag to add state" -msgstr "" +msgstr "ลากเพื่อเพิ่มสถานะ" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 msgid "Drop files here" -msgstr "" +msgstr "วางไฟล์ที่นี่" #. Label of the section_break_2 (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Dropdowns" -msgstr "" +msgstr "เมนูแบบเลื่อนลง" #. Label of the date (Date) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Due Date" -msgstr "" +msgstr "วันที่ครบกำหนด" #. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Due Date Based On" -msgstr "" +msgstr "วันที่ครบกำหนดตาม" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" -msgstr "" +msgstr "ซ้ำ" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" -msgstr "" +msgstr "รายการซ้ำ" #: frappe/public/js/frappe/list/list_filter.js:144 msgid "Duplicate Filter Name" -msgstr "" +msgstr "ชื่อฟิลเตอร์ซ้ำ" #: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 msgid "Duplicate Name" -msgstr "" +msgstr "ชื่อซ้ำ" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "แถวซ้ำ" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" -msgstr "" +msgstr "แถวปัจจุบันซ้ำ" #: frappe/public/js/form_builder/components/Field.vue:245 msgid "Duplicate field" -msgstr "" +msgstr "ฟิลด์ซ้ำ" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the duration (Float) field in DocType 'Recorder' @@ -8043,31 +8106,31 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" -msgstr "" +msgstr "ระยะเวลา" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Dynamic" -msgstr "" +msgstr "ไดนามิก" #. Label of the dynamic_filters_section (Section Break) field in DocType #. 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Dynamic Filters" -msgstr "" +msgstr "ฟิลเตอร์ไดนามิก" #. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dynamic Filters JSON" -msgstr "" +msgstr "ฟิลเตอร์ไดนามิก JSON" #. Label of the dynamic_filters_section (Section Break) field in DocType #. 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Dynamic Filters Section" -msgstr "" +msgstr "ส่วนฟิลเตอร์ไดนามิก" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Name of a DocType @@ -8082,23 +8145,23 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Dynamic Link" -msgstr "" +msgstr "ลิงก์ไดนามิก" #. Label of the dynamic_report_filters_section (Section Break) field in DocType #. 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Dynamic Report Filters" -msgstr "" +msgstr "ฟิลเตอร์รายงานไดนามิก" #. Label of the dynamic_route (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Route" -msgstr "" +msgstr "เส้นทางไดนามิก" #. Label of the dynamic_template (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Template" -msgstr "" +msgstr "แม่แบบไดนามิก" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "ESC" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8127,126 +8190,126 @@ msgstr "" #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 #: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "" +msgstr "แก้ไข" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" -msgstr "" +msgstr "แก้ไข" #: frappe/website/doctype/web_form/templates/web_form.html:23 msgctxt "Button in web form" msgid "Edit" -msgstr "" +msgstr "แก้ไข" #: frappe/public/js/frappe/form/grid_row.js:345 msgctxt "Edit grid row" msgid "Edit" -msgstr "" +msgstr "แก้ไข" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 msgid "Edit Address in Form" -msgstr "" +msgstr "แก้ไขที่อยู่ในฟอร์ม" #: frappe/templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" -msgstr "" +msgstr "แก้ไขการตั้งค่ารายงานอีเมลอัตโนมัติ" #: frappe/public/js/frappe/widgets/widget_dialog.js:38 msgid "Edit Chart" -msgstr "" +msgstr "แก้ไขแผนภูมิ" #: frappe/public/js/frappe/widgets/widget_dialog.js:50 msgid "Edit Custom Block" -msgstr "" +msgstr "แก้ไขบล็อกที่กำหนดเอง" #: frappe/printing/page/print_format_builder/print_format_builder.js:727 msgid "Edit Custom HTML" -msgstr "" +msgstr "แก้ไข HTML ที่กำหนดเอง" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" -msgstr "" +msgstr "แก้ไข DocType" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" -msgstr "" +msgstr "แก้ไข DocType" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 #: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" -msgstr "" +msgstr "แก้ไขที่มีอยู่" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 msgid "Edit Filters" -msgstr "" +msgstr "แก้ไขฟิลเตอร์" #: frappe/public/js/print_format_builder/PrintFormat.vue:29 msgid "Edit Footer" -msgstr "" +msgstr "แก้ไขส่วนท้าย" #: frappe/printing/doctype/print_format/print_format.js:28 msgid "Edit Format" -msgstr "" +msgstr "แก้ไขรูปแบบ" #: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" -msgstr "" +msgstr "แก้ไขฟอร์มเต็ม" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 #: frappe/public/js/print_format_builder/Field.vue:83 msgid "Edit HTML" -msgstr "" +msgstr "แก้ไข HTML" #: frappe/public/js/print_format_builder/PrintFormat.vue:9 msgid "Edit Header" -msgstr "" +msgstr "แก้ไขส่วนหัว" #: frappe/printing/page/print_format_builder/print_format_builder.js:609 #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 msgid "Edit Heading" -msgstr "" +msgstr "แก้ไขหัวข้อ" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Edit Letter Head" -msgstr "" +msgstr "แก้ไขหัวจดหมาย" #: frappe/public/js/print_format_builder/PrintFormat.vue:35 msgid "Edit Letter Head Footer" -msgstr "" +msgstr "แก้ไขส่วนท้ายหัวจดหมาย" #: frappe/public/js/frappe/widgets/widget_dialog.js:42 msgid "Edit Links" -msgstr "" +msgstr "แก้ไขลิงก์" #: frappe/public/js/frappe/widgets/widget_dialog.js:44 msgid "Edit Number Card" -msgstr "" +msgstr "แก้ไขการ์ดตัวเลข" #: frappe/public/js/frappe/widgets/widget_dialog.js:46 msgid "Edit Onboarding" -msgstr "" +msgstr "แก้ไขการเริ่มต้นใช้งาน" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" -msgstr "" +msgstr "แก้ไขรูปแบบการพิมพ์" #: frappe/www/me.html:38 msgid "Edit Profile" -msgstr "" +msgstr "แก้ไขโปรไฟล์" #: frappe/printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" -msgstr "" +msgstr "แก้ไขคุณสมบัติ" #: frappe/public/js/frappe/widgets/widget_dialog.js:48 msgid "Edit Quick List" -msgstr "" +msgstr "แก้ไขรายการด่วน" #: frappe/public/js/frappe/widgets/widget_dialog.js:40 msgid "Edit Shortcut" -msgstr "" +msgstr "แก้ไขทางลัด" #. Label of the edit_values (Button) field in DocType 'Web Page Block' #. Label of the edit_navbar_template_values (Button) field in DocType 'Website @@ -8257,33 +8320,33 @@ msgstr "" #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Edit Values" -msgstr "" +msgstr "แก้ไขค่า" #: frappe/desk/doctype/note/note.js:11 msgid "Edit mode" -msgstr "" +msgstr "โหมดแก้ไข" #: frappe/public/js/form_builder/components/Field.vue:254 msgid "Edit the {0} Doctype" -msgstr "" +msgstr "แก้ไข Doctype {0}" #: frappe/printing/page/print_format_builder/print_format_builder.js:721 msgid "Edit to add content" -msgstr "" +msgstr "แก้ไขเพื่อเพิ่มเนื้อหา" #: frappe/public/js/frappe/web_form/web_form.js:446 msgctxt "Button in web form" msgid "Edit your response" -msgstr "" +msgstr "แก้ไขคำตอบของคุณ" #: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." -msgstr "" +msgstr "แก้ไขเวิร์กโฟลว์ของคุณด้วยภาพโดยใช้ตัวสร้างเวิร์กโฟลว์" #: frappe/public/js/frappe/views/reports/report_view.js:678 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "" +msgstr "แก้ไข {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' @@ -8291,31 +8354,31 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:57 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" -msgstr "" +msgstr "กริดที่แก้ไขได้" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Editing Row" -msgstr "" +msgstr "กำลังแก้ไขแถว" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 msgid "Editing {0}" -msgstr "" +msgstr "กำลังแก้ไข {0}" #. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "" +msgstr "เช่น smsgateway.com/api/send_sms.cgi" #: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." -msgstr "" +msgstr "ต้องการคีย์หรือธง IP อย่างใดอย่างหนึ่ง" #. Label of the element_selector (Data) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Element Selector" -msgstr "" +msgstr "ตัวเลือกองค์ประกอบ" #. Label of a Card Break in the Tools Workspace #. Option for the 'Type' (Select) field in DocType 'Communication' @@ -8343,16 +8406,15 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" -msgstr "" +msgstr "อีเมล" #. Label of a Link in the Tools Workspace #. Label of the email_account (Link) field in DocType 'Communication' @@ -8370,28 +8432,28 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Email Account" -msgstr "" +msgstr "บัญชีอีเมล" #: frappe/email/doctype/email_account/email_account.py:343 msgid "Email Account Disabled." -msgstr "" +msgstr "บัญชีอีเมลถูกปิดใช้งาน" #. Label of the email_account_name (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Email Account Name" -msgstr "" +msgstr "ชื่อบัญชีอีเมล" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" -msgstr "" +msgstr "เพิ่มบัญชีอีเมลหลายครั้ง" #: frappe/email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" -msgstr "" +msgstr "ยังไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จาก การตั้งค่า > บัญชีอีเมล" #: frappe/email/doctype/email_account/email_account.py:576 msgid "Email Account {0} Disabled" -msgstr "" +msgstr "บัญชีอีเมล {0} ถูกปิดใช้งาน" #. Label of the email_id (Data) field in DocType 'Address' #. Label of the email_id (Data) field in DocType 'Contact' @@ -8405,55 +8467,53 @@ msgstr "" #: frappe/www/complete_signup.html:11 frappe/www/login.html:184 #: frappe/www/login.html:216 msgid "Email Address" -msgstr "" +msgstr "ที่อยู่อีเมล" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Email Address whose Google Contacts are to be synced." -msgstr "" +msgstr "ที่อยู่อีเมลที่ต้องการซิงค์กับ Google Contacts" #: frappe/email/doctype/email_group/email_group.js:43 msgid "Email Addresses" -msgstr "" +msgstr "ที่อยู่อีเมล" #. Label of a Link in the Tools Workspace #. Name of a DocType #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Email Domain" -msgstr "" +msgstr "โดเมนอีเมล" #. Name of a DocType #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" -msgstr "" +msgstr "คิวธงอีเมล" #. Label of the email_footer_address (Small Text) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "" +msgstr "ที่อยู่ส่วนท้ายอีเมล" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" -msgstr "" +msgstr "กลุ่มอีเมล" #. Name of a DocType #: frappe/email/doctype/email_group_member/email_group_member.json msgid "Email Group Member" -msgstr "" +msgstr "สมาชิกกลุ่มอีเมล" #. Label of the email_header (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Email Header" -msgstr "" +msgstr "ส่วนหัวอีเมล" #. Label of the email_id (Data) field in DocType 'Contact Email' #. Label of the email_id (Data) field in DocType 'User Email' @@ -8463,68 +8523,61 @@ msgstr "" #: frappe/core/doctype/user_email/user_email.json #: frappe/email/doctype/email_rule/email_rule.json msgid "Email ID" -msgstr "" +msgstr "รหัสอีเมล" #. Label of the email_ids (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Email IDs" -msgstr "" +msgstr "รหัสอีเมล" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" -msgstr "" +msgstr "รหัสอีเมล" #. Label of the email_inbox (Section Break) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Inbox" -msgstr "" +msgstr "กล่องจดหมายอีเมล" #. Name of a DocType #: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue" -msgstr "" +msgstr "คิวอีเมล" #. Name of a DocType #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Email Queue Recipient" -msgstr "" +msgstr "ผู้รับคิวอีเมล" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." -msgstr "" +msgstr "การล้างคิวอีเมลถูกยกเลิกเนื่องจากความล้มเหลวมากเกินไป" #. Description of a DocType #: frappe/email/doctype/email_queue/email_queue.json msgid "Email Queue records." -msgstr "" +msgstr "บันทึกคิวอีเมล" #. Label of the email_reply_help (HTML) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Email Reply Help" -msgstr "" +msgstr "ความช่วยเหลือในการตอบกลับอีเมล" #. Label of the email_retry_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Retry Limit" -msgstr "" +msgstr "ขีดจำกัดการลองใหม่ของอีเมล" #. Name of a DocType #: frappe/email/doctype/email_rule/email_rule.json msgid "Email Rule" -msgstr "" +msgstr "กฎอีเมล" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" -msgstr "" - -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" +msgstr "ส่งอีเมลแล้ว" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8538,22 +8591,22 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email Settings" -msgstr "" +msgstr "การตั้งค่าอีเมล" #. Label of the email_signature (Text Editor) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Email Signature" -msgstr "" +msgstr "ลายเซ็นอีเมล" #. Label of the email_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Status" -msgstr "" +msgstr "สถานะอีเมล" #. Label of the email_sync_option (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Email Sync Option" -msgstr "" +msgstr "ตัวเลือกการซิงค์อีเมล" #. Label of a Link in the Tools Workspace #. Label of the email_template (Link) field in DocType 'Communication' @@ -8561,79 +8614,87 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" -msgstr "" +msgstr "แม่แบบอีเมล" #. Label of the enable_email_threads_on_assigned_document (Check) field in #. DocType 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Email Threads on Assigned Document" -msgstr "" +msgstr "เธรดอีเมลในเอกสารที่กำหนด" #. Label of the email_to (Small Text) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email To" -msgstr "" +msgstr "อีเมลถึง" #. Name of a DocType #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" -msgstr "" +msgstr "ยกเลิกการสมัครรับอีเมล" #: frappe/core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" -msgstr "" +msgstr "อีเมลถูกทำเครื่องหมายว่าเป็นสแปม" #: frappe/core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" -msgstr "" +msgstr "อีเมลถูกย้ายไปที่ถังขยะ" #: frappe/core/doctype/user/user.js:272 msgid "Email is mandatory to create User Email" -msgstr "" +msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" -msgstr "" +msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)" #: frappe/utils/oauth.py:163 msgid "Email not verified with {0}" -msgstr "" +msgstr "อีเมลไม่ได้รับการยืนยันกับ {0}" #: frappe/email/doctype/email_queue/email_queue.js:19 msgid "Email queue is currently suspended. Resume to automatically send other emails." -msgstr "" +msgstr "คิวอีเมลถูกระงับชั่วคราว ดำเนินการต่อเพื่อส่งอีเมลอื่นโดยอัตโนมัติ" #. Label of the section_break_udjs (Section Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Emails" -msgstr "" +msgstr "อีเมล" #: frappe/email/doctype/email_account/email_account.js:216 msgid "Emails Pulled" -msgstr "" +msgstr "ดึงอีเมลแล้ว" #: frappe/email/doctype/email_account/email_account.py:934 msgid "Emails are already being pulled from this account." -msgstr "" +msgstr "กำลังดึงอีเมลจากบัญชีนี้อยู่แล้ว" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" -msgstr "" +msgstr "อีเมลถูกปิดเสียง" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Emails will be sent with next possible workflow actions" -msgstr "" +msgstr "อีเมลจะถูกส่งพร้อมกับการดำเนินการเวิร์กโฟลว์ถัดไปที่เป็นไปได้" #: frappe/website/doctype/web_form/web_form.js:34 msgid "Embed code copied" +msgstr "คัดลอกรหัสฝังแล้ว" + +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" msgstr "" #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" +msgstr "คอลัมน์ว่างเปล่า" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" msgstr "" #. Label of the enable (Check) field in DocType 'Google Calendar' @@ -8643,67 +8704,73 @@ msgstr "" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Enable" -msgstr "" +msgstr "เปิดใช้งาน" #. Label of the enable_address_autocompletion (Check) field in DocType #. 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Enable Address Autocompletion" -msgstr "" +msgstr "เปิดใช้งานการเติมที่อยู่อัตโนมัติ" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" -msgstr "" +msgstr "เปิดใช้งานอนุญาตการทำซ้ำอัตโนมัติสำหรับ doctype {0} ในการปรับแต่งฟอร์ม" #. Label of the enable_auto_reply (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Enable Auto Reply" -msgstr "" +msgstr "เปิดใช้งานการตอบกลับอัตโนมัติ" #. Label of the enable_automatic_linking (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Enable Automatic Linking in Documents" -msgstr "" +msgstr "เปิดใช้งานการเชื่อมโยงอัตโนมัติในเอกสาร" #. Label of the enable_comments (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Enable Comments" +msgstr "เปิดใช้งานความคิดเห็น" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" msgstr "" #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" -msgstr "" +msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล" #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Enable Email Notifications" -msgstr "" +msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล" #: frappe/integrations/doctype/google_calendar/google_calendar.py:106 #: frappe/integrations/doctype/google_contacts/google_contacts.py:36 #: frappe/website/doctype/website_settings/website_settings.py:129 msgid "Enable Google API in Google Settings." -msgstr "" +msgstr "เปิดใช้งาน Google API ในการตั้งค่า Google" #. Label of the enable_google_indexing (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" -msgstr "" +msgstr "เปิดใช้งานการจัดทำดัชนีของ Google" #. Label of the enable_incoming (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:225 msgid "Enable Incoming" -msgstr "" +msgstr "เปิดใช้งานขาเข้า" #. Label of the enable_onboarding (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Onboarding" -msgstr "" +msgstr "เปิดใช้งานการเริ่มต้นใช้งาน" #. Label of the enable_outgoing (Check) field in DocType 'User Email' #. Label of the enable_outgoing (Check) field in DocType 'Email Account' @@ -8711,93 +8778,93 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:233 msgid "Enable Outgoing" -msgstr "" +msgstr "เปิดใช้งานขาออก" #. Label of the enable_password_policy (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Password Policy" -msgstr "" +msgstr "เปิดใช้งานนโยบายรหัสผ่าน" #. Label of the enable_prepared_report (Check) field in DocType 'Role #. Permission for Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Enable Prepared Report" -msgstr "" +msgstr "เปิดใช้งานรายงานที่เตรียมไว้" #. Label of the enable_print_server (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Print Server" -msgstr "" +msgstr "เปิดใช้งานเซิร์ฟเวอร์การพิมพ์" #. Label of the enable_push_notification_relay (Check) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Enable Push Notification Relay" -msgstr "" +msgstr "เปิดใช้งานการส่งต่อการแจ้งเตือนแบบพุช" #. Label of the enable_rate_limit (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Enable Rate Limit" -msgstr "" +msgstr "เปิดใช้งานการจำกัดอัตรา" #. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Raw Printing" -msgstr "" +msgstr "เปิดใช้งานการพิมพ์แบบดิบ" #: frappe/core/doctype/report/report.js:39 msgid "Enable Report" -msgstr "" +msgstr "เปิดใช้งานรายงาน" #. Label of the enable_scheduler (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Scheduled Jobs" -msgstr "" +msgstr "เปิดใช้งานงานที่กำหนดเวลาไว้" #: frappe/core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" -msgstr "" +msgstr "เปิดใช้งานตัวจัดตารางเวลา" #. Label of the enable_security (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Enable Security" -msgstr "" +msgstr "เปิดใช้งานความปลอดภัย" #. Label of the enable_social_login (Check) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Enable Social Login" -msgstr "" +msgstr "เปิดใช้งานการเข้าสู่ระบบโซเชียล" #. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Enable Social Sharing" -msgstr "" +msgstr "เปิดใช้งานการแชร์โซเชียล" #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" -msgstr "" +msgstr "เปิดใช้งานการติดตามการดูหน้า" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/twofactor.py:433 msgid "Enable Two Factor Auth" -msgstr "" +msgstr "เปิดใช้งานการยืนยันตัวตนสองขั้นตอน" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" -msgstr "" +msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบการพิมพ์มาตรฐาน" #: frappe/website/doctype/web_template/web_template.py:33 msgid "Enable developer mode to create a standard Web Template" -msgstr "" +msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบเว็บมาตรฐาน" #. Description of the 'Enable Email Notification' (Check) field in DocType #. 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" +msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมลสำหรับความคิดเห็นหรือการถูกใจที่ได้รับในโพสต์บล็อกของคุณ" #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -8809,7 +8876,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable in-app website tracking" -msgstr "" +msgstr "เปิดใช้งานการติดตามเว็บไซต์ในแอป" #. Label of the enabled (Check) field in DocType 'Language' #. Label of the enabled (Check) field in DocType 'User' @@ -8830,19 +8897,19 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" -msgstr "" +msgstr "เปิดใช้งานแล้ว" #: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" -msgstr "" +msgstr "เปิดใช้งานตัวจัดตารางเวลาแล้ว" #: frappe/email/doctype/email_account/email_account.py:1010 msgid "Enabled email inbox for user {0}" -msgstr "" +msgstr "เปิดใช้งานกล่องจดหมายอีเมลสำหรับผู้ใช้ {0}" #. Description of the 'Is Calendar and Gantt' (Check) field in DocType #. 'DocType' @@ -8851,16 +8918,16 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enables Calendar and Gantt views." -msgstr "" +msgstr "เปิดใช้งานมุมมองปฏิทินและ Gantt" #: frappe/email/doctype/email_account/email_account.js:295 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" -msgstr "" +msgstr "การเปิดใช้งานการตอบกลับอัตโนมัติในบัญชีอีเมลขาเข้าจะส่งการตอบกลับอัตโนมัติไปยังอีเมลที่ซิงค์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?" #. Description of a DocType #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" +msgstr "การเปิดใช้งานนี้จะลงทะเบียนไซต์ของคุณบนเซิร์ฟเวอร์รีเลย์กลางเพื่อส่งการแจ้งเตือนแบบพุชสำหรับแอปที่ติดตั้งทั้งหมดผ่าน Firebase Cloud Messaging เซิร์ฟเวอร์นี้จะจัดเก็บเฉพาะโทเค็นของผู้ใช้และบันทึกข้อผิดพลาด และไม่มีการบันทึกข้อความ" #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' @@ -8875,7 +8942,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enabling this will submit documents in background" -msgstr "" +msgstr "การเปิดใช้งานนี้จะส่งเอกสารในพื้นหลัง" #. Label of the encrypt_backup (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -8919,62 +8986,62 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Ended At" -msgstr "" +msgstr "สิ้นสุดที่" #. Label of the sb_endpoints_section (Section Break) field in DocType #. 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Endpoints" -msgstr "" +msgstr "ปลายทาง" #. Label of the ends_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Ends on" -msgstr "" +msgstr "สิ้นสุดในวันที่" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Energy Point" -msgstr "" +msgstr "คะแนนพลังงาน" #. Label of the enqueued_by (Data) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Enqueued By" -msgstr "" +msgstr "จัดคิวโดย" #: frappe/core/doctype/recorder/recorder.py:125 msgid "Enqueued creation of indexes" -msgstr "" +msgstr "จัดคิวการสร้างดัชนี" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 msgid "Ensure the user and group search paths are correct." -msgstr "" +msgstr "ตรวจสอบให้แน่ใจว่าเส้นทางการค้นหาผู้ใช้และกลุ่มถูกต้อง" #: frappe/integrations/doctype/google_calendar/google_calendar.py:109 msgid "Enter Client Id and Client Secret in Google Settings." -msgstr "" +msgstr "ป้อน Client Id และ Client Secret ในการตั้งค่า Google" #: frappe/templates/includes/login/login.js:351 msgid "Enter Code displayed in OTP App." -msgstr "" +msgstr "ป้อนรหัสที่แสดงในแอป OTP" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" -msgstr "" +msgstr "ป้อนผู้รับอีเมล" #. Label of the doc_type (Link) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enter Form Type" -msgstr "" +msgstr "ป้อนประเภทฟอร์ม" #: frappe/public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" msgid "Enter Value" -msgstr "" +msgstr "ป้อนค่า" #: frappe/public/js/frappe/form/form_tour.js:60 msgid "Enter a name for this {0}" -msgstr "" +msgstr "ป้อนชื่อสำหรับ {0} นี้" #. Description of the 'User Defaults' (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -8983,41 +9050,41 @@ msgstr "" #: frappe/public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" -msgstr "" +msgstr "ป้อนชื่อโฟลเดอร์" #. Description of the 'Static Parameters' (Table) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "" +msgstr "ป้อนพารามิเตอร์ URL แบบคงที่ที่นี่ (เช่น sender=ERPNext, username=ERPNext, password=1234 เป็นต้น)" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "" +msgstr "ป้อนพารามิเตอร์ URL สำหรับข้อความ" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "" +msgstr "ป้อนพารามิเตอร์ URL สำหรับหมายเลขผู้รับ" #: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" -msgstr "" +msgstr "ป้อนรหัสผ่านของคุณ" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 msgid "Entity Name" -msgstr "" +msgstr "ชื่อเอนทิตี" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 msgid "Entity Type" -msgstr "" +msgstr "ประเภทเอนทิตี" #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "" +msgstr "เท่ากับ" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -9039,17 +9106,17 @@ msgstr "" #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" -msgstr "" +msgstr "ข้อผิดพลาด" #: frappe/public/js/frappe/web_form/web_form.js:240 msgctxt "Title of error message in web form" msgid "Error" -msgstr "" +msgstr "ข้อผิดพลาด" #. Name of a DocType #: frappe/core/doctype/error_log/error_log.json msgid "Error Log" -msgstr "" +msgstr "บันทึกข้อผิดพลาด" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json @@ -9059,71 +9126,79 @@ msgstr "" #. Label of the error_message (Text) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" -msgstr "" +msgstr "ข้อความข้อผิดพลาด" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Error connecting via IMAP/POP3: {e}" -msgstr "" +msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน IMAP/POP3: {e}" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Error connecting via SMTP: {e}" -msgstr "" +msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน SMTP: {e}" #: frappe/email/doctype/email_domain/email_domain.py:101 msgid "Error has occurred in {0}" -msgstr "" +msgstr "เกิดข้อผิดพลาดใน {0}" #: frappe/public/js/frappe/form/script_manager.js:199 msgid "Error in Client Script" -msgstr "" +msgstr "ข้อผิดพลาดใน Client Script" #: frappe/public/js/frappe/form/script_manager.js:256 msgid "Error in Client Script." -msgstr "" +msgstr "ข้อผิดพลาดใน Client Script." #: frappe/printing/doctype/letter_head/letter_head.js:21 msgid "Error in Header/Footer Script" -msgstr "" +msgstr "ข้อผิดพลาดในสคริปต์ส่วนหัว/ส่วนท้าย" #: frappe/email/doctype/notification/notification.py:598 #: frappe/email/doctype/notification/notification.py:735 #: frappe/email/doctype/notification/notification.py:741 msgid "Error in Notification" -msgstr "" +msgstr "ข้อผิดพลาดในการแจ้งเตือน" #: frappe/utils/pdf.py:59 msgid "Error in print format on line {0}: {1}" +msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" -msgstr "" +msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}" #: frappe/email/doctype/notification/notification.py:732 msgid "Error while evaluating Notification {0}. Please fix your template." -msgstr "" +msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ" #: frappe/model/base_document.py:803 msgid "Error: Data missing in table {0}" -msgstr "" +msgstr "ข้อผิดพลาด: ข้อมูลหายไปในตาราง {0}" #: frappe/model/base_document.py:813 msgid "Error: Value missing for {0}: {1}" -msgstr "" +msgstr "ข้อผิดพลาด: ค่าหายไปสำหรับ {0}: {1}" #: frappe/model/base_document.py:807 msgid "Error: {0} Row #{1}: Value missing for: {2}" -msgstr "" +msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหายไปสำหรับ: {2}" #. Label of the errors_generated_in_last_1_day_section (Section Break) field in #. DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Errors" -msgstr "" +msgstr "ข้อผิดพลาด" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Name of a DocType @@ -9131,56 +9206,56 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json msgid "Event" -msgstr "" +msgstr "เหตุการณ์" #. Label of the event_category (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Event Category" -msgstr "" +msgstr "หมวดหมู่เหตุการณ์" #. Label of the event_frequency (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Event Frequency" -msgstr "" +msgstr "ความถี่ของเหตุการณ์" #. Label of the event_participants (Table) field in DocType 'Event' #. Name of a DocType #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json msgid "Event Participants" -msgstr "" +msgstr "ผู้เข้าร่วมเหตุการณ์" #. Label of the enable_email_event_reminders (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Event Reminders" -msgstr "" +msgstr "การเตือนเหตุการณ์" #: frappe/integrations/doctype/google_calendar/google_calendar.py:493 #: frappe/integrations/doctype/google_calendar/google_calendar.py:577 msgid "Event Synced with Google Calendar." -msgstr "" +msgstr "เหตุการณ์ซิงค์กับ Google Calendar แล้ว" #. Label of the event_type (Data) field in DocType 'Recorder' #. Label of the event_type (Select) field in DocType 'Event' #: frappe/core/doctype/recorder/recorder.json #: frappe/desk/doctype/event/event.json msgid "Event Type" -msgstr "" +msgstr "ประเภทเหตุการณ์" #: frappe/public/js/frappe/ui/notifications/notifications.js:56 msgid "Events" -msgstr "" +msgstr "เหตุการณ์" #: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" -msgstr "" +msgstr "เหตุการณ์ในปฏิทินวันนี้" #. Label of the everyone (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json #: frappe/public/js/frappe/form/templates/set_sharing.html:11 msgid "Everyone" -msgstr "" +msgstr "ทุกคน" #. Description of the 'Custom Options' (Code) field in DocType 'Dashboard #. Chart' @@ -9191,12 +9266,12 @@ msgstr "" #. Label of the exact_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Exact Copies" -msgstr "" +msgstr "สำเนาที่เหมือนกัน" #. Label of the example (HTML) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Example" -msgstr "" +msgstr "ตัวอย่าง" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' @@ -9207,33 +9282,33 @@ msgstr "" #. Description of the 'Path' (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Example: #Tree/Account" -msgstr "" +msgstr "ตัวอย่าง: #Tree/Account" #. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Example: 00001" -msgstr "" +msgstr "ตัวอย่าง: 00001" #. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." -msgstr "" +msgstr "ตัวอย่าง: การตั้งค่านี้เป็น 24:00 จะออกจากระบบผู้ใช้หากพวกเขาไม่ใช้งานเป็นเวลา 24:00 ชั่วโมง" #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Example: {{ subject }}" -msgstr "" +msgstr "ตัวอย่าง: {{ subject }}" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Excel" -msgstr "" +msgstr "เอ็กเซล" #: frappe/public/js/frappe/form/controls/password.js:90 msgid "Excellent" -msgstr "" +msgstr "ยอดเยี่ยม" #. Label of the exception (Text) field in DocType 'Data Import Log' #. Label of the exc_info (Code) field in DocType 'RQ Job' @@ -9242,7 +9317,7 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Exception" -msgstr "" +msgstr "ข้อยกเว้น" #. Label of the execute_section (Section Break) field in DocType 'System #. Console' @@ -9250,59 +9325,63 @@ msgstr "" #: frappe/desk/doctype/system_console/system_console.js:22 #: frappe/desk/doctype/system_console/system_console.json msgid "Execute" -msgstr "" +msgstr "ดำเนินการ" #: frappe/desk/doctype/system_console/system_console.js:10 msgid "Execute Console script" -msgstr "" +msgstr "ดำเนินการสคริปต์คอนโซล" #: frappe/public/js/frappe/ui/dropdown_console.js:125 msgid "Executing Code" -msgstr "" +msgstr "กำลังดำเนินการโค้ด" #: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." -msgstr "" +msgstr "กำลังดำเนินการ..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" -msgstr "" +msgstr "เวลาการดำเนินการ: {0} วินาที" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Executive" -msgstr "" +msgstr "ผู้บริหาร" #. Label of the existing_role (Link) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "Existing Role" -msgstr "" +msgstr "บทบาทที่มีอยู่" #: frappe/public/js/frappe/views/treeview.js:115 #: frappe/public/js/frappe/views/treeview.js:127 #: frappe/public/js/frappe/views/treeview.js:137 #: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" -msgstr "" +msgstr "ขยาย" #: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" -msgstr "" +msgstr "ขยาย" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" +msgstr "ขยายทั้งหมด" + +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" -msgstr "" +msgstr "การทดลอง" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Expert" -msgstr "" +msgstr "ผู้เชี่ยวชาญ" #. Label of the expiration_time (Datetime) field in DocType 'OAuth #. Authorization Code' @@ -9311,34 +9390,34 @@ msgstr "" #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Expiration time" -msgstr "" +msgstr "เวลาหมดอายุ" #. Label of the expire_notification_on (Datetime) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Expire Notification On" -msgstr "" +msgstr "การแจ้งเตือนหมดอายุเมื่อ" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Expired" -msgstr "" +msgstr "หมดอายุ" #. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' #. Label of the expires_in (Int) field in DocType 'Token Cache' #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Expires In" -msgstr "" +msgstr "หมดอายุใน" #. Label of the expires_on (Date) field in DocType 'Document Share Key' #: frappe/core/doctype/document_share_key/document_share_key.json msgid "Expires On" -msgstr "" +msgstr "หมดอายุเมื่อ" #. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Expiry time of QR Code Image Page" -msgstr "" +msgstr "เวลาหมดอายุของหน้าภาพ QR Code" #. Label of the export (Check) field in DocType 'Custom DocPerm' #. Label of the export (Check) field in DocType 'DocPerm' @@ -9347,130 +9426,130 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" -msgstr "" +msgstr "ส่งออก" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" -msgstr "" +msgstr "ส่งออก" #: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" -msgstr "" +msgstr "ส่งออก 1 รายการ" #: frappe/custom/doctype/customize_form/customize_form.js:262 msgid "Export Custom Permissions" -msgstr "" +msgstr "ส่งออกสิทธิ์ที่กำหนดเอง" #: frappe/custom/doctype/customize_form/customize_form.js:242 msgid "Export Customizations" -msgstr "" +msgstr "ส่งออกการปรับแต่ง" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" -msgstr "" +msgstr "ส่งออกข้อมูล" #: frappe/core/doctype/data_import/data_import.js:86 #: frappe/public/js/frappe/data_import/import_preview.js:199 msgid "Export Errored Rows" -msgstr "" +msgstr "ส่งออกแถวที่มีข้อผิดพลาด" #. Label of the export_from (Data) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Export From" -msgstr "" +msgstr "ส่งออกจาก" #: frappe/core/doctype/data_import/data_import.js:518 msgid "Export Import Log" -msgstr "" +msgstr "ส่งออกบันทึกการนำเข้า" #: frappe/public/js/frappe/views/reports/report_utils.js:235 msgctxt "Export report" msgid "Export Report: {0}" -msgstr "" +msgstr "ส่งออกรายงาน: {0}" #: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" -msgstr "" +msgstr "ประเภทการส่งออก" #: frappe/public/js/frappe/views/reports/report_view.js:1638 msgid "Export all matching rows?" -msgstr "" +msgstr "ส่งออกแถวที่ตรงกันทั้งหมดหรือไม่?" #: frappe/public/js/frappe/views/reports/report_view.js:1648 msgid "Export all {0} rows?" -msgstr "" +msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม่?" #: frappe/public/js/frappe/views/file/file_view.js:154 msgid "Export as zip" -msgstr "" +msgstr "ส่งออกเป็น zip" #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." -msgstr "" +msgstr "ไม่อนุญาตให้ส่งออก คุณต้องมีบทบาท {0} เพื่อส่งออก" #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export the data without any header notes and column descriptions" -msgstr "" +msgstr "ส่งออกข้อมูลโดยไม่มีบันทึกส่วนหัวและคำอธิบายคอลัมน์" #. Label of the export_without_main_header (Check) field in DocType 'Data #. Export' #: frappe/core/doctype/data_export/data_export.json msgid "Export without main header" -msgstr "" +msgstr "ส่งออกโดยไม่มีส่วนหัวหลัก" #: frappe/public/js/frappe/data_import/data_exporter.js:247 msgid "Export {0} records" -msgstr "" +msgstr "ส่งออก {0} รายการ" #: frappe/custom/doctype/customize_form/customize_form.js:263 msgid "Exported permissions will be force-synced on every migrate overriding any other customization." -msgstr "" +msgstr "สิทธิ์ที่ส่งออกจะถูกซิงค์โดยบังคับในทุกการย้ายข้อมูลแทนที่การปรับแต่งอื่น ๆ" #. Label of the expose_recipients (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "" +msgstr "เปิดเผยผู้รับ" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression" -msgstr "" +msgstr "นิพจน์" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression (old style)" -msgstr "" +msgstr "นิพจน์ (รูปแบบเก่า)" #. Description of the 'Condition' (Data) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "" +msgstr "นิพจน์, ไม่บังคับ" #. Label of the external_link (Data) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/views/workspace/workspace.js:426 msgid "External Link" -msgstr "" +msgstr "ลิงก์ภายนอก" #. Label of the section_break_18 (Section Break) field in DocType 'Connected #. App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Extra Parameters" -msgstr "" +msgstr "พารามิเตอร์เพิ่มเติม" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -9573,95 +9652,95 @@ msgstr "" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 msgid "Failed to generate preview of series" -msgstr "" +msgstr "ล้มเหลวในการสร้างตัวอย่างของซีรีส์" #: frappe/handler.py:75 msgid "Failed to get method for command {0} with {1}" -msgstr "" +msgstr "ล้มเหลวในการดึงวิธีการสำหรับคำสั่ง {0} ด้วย {1}" #: frappe/api/v2.py:46 msgid "Failed to get method {0} with {1}" -msgstr "" +msgstr "ล้มเหลวในการดึงวิธีการ {0} ด้วย {1}" #: frappe/integrations/frappe_providers/frappecloud_billing.py:59 msgid "Failed to get site info" -msgstr "" +msgstr "ล้มเหลวในการดึงข้อมูลไซต์" #: frappe/model/virtual_doctype.py:63 msgid "Failed to import virtual doctype {}, is controller file present?" -msgstr "" +msgstr "ล้มเหลวในการนำเข้า virtual doctype {}, มีไฟล์ตัวควบคุมอยู่หรือไม่?" #: frappe/utils/image.py:75 msgid "Failed to optimize image: {0}" -msgstr "" +msgstr "ล้มเหลวในการปรับแต่งภาพ: {0}" #: frappe/email/doctype/notification/notification.py:116 msgid "Failed to render message: {}" -msgstr "" +msgstr "ล้มเหลวในการแสดงข้อความ: {}" #: frappe/email/doctype/notification/notification.py:134 msgid "Failed to render subject: {}" -msgstr "" +msgstr "ล้มเหลวในการแสดงหัวเรื่อง: {}" #: frappe/integrations/frappe_providers/frappecloud_billing.py:94 msgid "Failed to request login to Frappe Cloud" -msgstr "" +msgstr "ล้มเหลวในการร้องขอเข้าสู่ระบบ Frappe Cloud" #: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" -msgstr "" +msgstr "ล้มเหลวในการส่งอีเมลที่มีหัวเรื่อง:" #: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" -msgstr "" +msgstr "ล้มเหลวในการส่งอีเมลแจ้งเตือน" #: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" -msgstr "" +msgstr "ล้มเหลวในการอัปเดตการตั้งค่าทั่วโลก" #: frappe/integrations/frappe_providers/frappecloud_billing.py:74 msgid "Failed while calling API {0}" -msgstr "" +msgstr "ล้มเหลวขณะเรียก API {0}" #. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failing Scheduled Jobs (last 7 days)" -msgstr "" +msgstr "งานที่กำหนดเวลาไว้ล้มเหลว (7 วันที่ผ่านมา)" #: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" -msgstr "" +msgstr "ความล้มเหลว" #. Label of the failure_rate (Percent) field in DocType 'System Health Report #. Failing Jobs' #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Failure Rate" -msgstr "" +msgstr "อัตราความล้มเหลว" #. Label of the favicon (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "FavIcon" -msgstr "" +msgstr "ไอคอนโปรด" #. Label of the fax (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "" +msgstr "แฟกซ์" #. Label of the featured (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 msgid "Featured" -msgstr "" +msgstr "แนะนำ" #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" -msgstr "" +msgstr "ข้อเสนอแนะ" #: frappe/desk/page/setup_wizard/install_fixtures.py:29 msgid "Female" -msgstr "" +msgstr "หญิง" #. Label of the fetch_from (Small Text) field in DocType 'DocField' #. Label of the fetch_from (Small Text) field in DocType 'Custom Field' @@ -9672,15 +9751,15 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 msgid "Fetch From" -msgstr "" +msgstr "ดึงข้อมูลจาก" #: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" -msgstr "" +msgstr "ดึงภาพ" #: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" -msgstr "" +msgstr "ดึงภาพที่แนบมาจากเอกสาร" #. Label of the fetch_if_empty (Check) field in DocType 'DocField' #. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' @@ -9689,11 +9768,11 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" -msgstr "" +msgstr "ดึงข้อมูลเมื่อบันทึกหากว่างเปล่า" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." -msgstr "" +msgstr "กำลังดึงเอกสารการค้นหาทั่วโลกเริ่มต้น" #. Label of the field (Select) field in DocType 'Assignment Rule' #. Label of the field (Select) field in DocType 'Document Naming Rule @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10177,33 +10268,33 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 msgid "First Name" -msgstr "" +msgstr "ชื่อแรก" #. Label of the first_success_message (Data) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "First Success Message" -msgstr "" +msgstr "ข้อความความสำเร็จครั้งแรก" #: frappe/core/report/transaction_log_report/transaction_log_report.py:49 msgid "First Transaction" -msgstr "" +msgstr "ธุรกรรมแรก" #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." -msgstr "" +msgstr "คอลัมน์ข้อมูลแรกต้องว่างเปล่า" #: frappe/website/doctype/website_slideshow/website_slideshow.js:7 msgid "First set the name and save the record." -msgstr "" +msgstr "ตั้งชื่อก่อนแล้วบันทึกบันทึก" #: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 msgid "Fit" -msgstr "" +msgstr "พอดี" #. Label of the flag (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Flag" -msgstr "" +msgstr "ธง" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -10218,12 +10309,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Float" -msgstr "" +msgstr "ลอยตัว" #. Label of the float_precision (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Float Precision" -msgstr "" +msgstr "ความแม่นยำของการลอยตัว" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -10236,85 +10327,81 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fold" -msgstr "" +msgstr "พับ" #: frappe/core/doctype/doctype/doctype.py:1450 msgid "Fold can not be at the end of the form" -msgstr "" +msgstr "การพับไม่สามารถอยู่ที่ส่วนท้ายของฟอร์มได้" #: frappe/core/doctype/doctype/doctype.py:1448 msgid "Fold must come before a Section Break" -msgstr "" +msgstr "การพับต้องมาก่อนการแบ่งส่วน" #. Label of the folder (Link) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Folder" -msgstr "" +msgstr "โฟลเดอร์" #. Label of the folder_name (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/imap_folder/imap_folder.json msgid "Folder Name" -msgstr "" +msgstr "ชื่อโฟลเดอร์" #: frappe/public/js/frappe/views/file/file_view.js:100 msgid "Folder name should not include '/' (slash)" -msgstr "" +msgstr "ชื่อโฟลเดอร์ไม่ควรรวม '/' (สแลช)" #: frappe/core/doctype/file/file.py:472 msgid "Folder {0} is not empty" -msgstr "" +msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Folio" -msgstr "" +msgstr "โฟลิโอ" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" -msgstr "" +msgstr "ติดตาม" #: frappe/public/js/frappe/form/templates/form_sidebar.html:101 msgid "Followed by" -msgstr "" +msgstr "ตามด้วย" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" -msgstr "" +msgstr "ตัวกรองรายงานต่อไปนี้มีค่าที่ขาดหายไป:" #: frappe/desk/form/document_follow.py:63 msgid "Following document {0}" -msgstr "" +msgstr "เอกสารต่อไปนี้ {0}" #: frappe/website/doctype/web_form/web_form.py:108 msgid "Following fields are missing:" -msgstr "" +msgstr "ฟิลด์ต่อไปนี้ขาดหายไป:" #: frappe/public/js/frappe/ui/field_group.js:139 msgid "Following fields have invalid values:" -msgstr "" +msgstr "ฟิลด์ต่อไปนี้มีค่าที่ไม่ถูกต้อง:" #: frappe/public/js/frappe/widgets/widget_dialog.js:358 msgid "Following fields have missing values" -msgstr "" +msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป" #: frappe/public/js/frappe/ui/field_group.js:126 msgid "Following fields have missing values:" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" +msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:" #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" -msgstr "" +msgstr "ฟอนต์" #. Label of the font_properties (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Properties" -msgstr "" +msgstr "คุณสมบัติฟอนต์" #. Label of the font_size (Int) field in DocType 'Print Format' #. Label of the font_size (Float) field in DocType 'Print Settings' @@ -10324,13 +10411,13 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Size" -msgstr "" +msgstr "ขนาดฟอนต์" #. Label of the section_break_8 (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Fonts" -msgstr "" +msgstr "ฟอนต์" #. Label of the set_footer (Section Break) field in DocType 'Email Account' #. Label of the footer_section (Section Break) field in DocType 'Letter Head' @@ -10343,7 +10430,7 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer" -msgstr "" +msgstr "ส่วนท้าย" #. Label of the footer_powered (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -10353,70 +10440,70 @@ msgstr "" #. Label of the footer_source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Based On" -msgstr "" +msgstr "ส่วนท้ายตาม" #. Label of the footer (Text Editor) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Footer Content" -msgstr "" +msgstr "เนื้อหาส่วนท้าย" #. Label of the footer_details_section (Section Break) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Details" -msgstr "" +msgstr "รายละเอียดส่วนท้าย" #. Label of the footer (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" -msgstr "" +msgstr "HTML ส่วนท้าย" #: frappe/printing/doctype/letter_head/letter_head.py:75 msgid "Footer HTML set from attachment {0}" -msgstr "" +msgstr "HTML ส่วนท้ายตั้งค่าจากไฟล์แนบ {0}" #. Label of the footer_image_section (Section Break) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Image" -msgstr "" +msgstr "ภาพส่วนท้าย" #. Label of the footer (Section Break) field in DocType 'Website Settings' #. Label of the footer_items (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Items" -msgstr "" +msgstr "รายการส่วนท้าย" #. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Logo" -msgstr "" +msgstr "โลโก้ส่วนท้าย" #. Label of the footer_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer Script" -msgstr "" +msgstr "สคริปต์ส่วนท้าย" #. Label of the footer_template (Link) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template" -msgstr "" +msgstr "แม่แบบส่วนท้าย" #. Label of the footer_template_values (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Template Values" -msgstr "" +msgstr "ค่าแม่แบบส่วนท้าย" #: frappe/printing/page/print/print.js:116 msgid "Footer might not be visible as {0} option is disabled" -msgstr "" +msgstr "ส่วนท้ายอาจมองไม่เห็นเนื่องจากตัวเลือก {0} ถูกปิดใช้งาน" #. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer will display correctly only in PDF" -msgstr "" +msgstr "ส่วนท้ายจะแสดงผลได้ถูกต้องเฉพาะใน PDF" #. Label of the for_doctype (Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10501,21 +10588,21 @@ msgstr "" #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." -msgstr "" +msgstr "สำหรับข้อมูลเพิ่มเติม {0}" #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" -msgstr "" +msgstr "สำหรับที่อยู่หลายรายการ ให้ป้อนที่อยู่ในบรรทัดต่าง ๆ เช่น test@test.com ⏎ test1@test.com" #: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "" +msgstr "สำหรับการอัปเดต คุณสามารถอัปเดตเฉพาะคอลัมน์ที่เลือกได้" #: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" -msgstr "" +msgstr "สำหรับ {0} ที่ระดับ {1} ใน {2} ในแถว {3}" #. Label of the force (Check) field in DocType 'Package Import' #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth @@ -10523,7 +10610,7 @@ msgstr "" #: frappe/core/doctype/package_import/package_import.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Force" -msgstr "" +msgstr "บังคับ" #. Label of the force_re_route_to_default_view (Check) field in DocType #. 'DocType' @@ -10532,32 +10619,32 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Force Re-route to Default View" -msgstr "" +msgstr "บังคับเปลี่ยนเส้นทางไปยังมุมมองเริ่มต้น" #. Label of the force_show (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Force Show" -msgstr "" +msgstr "บังคับแสดง" #: frappe/core/doctype/rq_job/rq_job.js:13 msgid "Force Stop job" -msgstr "" +msgstr "บังคับหยุดงาน" #. Label of the force_user_to_reset_password (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Force User to Reset Password" -msgstr "" +msgstr "บังคับให้ผู้ใช้รีเซ็ตรหัสผ่าน" #. Label of the force_web_capture_mode_for_uploads (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Force Web Capture Mode for Uploads" -msgstr "" +msgstr "บังคับโหมดจับภาพเว็บสำหรับการอัปโหลด" #: frappe/www/login.html:37 msgid "Forgot Password?" -msgstr "" +msgstr "ลืมรหัสผ่าน?" #. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' @@ -10571,19 +10658,19 @@ msgstr "" #: frappe/printing/page/print/print.js:83 #: frappe/website/doctype/web_form/web_form.json msgid "Form" -msgstr "" +msgstr "ฟอร์ม" #. Label of the form_builder (HTML) field in DocType 'DocType' #. Label of the form_builder (HTML) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Form Builder" -msgstr "" +msgstr "ตัวสร้างฟอร์ม" #. Label of the form_dict (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Form Dict" -msgstr "" +msgstr "พจนานุกรมฟอร์ม" #. Label of the form_settings_section (Section Break) field in DocType #. 'DocType' @@ -10596,24 +10683,24 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/website/doctype/web_form/web_form.json msgid "Form Settings" -msgstr "" +msgstr "การตั้งค่าฟอร์ม" #. Name of a DocType #. Label of the form_tour (Link) field in DocType 'Onboarding Step' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Form Tour" -msgstr "" +msgstr "ทัวร์ฟอร์ม" #. Name of a DocType #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Form Tour Step" -msgstr "" +msgstr "ขั้นตอนทัวร์ฟอร์ม" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Form URL-Encoded" -msgstr "" +msgstr "ฟอร์มที่เข้ารหัส URL" #. Label of the format (Data) field in DocType 'Workspace Shortcut' #. Label of the format (Select) field in DocType 'Auto Email Report' @@ -10621,31 +10708,31 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/widgets/widget_dialog.js:565 msgid "Format" -msgstr "" +msgstr "รูปแบบ" #. Label of the format_data (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Format Data" -msgstr "" +msgstr "จัดรูปแบบข้อมูล" #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" -msgstr "" +msgstr "ส่งต่อ" #. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Forward To Email Address" -msgstr "" +msgstr "ส่งต่อไปยังที่อยู่อีเมล" #. Label of the fraction (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Fraction" -msgstr "" +msgstr "เศษส่วน" #. Label of the fraction_units (Int) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Fraction Units" -msgstr "" +msgstr "หน่วยเศษส่วน" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -10653,44 +10740,44 @@ msgstr "" #: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 #: frappe/www/login.py:153 msgid "Frappe" -msgstr "" +msgstr "ฟรัปเป้" #: frappe/public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" -msgstr "" +msgstr "เฟรมเวิร์กฟรัปเป้" #: frappe/public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" -msgstr "" +msgstr "ฟรัปเป้ไลท์" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail" -msgstr "" +msgstr "ฟรัปเป้เมล" #: frappe/email/doctype/email_account/email_account.py:547 msgid "Frappe Mail OAuth Error" -msgstr "" +msgstr "ข้อผิดพลาด OAuth ของฟรัปเป้เมล" #. Label of the frappe_mail_site (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail Site" -msgstr "" +msgstr "ไซต์ฟรัปเป้เมล" #. Label of a standard help item #. Type: Route #: frappe/hooks.py msgid "Frappe Support" -msgstr "" +msgstr "การสนับสนุนฟรัปเป้" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Frappe page builder using components" -msgstr "" +msgstr "ตัวสร้างหน้าฟรัปเป้โดยใช้คอมโพเนนต์" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 msgctxt "Image Cropper" msgid "Free" -msgstr "" +msgstr "ฟรี" #. Label of the frequency (Select) field in DocType 'Auto Repeat' #. Label of the frequency (Select) field in DocType 'Scheduled Job Type' @@ -10703,7 +10790,7 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:395 msgid "Frequency" -msgstr "" +msgstr "ความถี่" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -10719,55 +10806,53 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Friday" -msgstr "" +msgstr "วันศุกร์" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" -msgstr "" +msgstr "จาก" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" -msgstr "" +msgstr "จาก" #. Label of the from_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:8 msgid "From Date" -msgstr "" +msgstr "จากวันที่" #. Label of the from_date_field (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "From Date Field" -msgstr "" +msgstr "ฟิลด์จากวันที่" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" -msgstr "" +msgstr "จากประเภทเอกสาร" #. Label of the sender_full_name (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "" +msgstr "จากชื่อเต็ม" #. Label of the from_user (Link) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "From User" -msgstr "" +msgstr "จากผู้ใช้" #: frappe/public/js/frappe/utils/diffview.js:31 msgid "From version" -msgstr "" +msgstr "จากเวอร์ชัน" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Full" -msgstr "" +msgstr "เต็ม" #. Label of the full_name (Data) field in DocType 'Contact' #. Label of the full_name (Data) field in DocType 'Activity Log' @@ -10782,37 +10867,41 @@ msgstr "" #: frappe/website/doctype/about_us_team_member/about_us_team_member.json #: frappe/website/doctype/blogger/blogger.json msgid "Full Name" -msgstr "" +msgstr "ชื่อเต็ม" #: frappe/printing/page/print/print.js:67 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "" +msgstr "เต็มหน้า" #. Label of the full_width (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Full Width" -msgstr "" +msgstr "ความกว้างเต็ม" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" -msgstr "" +msgstr "ฟังก์ชัน" #: frappe/public/js/frappe/widgets/widget_dialog.js:706 msgid "Function Based On" -msgstr "" +msgstr "ฟังก์ชันตาม" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." +msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต" + +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "" +msgstr "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11133,7 +11222,7 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:181 msgid "Google Calendar has been configured." -msgstr "" +msgstr "ปฏิทิน Google ได้รับการกำหนดค่าแล้ว" #. Label of the sb_00 (Section Break) field in DocType 'Contact' #. Label of the google_contacts (Link) field in DocType 'Contact' @@ -11144,23 +11233,21 @@ msgstr "" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" -msgstr "" +msgstr "รายชื่อ Google" #: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." -msgstr "" +msgstr "รายชื่อ Google - ไม่สามารถซิงค์รายชื่อจาก Google Contacts {0}, รหัสข้อผิดพลาด {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:294 msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." -msgstr "" +msgstr "รายชื่อ Google - ไม่สามารถอัปเดตรายชื่อใน Google Contacts {0}, รหัสข้อผิดพลาด {1}." #. Label of the google_contacts_id (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Google Contacts Id" -msgstr "" +msgstr "รหัสรายชื่อ Google" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11169,13 +11256,13 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker" -msgstr "" +msgstr "ตัวเลือก Google Drive" #. Label of the google_drive_picker_enabled (Check) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker Enabled" -msgstr "" +msgstr "เปิดใช้งานตัวเลือก Google Drive" #. Label of the font (Data) field in DocType 'Print Format' #. Label of the google_font (Data) field in DocType 'Website Theme' @@ -11183,12 +11270,12 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 #: frappe/website/doctype/website_theme/website_theme.json msgid "Google Font" -msgstr "" +msgstr "ฟอนต์ Google" #. Label of the google_meet_link (Small Text) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Google Meet Link" -msgstr "" +msgstr "ลิงก์ Google Meet" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json @@ -11197,14 +11284,15 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" -msgstr "" +msgstr "การตั้งค่า Google" #: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." -msgstr "" +msgstr "URL ของ Google Sheets ไม่ถูกต้องหรือไม่สามารถเข้าถึงได้สาธารณะ" #: frappe/utils/csvutils.py:231 msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." @@ -11213,54 +11301,54 @@ msgstr "" #. Label of the google_preview (HTML) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Google Snippet Preview" -msgstr "" +msgstr "ตัวอย่าง Google Snippet" #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" -msgstr "" +msgstr "ประเภทการมอบ" #: frappe/public/js/frappe/form/dashboard.js:34 #: frappe/public/js/frappe/form/templates/form_dashboard.html:10 msgid "Graph" -msgstr "" +msgstr "กราฟ" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" -msgstr "" +msgstr "สีเทา" #: frappe/public/js/frappe/ui/filters/filter.js:23 msgid "Greater Than" -msgstr "" +msgstr "มากกว่า" #: frappe/public/js/frappe/ui/filters/filter.js:25 msgid "Greater Than Or Equal To" -msgstr "" +msgstr "มากกว่าหรือเท่ากับ" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Green" -msgstr "" +msgstr "สีเขียว" #: frappe/public/js/form_builder/components/controls/TableControl.vue:53 msgid "Grid Empty State" -msgstr "" +msgstr "สถานะว่างของกริด" #. Label of the grid_page_length (Int) field in DocType 'DocType' #. Label of the grid_page_length (Int) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "" +msgstr "ความยาวหน้ากริด" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" -msgstr "" +msgstr "ทางลัดกริด" #. Label of the group (Data) field in DocType 'DocType Action' #. Label of the group (Data) field in DocType 'DocType Link' @@ -11269,45 +11357,49 @@ msgstr "" #: frappe/core/doctype/doctype_link/doctype_link.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Group" -msgstr "" +msgstr "กลุ่ม" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" -msgstr "" +msgstr "จัดกลุ่มตาม" #. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Based On" -msgstr "" +msgstr "จัดกลุ่มตามตาม" #. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Type" -msgstr "" +msgstr "จัดกลุ่มตามประเภท" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 msgid "Group By field is required to create a dashboard chart" +msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด" + +#: frappe/database/query.py:750 +msgid "Group By must be a string" msgstr "" #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" -msgstr "" +msgstr "โหนดกลุ่ม" #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" -msgstr "" +msgstr "คลาสวัตถุกลุ่ม" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" -msgstr "" +msgstr "จัดกลุ่มตาม {0}" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11373,79 +11463,79 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "HTML Editor" -msgstr "" +msgstr "ตัวแก้ไข HTML" #. Label of the page (HTML Editor) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "HTML Page" -msgstr "" +msgstr "หน้า HTML" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "HTML for header section. Optional" -msgstr "" +msgstr "HTML สำหรับส่วนหัว ส่วนเสริม" #: frappe/website/doctype/web_page/web_page.js:92 msgid "HTML with jinja support" -msgstr "" +msgstr "HTML พร้อมการสนับสนุน jinja" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Half" -msgstr "" +msgstr "ครึ่ง" #. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Half Yearly" -msgstr "" +msgstr "ครึ่งปี" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/public/js/frappe/utils/common.js:402 msgid "Half-yearly" -msgstr "" +msgstr "ครึ่งปี" #. Label of the handled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Handled Emails" -msgstr "" +msgstr "อีเมลที่จัดการแล้ว" #. Label of the has_attachment (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Has Attachment" -msgstr "" +msgstr "มีไฟล์แนบ" #. Name of a DocType #: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" -msgstr "" +msgstr "มีโดเมน" #. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Has Next Condition" -msgstr "" +msgstr "มีเงื่อนไขถัดไป" #. Name of a DocType #: frappe/core/doctype/has_role/has_role.json msgid "Has Role" -msgstr "" +msgstr "มีบทบาท" #. Label of the has_setup_wizard (Check) field in DocType 'Installed #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Has Setup Wizard" -msgstr "" +msgstr "มีตัวช่วยตั้งค่า" #. Label of the has_web_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Has Web View" -msgstr "" +msgstr "มีมุมมองเว็บ" #: frappe/templates/signup.html:19 msgid "Have an account? Login" -msgstr "" +msgstr "มีบัญชีหรือไม่? เข้าสู่ระบบ" #. Label of the header (Check) field in DocType 'SMS Parameter' #. Label of the header_section (Section Break) field in DocType 'Letter Head' @@ -11456,43 +11546,43 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "" +msgstr "ส่วนหัว" #. Label of the content (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" -msgstr "" +msgstr "HTML ส่วนหัว" #: frappe/printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" -msgstr "" +msgstr "HTML ส่วนหัวตั้งค่าจากไฟล์แนบ {0}" #. Label of the header_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header Script" -msgstr "" +msgstr "สคริปต์ส่วนหัว" #. Label of the sb2 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Header and Breadcrumbs" -msgstr "" +msgstr "ส่วนหัวและเส้นทางนำทาง" #. Label of the section_break_38 (Tab Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Header, Robots" -msgstr "" +msgstr "ส่วนหัว, หุ่นยนต์" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Header/Footer scripts can be used to add dynamic behaviours." -msgstr "" +msgstr "สคริปต์ส่วนหัว/ส่วนท้ายสามารถใช้เพื่อเพิ่มพฤติกรรมแบบไดนามิก" #. Label of the webhook_headers (Table) field in DocType 'Webhook' #. Label of the headers (Code) field in DocType 'Webhook Request Log' #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Headers" -msgstr "" +msgstr "ส่วนหัว" #: frappe/email/email_body.py:322 msgid "Headers must be a dictionary" @@ -11510,16 +11600,16 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Heading" -msgstr "" +msgstr "หัวข้อ" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Heatmap" -msgstr "" +msgstr "แผนที่ความร้อน" #: frappe/templates/emails/new_user.html:2 msgid "Hello" -msgstr "" +msgstr "สวัสดี" #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' @@ -11530,41 +11620,41 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/navbar.html:87 #: frappe/public/js/frappe/utils/help.js:27 msgid "Help" -msgstr "" +msgstr "ช่วยเหลือ" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/help_article/help_article.json #: frappe/website/workspace/website/website.json msgid "Help Article" -msgstr "" +msgstr "บทความช่วยเหลือ" #. Label of the help_articles (Int) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Help Articles" -msgstr "" +msgstr "บทความช่วยเหลือ" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/help_category/help_category.json #: frappe/website/workspace/website/website.json msgid "Help Category" -msgstr "" +msgstr "หมวดหมู่ช่วยเหลือ" #. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" -msgstr "" +msgstr "เมนูช่วยเหลือแบบเลื่อนลง" #. Label of the help_html (HTML) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "" +msgstr "HTML ช่วยเหลือ" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" -msgstr "" +msgstr "ช่วยเหลือในการค้นหา" #. Description of the 'Content' (Text Editor) field in DocType 'Note' #: frappe/desk/doctype/note/note.json @@ -11574,25 +11664,25 @@ msgstr "" #. Label of the helpful (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Helpful" -msgstr "" +msgstr "มีประโยชน์" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "" +msgstr "เฮลเวติกา" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" -msgstr "" +msgstr "เฮลเวติกา นอย" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" -msgstr "" +msgstr "นี่คือลิงก์ติดตามของคุณ" #: frappe/www/qrcode.html:9 msgid "Hi {0}" -msgstr "" +msgstr "สวัสดี {0}" #. Label of the hidden (Check) field in DocType 'DocField' #. Label of the hidden (Check) field in DocType 'DocType Action' @@ -11614,12 +11704,16 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Hidden" -msgstr "" +msgstr "ซ่อน" #. Label of the section_break_13 (Section Break) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hidden Fields" +msgstr "ฟิลด์ที่ซ่อนอยู่" + +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" msgstr "" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -11628,13 +11722,14 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" -msgstr "" +msgstr "ซ่อน" #. Label of the hide_block (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Hide Block" -msgstr "" +msgstr "ซ่อนบล็อก" #. Label of the hide_border (Check) field in DocType 'DocField' #. Label of the hide_border (Check) field in DocType 'Custom Field' @@ -11643,29 +11738,29 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Border" -msgstr "" +msgstr "ซ่อนขอบ" #. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Buttons" -msgstr "" +msgstr "ซ่อนปุ่ม" #. Label of the hide_cta (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Hide CTA" -msgstr "" +msgstr "ซ่อน CTA" #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Hide Copy" -msgstr "" +msgstr "ซ่อนคัดลอก" #. Label of the hide_custom (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "" +msgstr "ซ่อน DocTypes และรายงานที่กำหนดเอง" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11674,46 +11769,46 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Days" -msgstr "" +msgstr "ซ่อนวัน" #. Label of the hide_descendants (Check) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" -msgstr "" +msgstr "ซ่อนลูกหลาน" #. Label of the hide_empty_read_only_fields (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide Empty Read-Only Fields" -msgstr "" +msgstr "ซ่อนฟิลด์ที่อ่านได้อย่างเดียวที่ว่างเปล่า" #: frappe/www/error.html:62 msgid "Hide Error" -msgstr "" +msgstr "ซ่อนข้อผิดพลาด" #: frappe/printing/page/print_format_builder/print_format_builder.js:488 msgid "Hide Label" -msgstr "" +msgstr "ซ่อนป้ายกำกับ" #. Label of the hide_login (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide Login" -msgstr "" +msgstr "ซ่อนการเข้าสู่ระบบ" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "" +msgstr "ซ่อนตัวอย่าง" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Hide Previous, Next and Close button on highlight dialog." -msgstr "" +msgstr "ซ่อนปุ่มก่อนหน้า ถัดไป และปิดในหน้าต่างไฮไลต์" #: frappe/public/js/frappe/list/list_filter.js:94 msgid "Hide Saved" -msgstr "" +msgstr "ซ่อนที่บันทึกไว้" #. Label of the hide_seconds (Check) field in DocType 'DocField' #. Label of the hide_seconds (Check) field in DocType 'Custom Field' @@ -11722,76 +11817,76 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Seconds" -msgstr "" +msgstr "ซ่อนวินาที" #. Label of the hide_toolbar (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" -msgstr "" +msgstr "ซ่อนแถบด้านข้าง เมนู และความคิดเห็น" #. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" -msgstr "" +msgstr "ซ่อนเมนูมาตรฐาน" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" -msgstr "" +msgstr "ซ่อนแท็ก" #: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Hide Weekends" -msgstr "" +msgstr "ซ่อนวันหยุดสุดสัปดาห์" #. Description of the 'Hide Descendants' (Check) field in DocType 'User #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Hide descendant records of For Value." -msgstr "" +msgstr "ซ่อนบันทึกลูกหลานของ For Value." #: frappe/public/js/frappe/form/layout.js:286 msgid "Hide details" -msgstr "" +msgstr "ซ่อนรายละเอียด" #. Label of the hide_footer (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide footer" -msgstr "" +msgstr "ซ่อนส่วนท้าย" #. Label of the hide_footer_in_auto_email_reports (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide footer in auto email reports" -msgstr "" +msgstr "ซ่อนส่วนท้ายในรายงานอีเมลอัตโนมัติ" #. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide footer signup" -msgstr "" +msgstr "ซ่อนการสมัครส่วนท้าย" #. Label of the hide_navbar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Hide navbar" -msgstr "" +msgstr "ซ่อนแถบนำทาง" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:225 msgid "High" -msgstr "" +msgstr "สูง" #. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Higher priority rule will be applied first" -msgstr "" +msgstr "กฎที่มีลำดับความสำคัญสูงกว่าจะถูกใช้ก่อน" #. Label of the highlight (Text) field in DocType 'Company History' #: frappe/website/doctype/company_history/company_history.json msgid "Highlight" -msgstr "" +msgstr "ไฮไลต์" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "" +msgstr "คำแนะนำ: รวมสัญลักษณ์ ตัวเลข และตัวอักษรตัวใหญ่ในรหัสผ่าน" #. Label of the home_tab (Tab Break) field in DocType 'Website Settings' #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 @@ -11807,33 +11902,33 @@ msgstr "" #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 #: frappe/www/message.html:29 msgid "Home" -msgstr "" +msgstr "หน้าแรก" #. Label of the home_page (Data) field in DocType 'Role' #. Label of the home_page (Data) field in DocType 'Website Settings' #: frappe/core/doctype/role/role.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Home Page" -msgstr "" +msgstr "หน้าแรก" #. Label of the home_settings (Code) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Home Settings" -msgstr "" +msgstr "การตั้งค่าหน้าแรก" #: frappe/core/doctype/file/test_file.py:321 #: frappe/core/doctype/file/test_file.py:323 #: frappe/core/doctype/file/test_file.py:387 msgid "Home/Test Folder 1" -msgstr "" +msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 1" #: frappe/core/doctype/file/test_file.py:376 msgid "Home/Test Folder 1/Test Folder 3" -msgstr "" +msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 1/โฟลเดอร์ทดสอบ 3" #: frappe/core/doctype/file/test_file.py:332 msgid "Home/Test Folder 2" -msgstr "" +msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 2" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' @@ -11842,29 +11937,39 @@ msgstr "" #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/user/user.json msgid "Hourly" -msgstr "" +msgstr "รายชั่วโมง" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Hourly Long" -msgstr "" +msgstr "รายชั่วโมงแบบยาว" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Hourly Maintenance" -msgstr "" +msgstr "การบำรุงรักษารายชั่วโมง" #. Description of the 'Password Reset Link Generation Limit' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hourly rate limit for generating password reset links" -msgstr "" +msgstr "ขีดจำกัดอัตรารายชั่วโมงสำหรับการสร้างลิงก์รีเซ็ตรหัสผ่าน" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "ชั่วโมง" #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "ควรจัดรูปแบบสกุลเงินนี้อย่างไร? หากไม่ได้ตั้งค่า จะใช้ค่าเริ่มต้นของระบบ" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." msgstr "" #. Paragraph text in the Welcome Workspace Workspace @@ -11872,10 +11977,10 @@ msgstr "" msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -11885,33 +11990,33 @@ msgstr "" #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "" +msgstr "รหัส" #: frappe/desk/reportview.py:491 #: frappe/public/js/frappe/views/reports/report_view.js:984 msgctxt "Label of name column in report" msgid "ID" -msgstr "" +msgstr "รหัส" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 msgid "ID (name)" -msgstr "" +msgstr "รหัส (ชื่อ)" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "" +msgstr "รหัส (ชื่อ) ของเอนทิตีที่ต้องการตั้งค่าคุณสมบัติ" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." -msgstr "" +msgstr "รหัสต้องประกอบด้วยตัวอักษรและตัวเลขเท่านั้น ห้ามมีช่องว่าง และต้องไม่ซ้ำกัน" #. Label of the section_break_25 (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "IMAP Details" -msgstr "" +msgstr "รายละเอียด IMAP" #. Label of the imap_folder (Data) field in DocType 'Communication' #. Label of the imap_folder (Table) field in DocType 'Email Account' @@ -11920,14 +12025,14 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" -msgstr "" +msgstr "โฟลเดอร์ IMAP" #. Label of the ip_address (Data) field in DocType 'Activity Log' #. Label of the ip_address (Data) field in DocType 'Comment' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/comment/comment.json msgid "IP Address" -msgstr "" +msgstr "ที่อยู่ IP" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the icon (Data) field in DocType 'DocType' @@ -11951,29 +12056,29 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:458 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon" -msgstr "" +msgstr "ไอคอน" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon will appear on the button" -msgstr "" +msgstr "ไอคอนจะแสดงบนปุ่ม" #. Label of the sb_identity_details (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Identity Details" -msgstr "" +msgstr "รายละเอียดตัวตน" #. Label of the idx (Int) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "" +msgstr "ดัชนี" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "" +msgstr "หากเลือกใช้การอนุญาตผู้ใช้อย่างเข้มงวดและกำหนดการอนุญาตผู้ใช้สำหรับ DocType สำหรับผู้ใช้ เอกสารทั้งหมดที่ค่าของลิงก์ว่างเปล่าจะไม่แสดงให้ผู้ใช้นั้นเห็น" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' @@ -11982,128 +12087,128 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "If Checked workflow status will not override status in list view" -msgstr "" +msgstr "หากเลือก สถานะเวิร์กโฟลว์จะไม่เขียนทับสถานะในมุมมองรายการ" #: frappe/core/doctype/doctype/doctype.py:1763 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" -msgstr "" +msgstr "หากเป็นเจ้าของ" #: frappe/core/page/permission_manager/permission_manager_help.html:25 msgid "If a Role does not have access at Level 0, then higher levels are meaningless." -msgstr "" +msgstr "หากบทบาทไม่มีสิทธิ์เข้าถึงที่ระดับ 0 ระดับที่สูงกว่าจะไม่มีความหมาย" #. Description of the 'Is Active' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "If checked, all other workflows become inactive." -msgstr "" +msgstr "หากเลือก เวิร์กโฟลว์อื่นทั้งหมดจะไม่ทำงาน" #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' #: frappe/printing/doctype/print_format/print_format.json msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" -msgstr "" +msgstr "หากเลือก ค่าตัวเลขเชิงลบของสกุลเงิน ปริมาณ หรือจำนวนจะถูกแสดงเป็นค่าบวก" #. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "If checked, users will not see the Confirm Access dialog." -msgstr "" +msgstr "หากเลือก ผู้ใช้จะไม่เห็นหน้าต่างยืนยันการเข้าถึง" #. Description of the 'Disabled' (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "" +msgstr "หากปิดใช้งาน บทบาทนี้จะถูกลบออกจากผู้ใช้ทั้งหมด" #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "" +msgstr "หากเปิดใช้งาน ผู้ใช้สามารถเข้าสู่ระบบจากที่อยู่ IP ใด ๆ โดยใช้การยืนยันตัวตนสองขั้นตอน ซึ่งสามารถตั้งค่าสำหรับผู้ใช้ทั้งหมดในการตั้งค่าระบบ" #. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "If enabled, all responses on the web form will be submitted anonymously" -msgstr "" +msgstr "หากเปิดใช้งาน การตอบกลับทั้งหมดในฟอร์มเว็บจะถูกส่งโดยไม่ระบุชื่อ" #. Description of the 'Bypass restricted IP Address check If Two Factor Auth #. Enabled' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "" +msgstr "หากเปิดใช้งาน ผู้ใช้ทั้งหมดสามารถเข้าสู่ระบบจากที่อยู่ IP ใด ๆ โดยใช้การยืนยันตัวตนสองขั้นตอน ซึ่งสามารถตั้งค่าได้เฉพาะสำหรับผู้ใช้บางรายในหน้าผู้ใช้" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "" +msgstr "หากเปิดใช้งาน การเปลี่ยนแปลงในเอกสารจะถูกติดตามและแสดงในไทม์ไลน์" #. Description of the 'Track Views' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "" +msgstr "หากเปิดใช้งาน การดูเอกสารจะถูกติดตาม ซึ่งสามารถเกิดขึ้นได้หลายครั้ง" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "" +msgstr "หากเปิดใช้งาน เอกสารจะถูกทำเครื่องหมายว่าเห็นแล้วเมื่อผู้ใช้เปิดครั้งแรก" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "" +msgstr "หากเปิดใช้งาน การแจ้งเตือนจะแสดงในเมนูแบบเลื่อนลงของการแจ้งเตือนที่มุมขวาบนของแถบนำทาง" #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." -msgstr "" +msgstr "หากเปิดใช้งาน ความแข็งแกร่งของรหัสผ่านจะถูกบังคับใช้ตามค่าคะแนนรหัสผ่านขั้นต่ำ โดยค่าที่ 1 หมายถึงอ่อนมาก และค่าที่ 4 หมายถึงแข็งแกร่งมาก" #. Description of the 'Bypass Two Factor Auth for users who login from #. restricted IP Address' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "" +msgstr "หากเปิดใช้งาน ผู้ใช้ที่เข้าสู่ระบบจากที่อยู่ IP ที่จำกัดจะไม่ได้รับการแจ้งเตือนสำหรับการยืนยันตัวตนสองขั้นตอน" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' #: frappe/desk/doctype/note/note.json msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "" +msgstr "หากเปิดใช้งาน ผู้ใช้จะได้รับการแจ้งเตือนทุกครั้งที่เข้าสู่ระบบ หากไม่ได้เปิดใช้งาน ผู้ใช้จะได้รับการแจ้งเตือนเพียงครั้งเดียว" #. Description of the 'Default Workspace' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If left empty, the default workspace will be the last visited workspace" -msgstr "" +msgstr "หากเว้นว่างไว้ พื้นที่ทำงานเริ่มต้นจะเป็นพื้นที่ทำงานที่เยี่ยมชมล่าสุด" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "If non standard port (e.g. 587)" -msgstr "" +msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น 587)" #. Description of the 'Port' (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "" +msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น 587) หากอยู่บน Google Cloud ให้ลองใช้พอร์ต 2525" #. Description of the 'Port' (Data) field in DocType 'Email Account' #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "" +msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น POP3: 995/110, IMAP: 993/143)" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If not set, the currency precision will depend on number format" -msgstr "" +msgstr "หากไม่ได้ตั้งค่า ความแม่นยำของสกุลเงินจะขึ้นอยู่กับรูปแบบตัวเลข" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." -msgstr "" +msgstr "หากตั้งค่าไว้ เฉพาะผู้ใช้ที่มีบทบาทเหล่านี้เท่านั้นที่สามารถเข้าถึงแผนภูมินี้ได้ หากไม่ได้ตั้งค่า จะใช้สิทธิ์ DocType หรือรายงาน" #. Description of the 'User Type' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -12112,7 +12217,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager_help.html:38 msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." -msgstr "" +msgstr "หากคำแนะนำเหล่านี้ไม่เป็นประโยชน์ โปรดเพิ่มข้อเสนอแนะของคุณใน GitHub Issues" #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' @@ -12124,14 +12229,14 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "If unchecked, the value will always be re-fetched on save." -msgstr "" +msgstr "หากไม่ได้เลือก ค่าจะถูกดึงใหม่เสมอเมื่อบันทึก" #. Label of the if_owner (Check) field in DocType 'Custom DocPerm' #. Label of the if_owner (Check) field in DocType 'DocPerm' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "If user is the owner" -msgstr "" +msgstr "หากผู้ใช้เป็นเจ้าของ" #: frappe/core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." @@ -12147,26 +12252,26 @@ msgstr "" #: frappe/utils/password.py:214 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." -msgstr "" +msgstr "หากคุณเพิ่งกู้คืนไซต์ คุณอาจต้องคัดลอก site_config.json ที่มีคีย์การเข้ารหัสต้นฉบับ" #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "" +msgstr "หากคุณตั้งค่านี้ รายการนี้จะปรากฏในเมนูแบบเลื่อนลงภายใต้ผู้ปกครองที่เลือก" #: frappe/templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." -msgstr "" +msgstr "หากคุณคิดว่านี่ไม่ได้รับอนุญาต โปรดเปลี่ยนรหัสผ่านผู้ดูแลระบบ" #. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." -msgstr "" +msgstr "หาก CSV ของคุณใช้ตัวคั่นที่แตกต่างกัน ให้เพิ่มอักขระนั้นที่นี่ โดยให้แน่ใจว่าไม่มีช่องว่างหรืออักขระเพิ่มเติมรวมอยู่ด้วย" #. Description of the 'Source Text' (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "" +msgstr "หากข้อมูลของคุณอยู่ใน HTML โปรดคัดลอกและวางโค้ด HTML ที่แน่นอนพร้อมแท็ก" #. Label of the ignore_user_permissions (Check) field in DocType 'DocField' #. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' @@ -12176,7 +12281,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore User Permissions" -msgstr "" +msgstr "ละเว้นสิทธิ์ของผู้ใช้" #. Label of the ignore_xss_filter (Check) field in DocType 'DocField' #. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' @@ -12186,7 +12291,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "" +msgstr "ละเว้นตัวกรอง XSS" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' @@ -12195,25 +12300,25 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Ignore attachments over this size" -msgstr "" +msgstr "ละเว้นไฟล์แนบที่มีขนาดเกินนี้" #. Label of the ignored_apps (Table) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Ignored Apps" -msgstr "" +msgstr "แอปที่ถูกละเว้น" #: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" -msgstr "" +msgstr "สถานะเอกสารไม่ถูกต้องสำหรับ {0}" #: frappe/model/db_query.py:452 frappe/model/db_query.py:455 #: frappe/model/db_query.py:1129 msgid "Illegal SQL Query" -msgstr "" +msgstr "คำสั่ง SQL ไม่ถูกต้อง" #: frappe/utils/jinja.py:127 msgid "Illegal template" -msgstr "" +msgstr "แม่แบบไม่ถูกต้อง" #. Label of the image (Attach Image) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'DocField' @@ -12238,86 +12343,86 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Image" -msgstr "" +msgstr "ภาพ" #. Label of the image_field (Data) field in DocType 'DocType' #. Label of the image_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Image Field" -msgstr "" +msgstr "ฟิลด์ภาพ" #. Label of the image_height (Float) field in DocType 'Letter Head' #. Label of the footer_image_height (Float) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Height" -msgstr "" +msgstr "ความสูงของภาพ" #. Label of the image_link (Attach) field in DocType 'About Us Team Member' #: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "Image Link" -msgstr "" +msgstr "ลิงก์ภาพ" #: frappe/public/js/frappe/list/base_list.js:208 msgid "Image View" -msgstr "" +msgstr "มุมมองภาพ" #. Label of the image_width (Float) field in DocType 'Letter Head' #. Label of the footer_image_width (Float) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Image Width" -msgstr "" +msgstr "ความกว้างของภาพ" #: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" -msgstr "" +msgstr "ฟิลด์ภาพต้องเป็นชื่อฟิลด์ที่ถูกต้อง" #: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" -msgstr "" +msgstr "ฟิลด์ภาพต้องเป็นประเภทแนบภาพ" #: frappe/core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" -msgstr "" +msgstr "ลิงก์ภาพ '{0}' ไม่ถูกต้อง" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" -msgstr "" +msgstr "ภาพถูกปรับแต่งแล้ว" #: frappe/core/doctype/file/utils.py:289 msgid "Image: Corrupted Data Stream" -msgstr "" +msgstr "ภาพ: สตรีมข้อมูลเสียหาย" #: frappe/public/js/frappe/views/image/image_view.js:13 msgid "Images" -msgstr "" +msgstr "ภาพ" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.js:378 msgid "Impersonate" -msgstr "" +msgstr "แอบอ้าง" #: frappe/core/doctype/user/user.js:405 msgid "Impersonate as {0}" -msgstr "" +msgstr "แอบอ้างเป็น {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 msgid "Impersonated by {0}" -msgstr "" +msgstr "ถูกแอบอ้างโดย {0}" #: frappe/public/js/frappe/ui/toolbar/navbar.html:21 msgid "Impersonating {0}" -msgstr "" +msgstr "กำลังแอบอ้างเป็น {0}" #: frappe/core/doctype/log_settings/log_settings.py:56 msgid "Implement `clear_old_logs` method to enable auto error clearing." -msgstr "" +msgstr "ใช้วิธี `clear_old_logs` เพื่อเปิดใช้งานการล้างข้อผิดพลาดอัตโนมัติ" #. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Implicit" -msgstr "" +msgstr "โดยนัย" #. Label of the import (Check) field in DocType 'Custom DocPerm' #. Label of the import (Check) field in DocType 'DocPerm' @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "นำเข้า" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "นำเข้า" @@ -12341,103 +12446,103 @@ msgstr "" #: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" -msgstr "" +msgstr "นำเข้าอีเมลจาก" #. Label of the import_file (Attach) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import File" -msgstr "" +msgstr "นำเข้าไฟล์" #. Label of the import_warnings_section (Section Break) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import File Errors and Warnings" -msgstr "" +msgstr "ข้อผิดพลาดและคำเตือนของไฟล์นำเข้า" #. Label of the import_log_section (Section Break) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Log" -msgstr "" +msgstr "บันทึกการนำเข้า" #. Label of the import_log_preview (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Log Preview" -msgstr "" +msgstr "ดูตัวอย่างบันทึกการนำเข้า" #. Label of the import_preview (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Preview" -msgstr "" +msgstr "ดูตัวอย่างการนำเข้า" #: frappe/core/doctype/data_import/data_import.js:41 msgid "Import Progress" -msgstr "" +msgstr "ความคืบหน้าการนำเข้า" #: frappe/email/doctype/email_group/email_group.js:8 #: frappe/email/doctype/email_group/email_group.js:30 msgid "Import Subscribers" -msgstr "" +msgstr "นำเข้าผู้สมัครสมาชิก" #. Label of the import_type (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Type" -msgstr "" +msgstr "ประเภทการนำเข้า" #. Label of the import_warnings (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import Warnings" -msgstr "" +msgstr "คำเตือนการนำเข้า" #: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" -msgstr "" +msgstr "นำเข้าไฟล์ Zip" #. Label of the google_sheets_url (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import from Google Sheets" -msgstr "" +msgstr "นำเข้าจาก Google Sheets" #: frappe/core/doctype/data_import/importer.py:612 msgid "Import template should be of type .csv, .xlsx or .xls" -msgstr "" +msgstr "แม่แบบการนำเข้าควรเป็นประเภท .csv, .xlsx หรือ .xls" #: frappe/core/doctype/data_import/importer.py:482 msgid "Import template should contain a Header and atleast one row." -msgstr "" +msgstr "แม่แบบการนำเข้าควรมีส่วนหัวและอย่างน้อยหนึ่งแถว" #: frappe/core/doctype/data_import/data_import.js:165 msgid "Import timed out, please re-try." -msgstr "" +msgstr "การนำเข้าหมดเวลา โปรดลองอีกครั้ง" #: frappe/core/doctype/data_import/data_import.py:68 msgid "Importing {0} is not allowed." -msgstr "" +msgstr "ไม่อนุญาตให้นำเข้า {0}" #: frappe/integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" -msgstr "" +msgstr "กำลังนำเข้า {0} ของ {1}" #: frappe/core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" -msgstr "" +msgstr "กำลังนำเข้า {0} ของ {1}, {2}" #: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" -msgstr "" +msgstr "ใน" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In Days" -msgstr "" +msgstr "ในวัน" #. Label of the in_filter (Check) field in DocType 'DocField' #. Label of the in_filter (Check) field in DocType 'Customize Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Filter" -msgstr "" +msgstr "ในตัวกรอง" #. Label of the in_global_search (Check) field in DocType 'DocField' #. Label of the in_global_search (Check) field in DocType 'Custom Field' @@ -12447,16 +12552,16 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "" +msgstr "ในการค้นหาทั่วโลก" #: frappe/core/doctype/doctype/doctype.js:88 msgid "In Grid View" -msgstr "" +msgstr "ในมุมมองกริด" #. Label of the in_standard_filter (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "In List Filter" -msgstr "" +msgstr "ในตัวกรองรายการ" #. Label of the in_list_view (Check) field in DocType 'DocField' #. Label of the in_list_view (Check) field in DocType 'Custom Field' @@ -12466,11 +12571,11 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In List View" -msgstr "" +msgstr "ในมุมมองรายการ" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 msgid "In Minutes" -msgstr "" +msgstr "ในนาที" #. Label of the in_preview (Check) field in DocType 'DocField' #. Label of the in_preview (Check) field in DocType 'Custom Field' @@ -12479,20 +12584,20 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Preview" -msgstr "" +msgstr "ในตัวอย่าง" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "" +msgstr "กำลังดำเนินการ" #: frappe/database/database.py:287 msgid "In Read Only Mode" -msgstr "" +msgstr "ในโหมดอ่านอย่างเดียว" #. Label of the in_reply_to (Link) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "" +msgstr "ในการตอบกลับ" #. Label of the in_standard_filter (Check) field in DocType 'Custom Field' #. Label of the in_standard_filter (Check) field in DocType 'Customize Form @@ -12500,38 +12605,38 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Standard Filter" -msgstr "" +msgstr "ในตัวกรองมาตรฐาน" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "" +msgstr "ในจุด ค่าเริ่มต้นคือ 9" #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In seconds" -msgstr "" +msgstr "ในวินาที" #: frappe/core/doctype/recorder/recorder_list.js:209 msgid "Inactive" -msgstr "" +msgstr "ไม่ใช้งาน" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/email/doctype/email_account/email_account_list.js:19 msgid "Inbox" -msgstr "" +msgstr "กล่องจดหมาย" #. Name of a role #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_account/email_account.json msgid "Inbox User" -msgstr "" +msgstr "ผู้ใช้กล่องจดหมาย" #: frappe/public/js/frappe/list/base_list.js:209 msgid "Inbox View" -msgstr "" +msgstr "มุมมองกล่องจดหมาย" #: frappe/public/js/frappe/views/treeview.js:110 msgid "Include Disabled" @@ -12540,100 +12645,104 @@ msgstr "" #. Label of the include_name_field (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Include Name Field" -msgstr "" +msgstr "รวมฟิลด์ชื่อ" #. Label of the navbar_search (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Include Search in Top Bar" -msgstr "" +msgstr "รวมการค้นหาในแถบด้านบน" #: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" -msgstr "" +msgstr "รวมธีมจากแอป" #. Label of the attach_view_link (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Include Web View Link in Email" -msgstr "" +msgstr "รวมลิงก์มุมมองเว็บในอีเมล" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" +msgstr "รวมตัวกรอง" + +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" -msgstr "" +msgstr "รวมการเยื้อง" #: frappe/public/js/frappe/form/controls/password.js:106 msgid "Include symbols, numbers and capital letters in the password" -msgstr "" +msgstr "รวมสัญลักษณ์ ตัวเลข และตัวอักษรตัวใหญ่ในรหัสผ่าน" #. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Incoming" -msgstr "" +msgstr "ขาเข้า" #. Label of the mailbox_settings (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Incoming (POP/IMAP) Settings" -msgstr "" +msgstr "การตั้งค่าขาเข้า (POP/IMAP)" #. Label of the incoming_emails_last_7_days_column (Column Break) field in #. DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Incoming Emails (Last 7 days)" -msgstr "" +msgstr "อีเมลขาเข้า (7 วันที่ผ่านมา)" #. Label of the email_server (Data) field in DocType 'Email Account' #. Label of the email_server (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Server" -msgstr "" +msgstr "เซิร์ฟเวอร์ขาเข้า" #. Label of the mailbox_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Settings" -msgstr "" +msgstr "การตั้งค่าขาเข้า" #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" -msgstr "" +msgstr "บัญชีอีเมลขาเข้าไม่ถูกต้อง" #: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" -msgstr "" +msgstr "การดำเนินการ Virtual Doctype ไม่สมบูรณ์" #: frappe/auth.py:255 msgid "Incomplete login details" -msgstr "" +msgstr "รายละเอียดการเข้าสู่ระบบไม่สมบูรณ์" #: frappe/email/smtp.py:104 msgid "Incorrect Configuration" -msgstr "" +msgstr "การกำหนดค่าไม่ถูกต้อง" #: frappe/utils/csvutils.py:234 msgid "Incorrect URL" -msgstr "" +msgstr "URL ไม่ถูกต้อง" #: frappe/utils/password.py:101 msgid "Incorrect User or Password" -msgstr "" +msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" #: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" -msgstr "" +msgstr "รหัสยืนยันไม่ถูกต้อง" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" -msgstr "" +msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" -msgstr "" +msgstr "ค่าที่ไม่ถูกต้อง:" #. Label of the search_index (Check) field in DocType 'DocField' #. Label of the index (Int) field in DocType 'Recorder Query' @@ -12645,58 +12754,58 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:124 #: frappe/public/js/frappe/views/reports/report_view.js:1005 msgid "Index" -msgstr "" +msgstr "ดัชนี" #. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Index Web Pages for Search" -msgstr "" +msgstr "จัดทำดัชนีหน้าเว็บสำหรับการค้นหา" #: frappe/core/doctype/recorder/recorder.py:132 msgid "Index created successfully on column {0} of doctype {1}" -msgstr "" +msgstr "สร้างดัชนีสำเร็จในคอลัมน์ {0} ของ doctype {1}" #. Label of the indexing_authorization_code (Data) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing authorization code" -msgstr "" +msgstr "กำลังจัดทำดัชนีรหัสการอนุญาต" #. Label of the indexing_refresh_token (Data) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Indexing refresh token" -msgstr "" +msgstr "กำลังจัดทำดัชนีโทเค็นรีเฟรช" #. Label of the indicator (Select) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Indicator" -msgstr "" +msgstr "ตัวบ่งชี้" #. Label of the indicator_color (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Indicator Color" -msgstr "" +msgstr "สีตัวบ่งชี้" #: frappe/public/js/frappe/views/workspace/workspace.js:463 msgid "Indicator color" -msgstr "" +msgstr "สีตัวบ่งชี้" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/core/doctype/comment/comment.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Info" -msgstr "" +msgstr "ข้อมูล" #: frappe/core/doctype/data_export/exporter.py:144 msgid "Info:" -msgstr "" +msgstr "ข้อมูล:" #. Label of the initial_sync_count (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Initial Sync Count" -msgstr "" +msgstr "จำนวนการซิงค์ครั้งแรก" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -12706,102 +12815,102 @@ msgstr "" #. Description of the 'New Role' (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "Input existing role name if you would like to extend it with access of another role." -msgstr "" +msgstr "ป้อนชื่อบทบาทที่มีอยู่หากคุณต้องการขยายด้วยการเข้าถึงบทบาทอื่น" #: frappe/core/doctype/data_import/data_import_list.js:35 msgid "Insert" -msgstr "" +msgstr "แทรก" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Above" -msgstr "" +msgstr "แทรกด้านบน" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" -msgstr "" +msgstr "แทรกหลังจาก" #: frappe/custom/doctype/custom_field/custom_field.py:251 msgid "Insert After cannot be set as {0}" -msgstr "" +msgstr "ไม่สามารถตั้งค่าแทรกหลังจากเป็น {0}" #: frappe/custom/doctype/custom_field/custom_field.py:244 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" -msgstr "" +msgstr "ฟิลด์แทรกหลังจาก '{0}' ที่กล่าวถึงในฟิลด์ที่กำหนดเอง '{1}' พร้อมป้ายกำกับ '{2}' ไม่มีอยู่" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Below" -msgstr "" +msgstr "แทรกด้านล่าง" #: frappe/public/js/frappe/views/reports/report_view.js:390 msgid "Insert Column Before {0}" -msgstr "" +msgstr "แทรกคอลัมน์ก่อน {0}" #: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" -msgstr "" +msgstr "แทรกรูปภาพใน Markdown" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Insert New Records" -msgstr "" +msgstr "แทรกบันทึกใหม่" #. Label of the insert_style (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Insert Style" -msgstr "" +msgstr "แทรกสไตล์" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 msgid "Install {0} from Marketplace" -msgstr "" +msgstr "ติดตั้ง {0} จาก Marketplace" #. Name of a DocType #: frappe/core/doctype/installed_application/installed_application.json msgid "Installed Application" -msgstr "" +msgstr "แอปพลิเคชันที่ติดตั้ง" #. Name of a DocType #. Label of the installed_applications (Table) field in DocType 'Installed #. Applications' #: frappe/core/doctype/installed_applications/installed_applications.json msgid "Installed Applications" -msgstr "" +msgstr "แอปพลิเคชันที่ติดตั้ง" #: frappe/core/doctype/installed_applications/installed_applications.js:18 #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Installed Apps" -msgstr "" +msgstr "แอปที่ติดตั้ง" #. Label of the instructions (HTML) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Instructions" -msgstr "" +msgstr "คำแนะนำ" #: frappe/templates/includes/login/login.js:261 msgid "Instructions Emailed" -msgstr "" +msgstr "ส่งคำแนะนำทางอีเมลแล้ว" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" -msgstr "" +msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" -msgstr "" +msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}" #: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" -msgstr "" +msgstr "สิทธิ์ไม่เพียงพอสำหรับการลบรายงาน" #: frappe/desk/reportview.py:331 msgid "Insufficient Permissions for editing Report" -msgstr "" +msgstr "สิทธิ์ไม่เพียงพอสำหรับการแก้ไขรายงาน" #: frappe/core/doctype/doctype/doctype.py:445 msgid "Insufficient attachment limit" -msgstr "" +msgstr "ขีดจำกัดไฟล์แนบไม่เพียงพอ" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -12823,7 +12932,7 @@ msgstr "" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" -msgstr "" +msgstr "คำขอการรวม" #. Group in User's connections #. Name of a Workspace @@ -12832,13 +12941,13 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" -msgstr "" +msgstr "การรวม" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "" +msgstr "การรวมสามารถใช้ฟิลด์นี้เพื่อตั้งค่าสถานะการส่งอีเมล" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -12848,32 +12957,32 @@ msgstr "" #. Label of the interest (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "" +msgstr "ความสนใจ" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Intermediate" -msgstr "" +msgstr "ระดับกลาง" #: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" -msgstr "" +msgstr "ข้อผิดพลาดของเซิร์ฟเวอร์ภายใน" #. Description of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "Internal record of document shares" -msgstr "" +msgstr "บันทึกภายในของการแชร์เอกสาร" #. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Intro Video URL" -msgstr "" +msgstr "URL วิดีโอแนะนำ" #. Description of the 'Company Introduction' (Text Editor) field in DocType #. 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Introduce your company to the website visitor." -msgstr "" +msgstr "แนะนำบริษัทของคุณให้กับผู้เยี่ยมชมเว็บไซต์" #. Label of the introduction_section (Section Break) field in DocType 'Contact #. Us Settings' @@ -12883,24 +12992,24 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form/web_form.json msgid "Introduction" -msgstr "" +msgstr "การแนะนำ" #. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Introductory information for the Contact Us Page" -msgstr "" +msgstr "ข้อมูลเบื้องต้นสำหรับหน้าติดต่อเรา" #. Label of the introspection_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Introspection URI" -msgstr "" +msgstr "URI การตรวจสอบ" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Invalid" -msgstr "" +msgstr "ไม่ถูกต้อง" #: frappe/public/js/form_builder/utils.js:221 #: frappe/public/js/frappe/form/grid_row.js:833 @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12919,239 +13028,319 @@ msgstr "" #: frappe/utils/nestedset.py:178 msgid "Invalid Action" -msgstr "" +msgstr "การกระทำไม่ถูกต้อง" #: frappe/utils/csvutils.py:37 msgid "Invalid CSV Format" -msgstr "" +msgstr "รูปแบบ CSV ไม่ถูกต้อง" #: frappe/integrations/frappe_providers/frappecloud_billing.py:111 msgid "Invalid Code. Please try again." -msgstr "" +msgstr "รหัสไม่ถูกต้อง โปรดลองอีกครั้ง" #: frappe/integrations/doctype/webhook/webhook.py:87 msgid "Invalid Condition: {}" -msgstr "" +msgstr "เงื่อนไขไม่ถูกต้อง: {}" #: frappe/email/smtp.py:135 msgid "Invalid Credentials" -msgstr "" +msgstr "ข้อมูลประจำตัวไม่ถูกต้อง" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" -msgstr "" +msgstr "วันที่ไม่ถูกต้อง" #: frappe/www/list.py:85 msgid "Invalid DocType" -msgstr "" +msgstr "DocType ไม่ถูกต้อง" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" -msgstr "" +msgstr "DocType ไม่ถูกต้อง: {0}" #: frappe/core/doctype/doctype/doctype.py:1272 msgid "Invalid Fieldname" -msgstr "" +msgstr "ชื่อฟิลด์ไม่ถูกต้อง" #: frappe/core/doctype/file/file.py:209 msgid "Invalid File URL" +msgstr "URL ไฟล์ไม่ถูกต้อง" + +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" msgstr "" #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" -msgstr "" +msgstr "รูปแบบตัวกรองไม่ถูกต้องสำหรับฟิลด์ {0} ของประเภท {1} ลองใช้ไอคอนตัวกรองในฟิลด์เพื่อกำหนดค่าให้ถูกต้อง" #: frappe/utils/dashboard.py:61 msgid "Invalid Filter Value" -msgstr "" +msgstr "ค่าตัวกรองไม่ถูกต้อง" #: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" -msgstr "" +msgstr "หน้าแรกไม่ถูกต้อง" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" -msgstr "" +msgstr "ลิงก์ไม่ถูกต้อง" #: frappe/www/login.py:128 msgid "Invalid Login Token" -msgstr "" +msgstr "โทเค็นการเข้าสู่ระบบไม่ถูกต้อง" #: frappe/templates/includes/login/login.js:290 msgid "Invalid Login. Try again." -msgstr "" +msgstr "การเข้าสู่ระบบไม่ถูกต้อง โปรดลองอีกครั้ง" #: frappe/email/receive.py:112 frappe/email/receive.py:149 msgid "Invalid Mail Server. Please rectify and try again." -msgstr "" +msgstr "เซิร์ฟเวอร์เมลไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง" #: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" -msgstr "" +msgstr "ชุดการตั้งชื่อไม่ถูกต้อง: {}" #: frappe/core/doctype/rq_job/rq_job.py:113 #: frappe/core/doctype/rq_job/rq_job.py:122 msgid "Invalid Operation" -msgstr "" +msgstr "การดำเนินการไม่ถูกต้อง" #: frappe/core/doctype/doctype/doctype.py:1641 #: frappe/core/doctype/doctype/doctype.py:1650 msgid "Invalid Option" -msgstr "" +msgstr "ตัวเลือกไม่ถูกต้อง" #: frappe/email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" -msgstr "" +msgstr "เซิร์ฟเวอร์เมลขาออกหรือพอร์ตไม่ถูกต้อง: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" -msgstr "" +msgstr "รูปแบบผลลัพธ์ไม่ถูกต้อง" #: frappe/model/base_document.py:116 msgid "Invalid Override" -msgstr "" +msgstr "การแทนที่ไม่ถูกต้อง" #: frappe/integrations/doctype/connected_app/connected_app.py:195 msgid "Invalid Parameters." -msgstr "" +msgstr "พารามิเตอร์ไม่ถูกต้อง" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" -msgstr "" +msgstr "รหัสผ่านไม่ถูกต้อง" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" -msgstr "" +msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง" #: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" -msgstr "" +msgstr "คำขอไม่ถูกต้อง" #: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" -msgstr "" +msgstr "ฟิลด์การค้นหาไม่ถูกต้อง {0}" #: frappe/core/doctype/doctype/doctype.py:1214 msgid "Invalid Table Fieldname" -msgstr "" +msgstr "ชื่อฟิลด์ตารางไม่ถูกต้อง" #: frappe/public/js/workflow_builder/store.js:192 msgid "Invalid Transition" -msgstr "" +msgstr "การเปลี่ยนผ่านไม่ถูกต้อง" #: frappe/core/doctype/file/file.py:220 #: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" -msgstr "" +msgstr "URL ไม่ถูกต้อง" #: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." -msgstr "" +msgstr "ชื่อผู้ใช้หรือรหัสผ่านสนับสนุนไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง" #: frappe/public/js/frappe/ui/field_group.js:137 msgid "Invalid Values" -msgstr "" +msgstr "ค่าที่ไม่ถูกต้อง" #: frappe/integrations/doctype/webhook/webhook.py:116 msgid "Invalid Webhook Secret" -msgstr "" +msgstr "Webhook Secret ไม่ถูกต้อง" #: frappe/desk/reportview.py:186 msgid "Invalid aggregate function" +msgstr "ฟังก์ชันการรวมไม่ถูกต้อง" + +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" msgstr "" #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" +msgstr "คอลัมน์ไม่ถูกต้อง" + +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 -msgid "Invalid docstatus" +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" +#: frappe/model/document.py:1016 frappe/model/document.py:1030 +msgid "Invalid docstatus" +msgstr "สถานะเอกสารไม่ถูกต้อง" + #: frappe/public/js/frappe/utils/dashboard_utils.js:229 msgid "Invalid expression set in filter {0}" -msgstr "" +msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ไม่ถูกต้อง" #: frappe/public/js/frappe/utils/dashboard_utils.js:219 msgid "Invalid expression set in filter {0} ({1})" +msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง" + +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" +msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}" + +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" msgstr "" #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" -msgstr "" +msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname" #: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" +msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}" + +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" -#: frappe/database/query.py:189 #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" +msgstr "ตัวกรองไม่ถูกต้อง: {0}" + +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" msgstr "" #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" -msgstr "" +msgstr "เพิ่ม json ไม่ถูกต้องในตัวเลือกที่กำหนดเอง: {0}" #: frappe/model/naming.py:490 msgid "Invalid name type (integer) for varchar name column" -msgstr "" +msgstr "ประเภทชื่อไม่ถูกต้อง (จำนวนเต็ม) สำหรับคอลัมน์ชื่อ varchar" #: frappe/model/naming.py:62 msgid "Invalid naming series {}: dot (.) missing" -msgstr "" +msgstr "ชุดการตั้งชื่อไม่ถูกต้อง {}: จุด (.) หายไป" #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" -msgstr "" +msgstr "เนื้อหาไม่ถูกต้องหรือเสียหายสำหรับการนำเข้า" #: frappe/website/doctype/website_settings/website_settings.py:139 msgid "Invalid redirect regex in row #{}: {}" +msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}" + +#: frappe/app.py:337 +msgid "Invalid request arguments" +msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง" + +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/app.py:317 -msgid "Invalid request arguments" +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" msgstr "" #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" -msgstr "" +msgstr "ไฟล์แม่แบบไม่ถูกต้องสำหรับการนำเข้า" #: frappe/integrations/doctype/connected_app/connected_app.py:201 msgid "Invalid token state! Check if the token has been created by the OAuth user." -msgstr "" +msgstr "สถานะโทเค็นไม่ถูกต้อง! ตรวจสอบว่าโทเค็นถูกสร้างโดยผู้ใช้ OAuth หรือไม่" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 msgid "Invalid username or password" -msgstr "" +msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" #: frappe/model/naming.py:168 msgid "Invalid value specified for UUID: {}" -msgstr "" +msgstr "ค่าที่ระบุสำหรับ UUID ไม่ถูกต้อง: {}" #: frappe/public/js/frappe/web_form/web_form.js:229 msgctxt "Error message in web form" msgid "Invalid values for fields:" -msgstr "" +msgstr "ค่าที่ไม่ถูกต้องสำหรับฟิลด์:" #: frappe/printing/page/print/print.js:614 msgid "Invalid wkhtmltopdf version" -msgstr "" +msgstr "เวอร์ชัน wkhtmltopdf ไม่ถูกต้อง" #: frappe/core/doctype/doctype/doctype.py:1564 msgid "Invalid {0} condition" -msgstr "" +msgstr "เงื่อนไข {0} ไม่ถูกต้อง" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json @@ -13237,87 +13426,87 @@ msgstr "" #: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" -msgstr "" +msgstr "เป็นสากล" #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" -msgstr "" +msgstr "ถูกซ่อน" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "" +msgstr "เป็นโฟลเดอร์หน้าแรก" #. Label of the reqd (Check) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "" +msgstr "เป็นฟิลด์ที่จำเป็น" #. Label of the is_optional_state (Check) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Is Optional State" -msgstr "" +msgstr "เป็นสถานะทางเลือก" #. Label of the is_primary (Check) field in DocType 'Contact Email' #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Is Primary" -msgstr "" +msgstr "เป็นหลัก" #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Is Primary Contact" -msgstr "" +msgstr "เป็นผู้ติดต่อหลัก" #. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "" +msgstr "เป็นมือถือหลัก" #. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "" +msgstr "เป็นโทรศัพท์หลัก" #. Label of the is_private (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Private" -msgstr "" +msgstr "เป็นส่วนตัว" #. Label of the is_public (Check) field in DocType 'Dashboard Chart' #. Label of the is_public (Check) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "" +msgstr "เป็นสาธารณะ" #. Label of the is_published_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Is Published Field" -msgstr "" +msgstr "เป็นฟิลด์ที่เผยแพร่" #: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" -msgstr "" +msgstr "ฟิลด์ที่เผยแพร่ต้องเป็นชื่อฟิลด์ที่ถูกต้อง" #. Label of the is_query_report (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:341 msgid "Is Query Report" -msgstr "" +msgstr "เป็นรายงานคำสั่ง" #. Label of the is_remote_request (Check) field in DocType 'Integration #. Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Is Remote Request?" -msgstr "" +msgstr "เป็นคำขอระยะไกลหรือไม่?" #. Label of the is_setup_complete (Check) field in DocType 'Installed #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Is Setup Complete?" -msgstr "" +msgstr "การตั้งค่าเสร็จสมบูรณ์หรือไม่?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' @@ -13325,17 +13514,17 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:64 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" -msgstr "" +msgstr "เป็นเดี่ยว" #. Label of the is_skipped (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Skipped" -msgstr "" +msgstr "ถูกข้าม" #. Label of the is_spam (Check) field in DocType 'Email Rule' #: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "" +msgstr "เป็นสแปม" #. Label of the is_standard (Check) field in DocType 'Navbar Item' #. Label of the is_standard (Select) field in DocType 'Report' @@ -13354,13 +13543,13 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/email/doctype/notification/notification.json msgid "Is Standard" -msgstr "" +msgstr "เป็นมาตรฐาน" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" -msgstr "" +msgstr "สามารถส่งได้" #. Label of the is_system_generated (Check) field in DocType 'Custom Field' #. Label of the is_system_generated (Check) field in DocType 'Customize Form @@ -13370,27 +13559,27 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" -msgstr "" +msgstr "ถูกสร้างโดยระบบ" #. Label of the istable (Check) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Table" -msgstr "" +msgstr "เป็นตาราง" #. Label of the is_table_field (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Is Table Field" -msgstr "" +msgstr "เป็นฟิลด์ตาราง" #. Label of the is_tree (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Is Tree" -msgstr "" +msgstr "เป็นต้นไม้" #. Label of the is_unique (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Is Unique" -msgstr "" +msgstr "เป็นเอกลักษณ์" #. Label of the is_virtual (Check) field in DocType 'DocType' #. Label of the is_virtual (Check) field in DocType 'Custom Field' @@ -13399,30 +13588,30 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Virtual" -msgstr "" +msgstr "เป็นเสมือน" #. Label of the is_standard (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Is standard" -msgstr "" +msgstr "เป็นมาตรฐาน" #: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." -msgstr "" +msgstr "การลบไฟล์นี้: {0} มีความเสี่ยง โปรดติดต่อผู้จัดการระบบของคุณ" #. Label of the item_label (Data) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Label" -msgstr "" +msgstr "ป้ายกำกับของรายการ" #. Label of the item_type (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Type" -msgstr "" +msgstr "ประเภทของรายการ" #: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" -msgstr "" +msgstr "ไม่สามารถเพิ่มรายการในลูกหลานของตัวเองได้" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13547,7 +13736,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "" +msgstr "คัมบัง" #. Name of a DocType #. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' @@ -13555,37 +13744,37 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:511 msgid "Kanban Board" -msgstr "" +msgstr "กระดานคัมบัง" #. Name of a DocType #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" -msgstr "" +msgstr "คอลัมน์กระดานคัมบัง" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" -msgstr "" +msgstr "ชื่อกระดานคัมบัง" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" -msgstr "" +msgstr "การตั้งค่าคัมบัง" #: frappe/public/js/frappe/list/base_list.js:206 msgid "Kanban View" -msgstr "" +msgstr "มุมมองคัมบัง" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json msgid "Keep track of all update feeds" -msgstr "" +msgstr "ติดตามฟีดการอัปเดตทั้งหมด" #. Description of a DocType #: frappe/core/doctype/communication/communication.json msgid "Keeps track of all communications" -msgstr "" +msgstr "ติดตามการสื่อสารทั้งหมด" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' @@ -13600,19 +13789,19 @@ msgstr "" #: frappe/integrations/doctype/webhook_header/webhook_header.json #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Key" -msgstr "" +msgstr "คีย์" #. Label of a standard help item #. Type: Action #: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "ทางลัดแป้นพิมพ์" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Keycloak" -msgstr "" +msgstr "คีย์โคล้ก" #: frappe/public/js/frappe/utils/number_systems.js:37 msgctxt "Number system" @@ -13625,17 +13814,17 @@ msgstr "" #: frappe/website/doctype/help_article/templates/help_article_list.html:11 #: frappe/website/workspace/website/website.json msgid "Knowledge Base" -msgstr "" +msgstr "ฐานความรู้" #. Name of a role #: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Contributor" -msgstr "" +msgstr "ผู้สนับสนุนฐานความรู้" #. Name of a role #: frappe/website/doctype/help_article/help_article.json msgid "Knowledge Base Editor" -msgstr "" +msgstr "บรรณาธิการฐานความรู้" #: frappe/public/js/frappe/utils/number_systems.js:27 #: frappe/public/js/frappe/utils/number_systems.js:49 @@ -13647,143 +13836,143 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" -msgstr "" +msgstr "การยืนยันตัวตน LDAP" #. Label of the ldap_custom_settings_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" -msgstr "" +msgstr "การตั้งค่า LDAP แบบกำหนดเอง" #. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "" +msgstr "ฟิลด์อีเมล LDAP" #. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP First Name Field" -msgstr "" +msgstr "ฟิลด์ชื่อแรก LDAP" #. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group" -msgstr "" +msgstr "กลุ่ม LDAP" #. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Field" -msgstr "" +msgstr "ฟิลด์กลุ่ม LDAP" #. Name of a DocType #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "LDAP Group Mapping" -msgstr "" +msgstr "การจับคู่กลุ่ม LDAP" #. Label of the ldap_group_mappings_section (Section Break) field in DocType #. 'LDAP Settings' #. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Mappings" -msgstr "" +msgstr "การจับคู่กลุ่ม LDAP หลายรายการ" #. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Member attribute" -msgstr "" +msgstr "แอตทริบิวต์สมาชิกกลุ่ม LDAP" #. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Last Name Field" -msgstr "" +msgstr "ฟิลด์นามสกุล LDAP" #. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Middle Name Field" -msgstr "" +msgstr "ฟิลด์ชื่อกลาง LDAP" #. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Mobile Field" -msgstr "" +msgstr "ฟิลด์มือถือ LDAP" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" -msgstr "" +msgstr "ไม่ได้ติดตั้ง LDAP" #. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Phone Field" -msgstr "" +msgstr "ฟิลด์โทรศัพท์ LDAP" #. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search String" -msgstr "" +msgstr "สตริงการค้นหา LDAP" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" -msgstr "" +msgstr "สตริงการค้นหา LDAP ต้องอยู่ใน '()' และต้องมีตัวแทนผู้ใช้ {0} เช่น sAMAccountName={0}" #. Label of the ldap_search_and_paths_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search and Paths" -msgstr "" +msgstr "การค้นหาและเส้นทาง LDAP" #. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Security" -msgstr "" +msgstr "ความปลอดภัย LDAP" #. Label of the ldap_server_settings_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Settings" -msgstr "" +msgstr "การตั้งค่าเซิร์ฟเวอร์ LDAP" #. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Url" -msgstr "" +msgstr "URL เซิร์ฟเวอร์ LDAP" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "LDAP Settings" -msgstr "" +msgstr "การตั้งค่า LDAP" #. Label of the ldap_user_creation_and_mapping_section (Section Break) field in #. DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP User Creation and Mapping" -msgstr "" +msgstr "การสร้างและจับคู่ผู้ใช้ LDAP" #. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Username Field" -msgstr "" +msgstr "ฟิลด์ชื่อผู้ใช้ LDAP" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 msgid "LDAP is not enabled." -msgstr "" +msgstr "ไม่ได้เปิดใช้งาน LDAP" #. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Groups" -msgstr "" +msgstr "เส้นทางการค้นหากลุ่ม LDAP" #. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Users" -msgstr "" +msgstr "เส้นทางการค้นหาผู้ใช้ LDAP" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 msgid "LDAP settings incorrect. validation response was: {0}" -msgstr "" +msgstr "การตั้งค่า LDAP ไม่ถูกต้อง การตอบกลับการตรวจสอบคือ: {0}" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Label of the label (Data) field in DocType 'DocField' @@ -13834,31 +14023,31 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Label" -msgstr "" +msgstr "ป้ายกำกับ" #. Label of the label_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "" +msgstr "ความช่วยเหลือป้ายกำกับ" #. Label of the label_and_type (Section Break) field in DocType 'Customize Form #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "" +msgstr "ป้ายกำกับและประเภท" #: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" -msgstr "" +msgstr "ป้ายกำกับเป็นสิ่งจำเป็น" #. Label of the sb0 (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Landing Page" -msgstr "" +msgstr "หน้าแรก" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" -msgstr "" +msgstr "แนวนอน" #. Name of a DocType #. Label of the language (Link) field in DocType 'System Settings' @@ -13870,190 +14059,190 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" -msgstr "" +msgstr "ภาษา" #. Label of the language_code (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Code" -msgstr "" +msgstr "รหัสภาษา" #. Label of the language_name (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Language Name" -msgstr "" +msgstr "ชื่อภาษา" #. Label of the last_10_active_users (Code) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Last 10 active users" -msgstr "" +msgstr "ผู้ใช้ที่ใช้งานล่าสุด 10 คน" #: frappe/public/js/frappe/ui/filters/filter.js:628 msgid "Last 14 Days" -msgstr "" +msgstr "14 วันที่ผ่านมา" #: frappe/public/js/frappe/ui/filters/filter.js:632 msgid "Last 30 Days" -msgstr "" +msgstr "30 วันที่ผ่านมา" #: frappe/public/js/frappe/ui/filters/filter.js:652 msgid "Last 6 Months" -msgstr "" +msgstr "6 เดือนที่ผ่านมา" #: frappe/public/js/frappe/ui/filters/filter.js:624 msgid "Last 7 Days" -msgstr "" +msgstr "7 วันที่ผ่านมา" #: frappe/public/js/frappe/ui/filters/filter.js:636 msgid "Last 90 Days" -msgstr "" +msgstr "90 วันที่ผ่านมา" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "" +msgstr "ใช้งานล่าสุด" #. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Last Execution" -msgstr "" +msgstr "การดำเนินการล่าสุด" #. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" -msgstr "" +msgstr "การเต้นของหัวใจครั้งล่าสุด" #. Label of the last_ip (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "" +msgstr "IP ล่าสุด" #. Label of the last_known_versions (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Known Versions" -msgstr "" +msgstr "เวอร์ชันที่ทราบล่าสุด" #. Label of the last_login (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Login" -msgstr "" +msgstr "เข้าสู่ระบบล่าสุด" #: frappe/email/doctype/notification/notification.js:32 msgid "Last Modified Date" -msgstr "" +msgstr "วันที่แก้ไขล่าสุด" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 msgid "Last Modified On" -msgstr "" +msgstr "แก้ไขล่าสุดเมื่อ" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "" +msgstr "เดือนที่แล้ว" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 msgid "Last Name" -msgstr "" +msgstr "นามสกุล" #. Label of the last_password_reset_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Password Reset Date" -msgstr "" +msgstr "วันที่รีเซ็ตรหัสผ่านครั้งล่าสุด" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:648 msgid "Last Quarter" -msgstr "" +msgstr "ไตรมาสที่แล้ว" #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Reset Password Key Generated On" -msgstr "" +msgstr "สร้างคีย์รีเซ็ตรหัสผ่านครั้งล่าสุดเมื่อ" #. Label of the datetime_last_run (Datetime) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Last Run" -msgstr "" +msgstr "การทำงานครั้งล่าสุด" #. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Last Sync On" -msgstr "" +msgstr "ซิงค์ครั้งล่าสุดเมื่อ" #. Label of the last_synced_at (Datetime) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Last Synced At" -msgstr "" +msgstr "ซิงค์ครั้งล่าสุดที่" #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "" +msgstr "ซิงค์ครั้งล่าสุดเมื่อ" #: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 #: frappe/public/js/frappe/model/model.js:130 msgid "Last Updated By" -msgstr "" +msgstr "อัปเดตล่าสุดโดย" #: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 #: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" -msgstr "" +msgstr "อัปเดตล่าสุดเมื่อ" #. Label of the last_user (Link) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Last User" -msgstr "" +msgstr "ผู้ใช้ล่าสุด" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:640 msgid "Last Week" -msgstr "" +msgstr "สัปดาห์ที่แล้ว" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:656 msgid "Last Year" -msgstr "" +msgstr "ปีที่แล้ว" #: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" -msgstr "" +msgstr "ซิงค์ครั้งล่าสุด {0}" #: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" -msgstr "" +msgstr "รีเซ็ตเลย์เอาต์" #: frappe/custom/doctype/customize_form/customize_form.js:186 msgid "Layout will be reset to standard layout, are you sure you want to do this?" -msgstr "" +msgstr "เลย์เอาต์จะถูกรีเซ็ตเป็นเลย์เอาต์มาตรฐาน คุณแน่ใจหรือไม่ว่าต้องการทำเช่นนี้?" #: frappe/website/web_template/section_with_features/section_with_features.html:26 msgid "Learn more" -msgstr "" +msgstr "เรียนรู้เพิ่มเติม" #. Description of the 'Repeat Till' (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Leave blank to repeat always" -msgstr "" +msgstr "เว้นว่างไว้เพื่อทำซ้ำเสมอ" #: frappe/core/doctype/communication/mixins.py:207 #: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" -msgstr "" +msgstr "ออกจากการสนทนานี้" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "" +msgstr "บัญชีแยกประเภท" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -14062,32 +14251,32 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Left" -msgstr "" +msgstr "ซ้าย" #: frappe/printing/page/print_format_builder/print_format_builder.js:483 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 msgctxt "alignment" msgid "Left" -msgstr "" +msgstr "ซ้าย" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Bottom" -msgstr "" +msgstr "ซ้ายล่าง" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Center" -msgstr "" +msgstr "ซ้ายกลาง" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" -msgstr "" +msgstr "ออกจากการสนทนานี้" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Legal" -msgstr "" +msgstr "กฎหมาย" #. Label of the length (Int) field in DocType 'DocField' #. Label of the length (Int) field in DocType 'Custom Field' @@ -14096,99 +14285,99 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Length" -msgstr "" +msgstr "ความยาว" #: frappe/public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" -msgstr "" +msgstr "ความยาวของอาร์เรย์ข้อมูลที่ส่งผ่านเกินค่าจุดป้ายกำกับสูงสุดที่อนุญาต!" #: frappe/database/schema.py:134 msgid "Length of {0} should be between 1 and 1000" -msgstr "" +msgstr "ความยาวของ {0} ควรอยู่ระหว่าง 1 ถึง 1000" #: frappe/public/js/frappe/widgets/chart_widget.js:729 msgid "Less" -msgstr "" +msgstr "น้อยกว่า" #: frappe/public/js/frappe/ui/filters/filter.js:24 msgid "Less Than" -msgstr "" +msgstr "น้อยกว่า" #: frappe/public/js/frappe/ui/filters/filter.js:26 msgid "Less Than Or Equal To" -msgstr "" +msgstr "น้อยกว่าหรือเท่ากับ" #: frappe/public/js/frappe/widgets/onboarding_widget.js:434 msgid "Let us continue with the onboarding" -msgstr "" +msgstr "ให้เราดำเนินการต่อกับการเริ่มต้นใช้งาน" #: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 #: frappe/public/js/frappe/widgets/onboarding_widget.js:597 msgid "Let's Get Started" -msgstr "" +msgstr "มาเริ่มกันเลย" #: frappe/utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" -msgstr "" +msgstr "หลีกเลี่ยงคำและตัวอักษรที่ซ้ำกัน" #: frappe/desk/page/setup_wizard/setup_wizard.js:474 msgid "Let's set up your account" -msgstr "" +msgstr "มาตั้งค่าบัญชีของคุณกัน" #: frappe/public/js/frappe/widgets/onboarding_widget.js:263 #: frappe/public/js/frappe/widgets/onboarding_widget.js:304 #: frappe/public/js/frappe/widgets/onboarding_widget.js:375 #: frappe/public/js/frappe/widgets/onboarding_widget.js:414 msgid "Let's take you back to onboarding" -msgstr "" +msgstr "ให้เราพาคุณกลับไปที่การเริ่มต้นใช้งาน" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Letter" -msgstr "" +msgstr "จดหมาย" #. Label of the letter_head (Link) field in DocType 'Report' #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 msgid "Letter Head" -msgstr "" +msgstr "หัวจดหมาย" #. Label of the source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Based On" -msgstr "" +msgstr "หัวจดหมายตาม" #. Label of the letter_head_image_section (Section Break) field in DocType #. 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Image" -msgstr "" +msgstr "ภาพหัวจดหมาย" #. Label of the letter_head_name (Data) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 msgid "Letter Head Name" -msgstr "" +msgstr "ชื่อหัวจดหมาย" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Letter Head Scripts" -msgstr "" +msgstr "สคริปต์หัวจดหมาย" #: frappe/printing/doctype/letter_head/letter_head.py:48 msgid "Letter Head cannot be both disabled and default" -msgstr "" +msgstr "หัวจดหมายไม่สามารถปิดใช้งานและเป็นค่าเริ่มต้นได้" #. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head in HTML" -msgstr "" +msgstr "หัวจดหมายใน HTML" #. Label of the permlevel (Int) field in DocType 'Custom DocPerm' #. Label of the permlevel (Int) field in DocType 'DocPerm' @@ -14200,90 +14389,94 @@ msgstr "" #: frappe/public/js/frappe/roles_editor.js:66 #: frappe/website/doctype/help_article/help_article.json msgid "Level" -msgstr "" +msgstr "ระดับ" #: frappe/core/page/permission_manager/permission_manager.js:467 msgid "Level 0 is for document level permissions, higher levels for field level permissions." -msgstr "" +msgstr "ระดับ 0 สำหรับสิทธิ์ระดับเอกสาร ระดับที่สูงกว่าสำหรับสิทธิ์ระดับฟิลด์" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 msgid "Library" -msgstr "" +msgstr "ห้องสมุด" #. Label of the license (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 msgid "License" -msgstr "" +msgstr "ใบอนุญาต" #. Label of the license_type (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "License Type" -msgstr "" +msgstr "ประเภทใบอนุญาต" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Light" -msgstr "" +msgstr "แสง" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Light Blue" -msgstr "" +msgstr "ฟ้าอ่อน" #. Label of the light_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Light Color" -msgstr "" +msgstr "สีอ่อน" #: frappe/public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" -msgstr "" +msgstr "ธีมสีอ่อน" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "" +msgstr "ถูกใจ" #. Label of the like_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit" -msgstr "" +msgstr "จำกัดการถูกใจ" #. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Like limit per hour" -msgstr "" +msgstr "จำกัดการถูกใจต่อชั่วโมง" #: frappe/templates/includes/likes/likes.py:30 msgid "Like on {0}: {1}" -msgstr "" +msgstr "ถูกใจใน {0}: {1}" #: frappe/desk/like.py:92 msgid "Liked" -msgstr "" +msgstr "ถูกใจแล้ว" #: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 #: frappe/public/js/frappe/model/model.js:134 msgid "Liked By" -msgstr "" +msgstr "ถูกใจโดย" #. Label of the likes (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Likes" -msgstr "" +msgstr "การถูกใจ" #. Label of the limit (Int) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Limit" +msgstr "ขีดจำกัด" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "" +msgstr "เส้น" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -14311,23 +14504,23 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Link" -msgstr "" +msgstr "ลิงก์" #. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Link Cards" -msgstr "" +msgstr "ลิงก์การ์ด" #. Label of the link_count (Int) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Count" -msgstr "" +msgstr "จำนวนลิงก์" #. Label of the link_details_section (Section Break) field in DocType #. 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" -msgstr "" +msgstr "รายละเอียดลิงก์" #. Label of the link_doctype (Link) field in DocType 'Activity Log' #. Label of the link_doctype (Link) field in DocType 'Communication Link' @@ -14336,28 +14529,28 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "" +msgstr "ลิงก์ DocType" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "" +msgstr "ลิงก์ประเภทเอกสาร" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 #: frappe/workflow/doctype/workflow_action/workflow_action.py:202 msgid "Link Expired" -msgstr "" +msgstr "ลิงก์หมดอายุ" #. Label of the link_field_results_limit (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Link Field Results Limit" -msgstr "" +msgstr "จำกัดผลลัพธ์ฟิลด์ลิงก์" #. Label of the link_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link Fieldname" -msgstr "" +msgstr "ชื่อฟิลด์ลิงก์" #. Label of the link_filters (JSON) field in DocType 'DocField' #. Label of the link_filters (JSON) field in DocType 'Custom Field' @@ -14368,7 +14561,7 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" -msgstr "" +msgstr "ตัวกรองลิงก์" #. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' @@ -14377,14 +14570,14 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "" +msgstr "ชื่อลิงก์" #. Label of the link_title (Read Only) field in DocType 'Communication Link' #. Label of the link_title (Read Only) field in DocType 'Dynamic Link' #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "" +msgstr "ชื่อเรื่องลิงก์" #. Label of the link_to (Dynamic Link) field in DocType 'Workspace' #. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' @@ -14396,11 +14589,11 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:281 #: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "" +msgstr "ลิงก์ไปยัง" #: frappe/public/js/frappe/widgets/widget_dialog.js:363 msgid "Link To in Row" -msgstr "" +msgstr "ลิงก์ไปยังในแถว" #. Label of the link_type (Select) field in DocType 'Workspace' #. Label of the link_type (Select) field in DocType 'Workspace Link' @@ -14409,11 +14602,11 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:410 #: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" -msgstr "" +msgstr "ประเภทลิงก์" #: frappe/public/js/frappe/widgets/widget_dialog.js:359 msgid "Link Type in Row" -msgstr "" +msgstr "ประเภทลิงก์ในแถว" #: frappe/website/doctype/about_us_settings/about_us_settings.js:6 msgid "Link for About Us Page is \"/about\"." @@ -14422,23 +14615,23 @@ msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "" +msgstr "ลิงก์ที่เป็นหน้าแรกของเว็บไซต์ ลิงก์มาตรฐาน (หน้าแรก, เข้าสู่ระบบ, ผลิตภัณฑ์, บล็อก, เกี่ยวกับ, ติดต่อ)" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "" +msgstr "ลิงก์ไปยังหน้าที่คุณต้องการเปิด เว้นว่างไว้หากคุณต้องการทำให้เป็นกลุ่มหลัก" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json msgid "Linked" -msgstr "" +msgstr "ลิงก์แล้ว" #: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" -msgstr "" +msgstr "ลิงก์กับ" #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' @@ -14453,7 +14646,7 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" -msgstr "" +msgstr "ลิงก์" #. Option for the 'Apply To' (Select) field in DocType 'Client Script' #. Option for the 'View' (Select) field in DocType 'Form Tour' @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14608,47 +14802,47 @@ msgstr "" #. Label of the log_data_section (Section Break) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Log Data" -msgstr "" +msgstr "ข้อมูลบันทึก" #. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" -msgstr "" +msgstr "ประเภทเอกสารบันทึก" #: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" -msgstr "" +msgstr "เข้าสู่ระบบไปยัง {0}" #. Label of the log_index (Int) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Log Index" -msgstr "" +msgstr "ดัชนีบันทึก" #. Name of a DocType #: frappe/core/doctype/log_setting_user/log_setting_user.json msgid "Log Setting User" -msgstr "" +msgstr "ผู้ตั้งค่าบันทึก" #. Name of a DocType #: frappe/core/doctype/log_settings/log_settings.json #: frappe/public/js/frappe/logtypes.js:20 msgid "Log Settings" -msgstr "" +msgstr "การตั้งค่าบันทึก" #: frappe/www/app.py:23 msgid "Log in to access this page." -msgstr "" +msgstr "เข้าสู่ระบบเพื่อเข้าถึงหน้านี้" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "" +msgstr "ออกจากระบบ" #: frappe/handler.py:118 msgid "Logged Out" -msgstr "" +msgstr "ออกจากระบบแล้ว" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #. Label of the security_tab (Tab Break) field in DocType 'System Settings' @@ -14662,139 +14856,144 @@ msgstr "" #: frappe/website/page_renderers/not_permitted_page.py:24 #: frappe/www/login.html:45 msgid "Login" -msgstr "" +msgstr "เข้าสู่ระบบ" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "" +msgstr "เข้าสู่ระบบหลังจาก" #. Label of the login_before (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "" +msgstr "เข้าสู่ระบบก่อน" #: frappe/public/js/frappe/desk.js:256 msgid "Login Failed please try again" -msgstr "" +msgstr "การเข้าสู่ระบบล้มเหลว โปรดลองอีกครั้ง" #: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" -msgstr "" +msgstr "ต้องการรหัสเข้าสู่ระบบ" #. Label of the login_methods_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login Methods" -msgstr "" +msgstr "วิธีการเข้าสู่ระบบ" #. Label of the misc_section (Section Break) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" -msgstr "" +msgstr "หน้าการเข้าสู่ระบบ" #: frappe/www/login.py:156 msgid "Login To {0}" -msgstr "" +msgstr "เข้าสู่ระบบไปยัง {0}" #: frappe/twofactor.py:260 msgid "Login Verification Code from {}" -msgstr "" +msgstr "รหัสยืนยันการเข้าสู่ระบบจาก {}" #: frappe/templates/emails/new_message.html:4 msgid "Login and view in Browser" -msgstr "" +msgstr "เข้าสู่ระบบและดูในเบราว์เซอร์" #: frappe/website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" -msgstr "" +msgstr "ต้องเข้าสู่ระบบเพื่อดูมุมมองรายการฟอร์มเว็บ เปิดใช้งาน {0} เพื่อดูการตั้งค่ารายการ" #: frappe/templates/includes/login/login.js:69 msgid "Login link sent to your email" -msgstr "" +msgstr "ลิงก์เข้าสู่ระบบถูกส่งไปยังอีเมลของคุณ" #: frappe/auth.py:339 frappe/auth.py:342 msgid "Login not allowed at this time" -msgstr "" +msgstr "ไม่อนุญาตให้เข้าสู่ระบบในขณะนี้" #. Label of the login_required (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Login required" -msgstr "" +msgstr "ต้องเข้าสู่ระบบ" #: frappe/twofactor.py:164 msgid "Login session expired, refresh page to retry" -msgstr "" +msgstr "เซสชันการเข้าสู่ระบบหมดอายุ โปรดรีเฟรชหน้าเพื่อทดลองอีกครั้ง" #: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" -msgstr "" +msgstr "เข้าสู่ระบบเพื่อแสดงความคิดเห็น" #: frappe/templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" -msgstr "" +msgstr "เข้าสู่ระบบเพื่อเริ่มการสนทนาใหม่" #: frappe/www/login.html:64 msgid "Login to {0}" -msgstr "" +msgstr "เข้าสู่ระบบไปยัง {0}" #: frappe/templates/includes/login/login.js:319 msgid "Login token required" -msgstr "" +msgstr "ต้องการโทเค็นเข้าสู่ระบบ" #: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" -msgstr "" +msgstr "เข้าสู่ระบบด้วยลิงก์อีเมล" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "เข้าสู่ระบบด้วย Frappe Cloud" #: frappe/www/login.html:49 msgid "Login with LDAP" -msgstr "" +msgstr "เข้าสู่ระบบด้วย LDAP" #. Label of the login_with_email_link (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" -msgstr "" +msgstr "เข้าสู่ระบบด้วยลิงก์อีเมล" #. Label of the login_with_email_link_expiry (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link expiry (in minutes)" -msgstr "" +msgstr "ลิงก์อีเมลหมดอายุ (ในนาที)" #: frappe/auth.py:144 msgid "Login with username and password is not allowed." -msgstr "" +msgstr "ไม่อนุญาตให้เข้าสู่ระบบด้วยชื่อผู้ใช้และรหัสผ่าน" #: frappe/www/login.html:100 msgid "Login with {0}" +msgstr "เข้าสู่ระบบด้วย {0}" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 msgid "Logout" -msgstr "" +msgstr "ออกจากระบบ" #: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" -msgstr "" +msgstr "ออกจากระบบทุกเซสชัน" #. Label of the logout_on_password_reset (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Logout All Sessions on Password Reset" -msgstr "" +msgstr "ออกจากระบบทุกเซสชันเมื่อรีเซ็ตรหัสผ่าน" #. Label of the logout_all_sessions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Logout From All Devices After Changing Password" -msgstr "" +msgstr "ออกจากระบบจากทุกอุปกรณ์หลังจากเปลี่ยนรหัสผ่าน" #. Group in User's connections #. Label of a Card Break in the Users Workspace @@ -14805,12 +15004,12 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Logs To Clear" -msgstr "" +msgstr "บันทึกที่ต้องล้าง" #. Label of the logs_to_clear (Table) field in DocType 'Log Settings' #: frappe/core/doctype/log_settings/log_settings.json msgid "Logs to Clear" -msgstr "" +msgstr "บันทึกที่ต้องล้าง" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -14819,25 +15018,25 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Long Text" -msgstr "" +msgstr "ข้อความยาว" #: frappe/public/js/frappe/widgets/onboarding_widget.js:317 msgid "Looks like you didn't change the value" -msgstr "" +msgstr "ดูเหมือนว่าคุณไม่ได้เปลี่ยนค่า" #: frappe/www/third_party_apps.html:59 msgid "Looks like you haven’t added any third party apps." -msgstr "" +msgstr "ดูเหมือนว่าคุณยังไม่ได้เพิ่มแอปของบุคคลที่สามใด ๆ" #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "Looks like you haven’t received any notifications." -msgstr "" +msgstr "ดูเหมือนว่าคุณยังไม่ได้รับการแจ้งเตือนใด ๆ" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:217 msgid "Low" -msgstr "" +msgstr "ต่ำ" #: frappe/public/js/frappe/utils/number_systems.js:13 msgctxt "Number system" @@ -14882,7 +15081,7 @@ msgstr "" #. Label of the major (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Major" -msgstr "" +msgstr "หลัก" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -14892,7 +15091,7 @@ msgstr "" #. Label of the make_attachment_public (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Make Attachment Public (by default)" -msgstr "" +msgstr "ทำให้ไฟล์แนบเป็นสาธารณะ (โดยค่าเริ่มต้น)" #. Label of the make_attachments_public (Check) field in DocType 'DocType' #. Label of the make_attachments_public (Check) field in DocType 'Customize @@ -14900,33 +15099,33 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" -msgstr "" +msgstr "ทำให้ไฟล์แนบเป็นสาธารณะโดยค่าเริ่มต้น" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" -msgstr "" +msgstr "ตรวจสอบให้แน่ใจว่ากำหนดค่าคีย์เข้าสู่ระบบโซเชียลก่อนปิดใช้งานเพื่อป้องกันการล็อกเอาต์" #: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" -msgstr "" +msgstr "ใช้รูปแบบแป้นพิมพ์ที่ยาวขึ้น" #: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" -msgstr "" +msgstr "สร้าง {0}" #: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" -msgstr "" +msgstr "ทำให้หน้าเป็นสาธารณะ" #: frappe/desk/page/setup_wizard/install_fixtures.py:28 msgid "Male" -msgstr "" +msgstr "ชาย" #: frappe/www/me.html:56 msgid "Manage 3rd party apps" -msgstr "" +msgstr "จัดการแอปของบุคคลที่สาม" #. Description of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -14944,7 +15143,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Mandatory" -msgstr "" +msgstr "จำเป็น" #. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' #. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form @@ -14954,41 +15153,41 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Mandatory Depends On" -msgstr "" +msgstr "ขึ้นอยู่กับที่จำเป็น" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "" +msgstr "ขึ้นอยู่กับที่จำเป็น (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" -msgstr "" +msgstr "ข้อมูลที่จำเป็นหายไป:" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" -msgstr "" +msgstr "ฟิลด์ที่จำเป็น: ตั้งค่าบทบาทสำหรับ" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" -msgstr "" +msgstr "ฟิลด์ที่จำเป็น: {0}" #: frappe/public/js/frappe/form/save.js:120 msgid "Mandatory fields required in table {0}, Row {1}" -msgstr "" +msgstr "ฟิลด์ที่จำเป็นในตาราง {0}, แถว {1}" #: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" -msgstr "" +msgstr "ฟิลด์ที่จำเป็นใน {0}" #: frappe/public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" msgid "Mandatory fields required:" -msgstr "" +msgstr "ฟิลด์ที่จำเป็น:" #: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" -msgstr "" +msgstr "จำเป็น:" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15150,59 +15347,59 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.py:1342 msgid "Max width for type Currency is 100px in row {0}" -msgstr "" +msgstr "ความกว้างสูงสุดสำหรับประเภทสกุลเงินคือ 100px ในแถว {0}" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Maximum" -msgstr "" +msgstr "สูงสุด" #: frappe/core/doctype/file/file.py:320 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." -msgstr "" +msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} สำหรับ {1} {2} แล้ว" #. Label of the total_fields (Select) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Maximum Number of Fields" -msgstr "" +msgstr "จำนวนฟิลด์สูงสุด" #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." -msgstr "" +msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} แล้ว" #: frappe/model/rename_doc.py:690 msgid "Maximum {0} rows allowed" -msgstr "" +msgstr "อนุญาตสูงสุด {0} แถว" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" -msgstr "" +msgstr "ฉัน" #: frappe/core/page/permission_manager/permission_manager_help.html:14 msgid "Meaning of Submit, Cancel, Amend" -msgstr "" +msgstr "ความหมายของการส่ง ยกเลิก แก้ไข" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" -msgstr "" +msgstr "ปานกลาง" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json msgid "Meeting" -msgstr "" +msgstr "การประชุม" #: frappe/email/doctype/notification/notification.js:196 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" -msgstr "" +msgstr "ตรงตามเงื่อนไขหรือไม่?" #. Group in Email Group's connections #: frappe/email/doctype/email_group/email_group.json @@ -15213,36 +15410,36 @@ msgstr "" #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Memory Usage" -msgstr "" +msgstr "การใช้งานหน่วยความจำ" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "การใช้งานหน่วยความจำใน MB" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Mention" -msgstr "" +msgstr "กล่าวถึง" #. Label of the enable_email_mention (Check) field in DocType 'Notification #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Mentions" -msgstr "" +msgstr "การกล่าวถึง" #: frappe/public/js/frappe/ui/page.html:41 #: frappe/public/js/frappe/ui/page.js:162 msgid "Menu" -msgstr "" +msgstr "เมนู" #: frappe/public/js/frappe/form/toolbar.js:242 #: frappe/public/js/frappe/model/model.js:705 msgid "Merge with existing" -msgstr "" +msgstr "รวมกับที่มีอยู่" #: frappe/utils/nestedset.py:307 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" -msgstr "" +msgstr "การรวมสามารถทำได้เฉพาะระหว่างกลุ่มถึงกลุ่มหรือโหนดใบถึงโหนดใบ" #. Label of the message (Text) field in DocType 'Auto Repeat' #. Label of the content (Text Editor) field in DocType 'Activity Log' @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,100 +15463,89 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" -msgstr "" +msgstr "ข้อความ" #: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" -msgstr "" - -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" +msgstr "ข้อความ" #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" -msgstr "" +msgstr "ตัวอย่างข้อความ" #. Label of the message_id (Small Text) field in DocType 'Communication' #. Label of the message_id (Small Text) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Message ID" -msgstr "" +msgstr "รหัสข้อความ" #. Label of the message_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "" +msgstr "พารามิเตอร์ข้อความ" #: frappe/templates/includes/contact.js:36 msgid "Message Sent" -msgstr "" +msgstr "ส่งข้อความแล้ว" #. Label of the message_type (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Type" -msgstr "" +msgstr "ประเภทข้อความ" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" -msgstr "" +msgstr "ข้อความถูกตัด" #: frappe/email/doctype/email_account/email_account.py:344 msgid "Message from server: {0}" -msgstr "" +msgstr "ข้อความจากเซิร์ฟเวอร์: {0}" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Message not setup" -msgstr "" +msgstr "ยังไม่ได้ตั้งค่าข้อความ" #. Description of the 'Success message' (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Message to be displayed on successful completion" -msgstr "" +msgstr "ข้อความที่จะแสดงเมื่อเสร็จสิ้นสำเร็จ" #. Label of the message_id (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Message-id" -msgstr "" +msgstr "รหัสข้อความ" #. Label of the messages (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" -msgstr "" +msgstr "ข้อความ" #. Label of the meta_section (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta" -msgstr "" +msgstr "เมตา" #. Label of the meta_description (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" -msgstr "" +msgstr "คำอธิบายเมตา" #. Label of the meta_image (Attach Image) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" -msgstr "" +msgstr "ภาพเมตา" #. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' @@ -15369,31 +15554,37 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "" +msgstr "แท็กเมตา" #. Label of the meta_title (Data) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" -msgstr "" +msgstr "ชื่อเรื่องเมตา" #. Label of the meta_description (Small Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta description" -msgstr "" +msgstr "คำอธิบายเมตา" #. Label of the meta_image (Attach Image) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta image" -msgstr "" +msgstr "ภาพเมตา" #. Label of the meta_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta title" -msgstr "" +msgstr "ชื่อเรื่องเมตา" #: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" +msgstr "ชื่อเรื่องเมตาสำหรับ SEO" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" msgstr "" #. Label of the method (Data) field in DocType 'Access Log' @@ -15413,72 +15604,77 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/notification/notification.json msgid "Method" -msgstr "" +msgstr "วิธีการ" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" -msgstr "" +msgstr "ไม่อนุญาตวิธีการ" #: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" -msgstr "" +msgstr "ต้องการวิธีการเพื่อสร้างการ์ดตัวเลข" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" -msgstr "" +msgstr "กลางกลาง" #. Label of the middle_name (Data) field in DocType 'Contact' #. Label of the middle_name (Data) field in DocType 'User' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json msgid "Middle Name" -msgstr "" +msgstr "ชื่อกลาง" #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json #: frappe/automation/workspace/tools/tools.json msgid "Milestone" -msgstr "" +msgstr "เหตุการณ์สำคัญ" #. Label of the milestone_tracker (Link) field in DocType 'Milestone' #. Name of a DocType #: frappe/automation/doctype/milestone/milestone.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "" +msgstr "ตัวติดตามเหตุการณ์สำคัญ" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Minimum" -msgstr "" +msgstr "ขั้นต่ำ" #. Label of the minimum_password_score (Select) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Minimum Password Score" -msgstr "" +msgstr "คะแนนรหัสผ่านขั้นต่ำ" #. Label of the minor (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Minor" -msgstr "" +msgstr "เล็กน้อย" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "นาที" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" -msgstr "" +msgstr "นาทีหลังจาก" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Before" -msgstr "" +msgstr "นาทีก่อน" #. Label of the minutes_offset (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes Offset" -msgstr "" +msgstr "การชดเชยนาที" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 @@ -15486,46 +15682,46 @@ msgstr "" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Misconfigured" -msgstr "" +msgstr "การกำหนดค่าผิดพลาด" #: frappe/desk/page/setup_wizard/install_fixtures.py:49 msgid "Miss" -msgstr "" +msgstr "พลาด" #: frappe/desk/form/meta.py:194 msgid "Missing DocType" -msgstr "" +msgstr "DocType ที่หายไป" #: frappe/core/doctype/doctype/doctype.py:1526 msgid "Missing Field" -msgstr "" +msgstr "ฟิลด์ที่หายไป" #: frappe/public/js/frappe/form/save.js:131 msgid "Missing Fields" -msgstr "" +msgstr "ฟิลด์ที่หายไป" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" -msgstr "" +msgstr "ตัวกรองที่จำเป็นหายไป" #: frappe/desk/form/assign_to.py:110 msgid "Missing Permission" -msgstr "" +msgstr "สิทธิ์ที่หายไป" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" -msgstr "" +msgstr "ค่าที่หายไป" #: frappe/public/js/frappe/ui/field_group.js:124 #: frappe/public/js/frappe/widgets/widget_dialog.js:374 #: frappe/public/js/workflow_builder/store.js:97 #: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" -msgstr "" +msgstr "ค่าที่จำเป็นหายไป" #: frappe/www/login.py:107 msgid "Mobile" -msgstr "" +msgstr "มือถือ" #. Label of the mobile_no (Data) field in DocType 'Contact' #. Label of the mobile_no (Data) field in DocType 'User' @@ -15539,11 +15735,11 @@ msgstr "" #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" -msgstr "" +msgstr "ตัวกระตุ้นโมดอล" #: frappe/core/report/transaction_log_report/transaction_log_report.py:106 msgid "Modified By" -msgstr "" +msgstr "แก้ไขโดย" #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' @@ -15578,12 +15774,12 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Module" -msgstr "" +msgstr "โมดูล" #. Label of the module (Link) field in DocType 'Server Script' #. Label of the module (Link) field in DocType 'Client Script' @@ -15596,7 +15792,7 @@ msgstr "" #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" -msgstr "" +msgstr "โมดูล (สำหรับการส่งออก)" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -15604,26 +15800,26 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/workspace/build/build.json msgid "Module Def" -msgstr "" +msgstr "การกำหนดโมดูล" #. Label of the module_html (HTML) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module HTML" -msgstr "" +msgstr "โมดูล HTML" #. Label of the module_name (Data) field in DocType 'Module Def' #. Label of the module_name (Data) field in DocType 'Desktop Icon' #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Module Name" -msgstr "" +msgstr "ชื่อโมดูล" #. Label of a Link in the Build Workspace #. Name of a DocType #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" -msgstr "" +msgstr "การเริ่มต้นใช้งานโมดูล" #. Name of a DocType #. Label of the module_profile (Link) field in DocType 'User' @@ -15631,36 +15827,36 @@ msgstr "" #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" -msgstr "" +msgstr "โปรไฟล์โมดูล" #. Label of the module_profile_name (Data) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module Profile Name" -msgstr "" +msgstr "ชื่อโปรไฟล์โมดูล" #: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" -msgstr "" +msgstr "รีเซ็ตความคืบหน้าการเริ่มต้นใช้งานโมดูล" #: frappe/custom/doctype/customize_form/customize_form.js:250 msgid "Module to Export" -msgstr "" +msgstr "โมดูลที่จะส่งออก" #: frappe/modules/utils.py:273 msgid "Module {} not found" -msgstr "" +msgstr "ไม่พบโมดูล {}" #. Group in Package's connections #. Label of a Card Break in the Build Workspace #: frappe/core/doctype/package/package.json #: frappe/core/workspace/build/build.json msgid "Modules" -msgstr "" +msgstr "โมดูล" #. Label of the modules_html (HTML) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "" +msgstr "โมดูล HTML" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -15676,7 +15872,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Monday" -msgstr "" +msgstr "วันจันทร์" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -15686,11 +15882,11 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "" +msgstr "โมโนสเปซ" #: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" -msgstr "" +msgstr "เดือน" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -15710,14 +15906,14 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:400 #: frappe/website/report/website_analytics/website_analytics.js:25 msgid "Monthly" -msgstr "" +msgstr "รายเดือน" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Monthly Long" -msgstr "" +msgstr "รายเดือนยาว" #: frappe/public/js/frappe/form/link_selector.js:39 #: frappe/public/js/frappe/form/multi_select_dialog.js:45 @@ -15728,13 +15924,13 @@ msgstr "" #: frappe/templates/includes/list/list.html:25 #: frappe/templates/includes/search_template.html:13 msgid "More" -msgstr "" +msgstr "เพิ่มเติม" #. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission #. Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "More Info" -msgstr "" +msgstr "ข้อมูลเพิ่มเติม" #. Label of the more_info (Section Break) field in DocType 'Contact' #. Label of the additional_info (Section Break) field in DocType 'Activity Log' @@ -15746,112 +15942,112 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json msgid "More Information" -msgstr "" +msgstr "ข้อมูลเพิ่มเติม" #: frappe/website/doctype/help_article/templates/help_article.html:19 #: frappe/website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" -msgstr "" +msgstr "บทความเพิ่มเติมเกี่ยวกับ {0}" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "More content for the bottom of the page." -msgstr "" +msgstr "เนื้อหาเพิ่มเติมสำหรับด้านล่างของหน้า" #: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" -msgstr "" +msgstr "ใช้บ่อยที่สุด" #: frappe/utils/password.py:76 msgid "Most probably your password is too long." -msgstr "" +msgstr "รหัสผ่านของคุณอาจยาวเกินไป" #: frappe/core/doctype/communication/communication.js:86 #: frappe/core/doctype/communication/communication.js:194 #: frappe/core/doctype/communication/communication.js:212 #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Move" -msgstr "" +msgstr "ย้าย" #: frappe/public/js/frappe/form/grid_row.js:193 msgid "Move To" -msgstr "" +msgstr "ย้ายไปยัง" #: frappe/core/doctype/communication/communication.js:104 msgid "Move To Trash" -msgstr "" +msgstr "ย้ายไปยังถังขยะ" #: frappe/public/js/form_builder/components/Section.vue:295 msgid "Move current and all subsequent sections to a new tab" -msgstr "" +msgstr "ย้ายส่วนปัจจุบันและส่วนถัดไปทั้งหมดไปยังแท็บใหม่" #: frappe/public/js/frappe/form/form.js:177 msgid "Move cursor to above row" -msgstr "" +msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านบน" #: frappe/public/js/frappe/form/form.js:181 msgid "Move cursor to below row" -msgstr "" +msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านล่าง" #: frappe/public/js/frappe/form/form.js:185 msgid "Move cursor to next column" -msgstr "" +msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ถัดไป" #: frappe/public/js/frappe/form/form.js:189 msgid "Move cursor to previous column" -msgstr "" +msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ก่อนหน้า" #: frappe/public/js/form_builder/components/Section.vue:294 msgid "Move sections to new tab" -msgstr "" +msgstr "ย้ายส่วนไปยังแท็บใหม่" #: frappe/public/js/form_builder/components/Field.vue:237 msgid "Move the current field and the following fields to a new column" -msgstr "" +msgstr "ย้ายฟิลด์ปัจจุบันและฟิลด์ถัดไปไปยังคอลัมน์ใหม่" #: frappe/public/js/frappe/form/grid_row.js:168 msgid "Move to Row Number" -msgstr "" +msgstr "ย้ายไปยังหมายเลขแถว" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Move to next step when clicked inside highlighted area." -msgstr "" +msgstr "ย้ายไปยังขั้นตอนถัดไปเมื่อคลิกภายในพื้นที่ที่ไฮไลต์" #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" -msgstr "" +msgstr "Mozilla ไม่รองรับ :has() ดังนั้นคุณสามารถส่งตัวเลือกพาเรนต์ที่นี่เป็นวิธีแก้ไข" #: frappe/desk/page/setup_wizard/install_fixtures.py:43 msgid "Mr" -msgstr "" +msgstr "นาย" #: frappe/desk/page/setup_wizard/install_fixtures.py:47 msgid "Mrs" -msgstr "" +msgstr "นาง" #: frappe/desk/page/setup_wizard/install_fixtures.py:44 msgid "Ms" -msgstr "" +msgstr "นางสาว" #: frappe/utils/nestedset.py:331 msgid "Multiple root nodes not allowed." -msgstr "" +msgstr "ไม่อนุญาตให้มีโหนดรากหลายโหนด" #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Must be a publicly accessible Google Sheets URL" -msgstr "" +msgstr "ต้องเป็น URL Google Sheets ที่เข้าถึงได้สาธารณะ" #. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" -msgstr "" +msgstr "ต้องอยู่ใน '()' และรวม '{0}' ซึ่งเป็นตัวแทนสำหรับชื่อผู้ใช้/เข้าสู่ระบบ เช่น (&(objectclass=user)(uid={0}))" #. Description of the 'Image Field' (Data) field in DocType 'DocType' #. Description of the 'Image Field' (Data) field in DocType 'Customize Form' @@ -15860,37 +16056,37 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." -msgstr "" +msgstr "ต้องมีสิทธิ์รายงานเพื่อเข้าถึงรายงานนี้" #: frappe/core/doctype/report/report.py:151 msgid "Must specify a Query to run" -msgstr "" +msgstr "ต้องระบุคำสั่ง Query เพื่อรัน" #. Label of the mute_sounds (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Mute Sounds" -msgstr "" +msgstr "ปิดเสียง" #: frappe/desk/page/setup_wizard/install_fixtures.py:45 msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" -msgstr "" +msgstr "บัญชีของฉัน" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 msgid "My Device" -msgstr "" +msgstr "อุปกรณ์ของฉัน" #: frappe/public/js/frappe/ui/apps_switcher.js:71 msgid "My Workspaces" -msgstr "" +msgstr "พื้นที่ทำงานของฉัน" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -15899,13 +16095,13 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." -msgstr "" +msgstr "หมายเหตุ: หากคุณเพิ่มสถานะหรือการเปลี่ยนผ่านในตาราง จะสะท้อนใน Workflow Builder แต่คุณจะต้องจัดตำแหน่งด้วยตนเอง นอกจากนี้ Workflow Builder ยังอยู่ใน BETA" #. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" -msgstr "" +msgstr "หมายเหตุ: กล่องนี้ถึงกำหนดค่าเสื่อม โปรดตั้งค่า LDAP ใหม่เพื่อใช้งานกับการตั้งค่าใหม่" #. Label of the fieldname (Data) field in DocType 'DocField' #. Label of the fieldname (Data) field in DocType 'Customize Form Field' @@ -15922,35 +16118,35 @@ msgstr "" #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" -msgstr "" +msgstr "ชื่อ" #: frappe/integrations/doctype/webhook/webhook.js:29 msgid "Name (Doc Name)" -msgstr "" +msgstr "ชื่อ (ชื่อเอกสาร)" #: frappe/desk/utils.py:22 msgid "Name already taken, please set a new name" -msgstr "" +msgstr "ชื่อนี้ถูกใช้แล้ว โปรดตั้งชื่อใหม่" #: frappe/model/naming.py:504 msgid "Name cannot contain special characters like {0}" -msgstr "" +msgstr "ชื่อไม่สามารถมีอักขระพิเศษเช่น {0}" #: frappe/custom/doctype/custom_field/custom_field.js:91 msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" -msgstr "" +msgstr "ชื่อประเภทเอกสาร (DocType) ที่คุณต้องการให้ฟิลด์นี้ลิงก์ไปยัง เช่น ลูกค้า" #: frappe/printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" -msgstr "" +msgstr "ชื่อรูปแบบการพิมพ์ใหม่" #: frappe/model/naming.py:499 msgid "Name of {0} cannot be {1}" -msgstr "" +msgstr "ชื่อของ {0} ไม่สามารถเป็น {1}" #: frappe/utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." -msgstr "" +msgstr "ชื่อและนามสกุลเพียงอย่างเดียวคาดเดาได้ง่าย" #. Label of the sb1 (Tab Break) field in DocType 'DocType' #. Label of the naming_section (Section Break) field in DocType 'Document @@ -15961,7 +16157,7 @@ msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "" +msgstr "การตั้งชื่อ" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -15975,17 +16171,17 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" -msgstr "" +msgstr "กฎการตั้งชื่อ" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "" +msgstr "ชุดการตั้งชื่อ" #: frappe/model/naming.py:260 msgid "Naming Series mandatory" -msgstr "" +msgstr "ชุดการตั้งชื่อเป็นสิ่งจำเป็น" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -15993,69 +16189,73 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "" +msgstr "แถบนำทาง" #. Name of a DocType #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Navbar Item" -msgstr "" +msgstr "รายการแถบนำทาง" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/core/workspace/build/build.json msgid "Navbar Settings" -msgstr "" +msgstr "การตั้งค่าแถบนำทาง" #. Label of the navbar_template (Link) field in DocType 'Website Settings' #. Label of the navbar_template_section (Section Break) field in DocType #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template" -msgstr "" +msgstr "แม่แบบแถบนำทาง" #. Label of the navbar_template_values (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar Template Values" -msgstr "" +msgstr "ค่าของแม่แบบแถบนำทาง" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" -msgstr "" +msgstr "เลื่อนรายการลง" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" -msgstr "" +msgstr "เลื่อนรายการขึ้น" #: frappe/public/js/frappe/ui/page.js:175 msgid "Navigate to main content" -msgstr "" +msgstr "ไปยังเนื้อหาหลัก" #. Label of the navigation_settings_section (Section Break) field in DocType #. 'User' #: frappe/core/doctype/user/user.json msgid "Navigation Settings" -msgstr "" +msgstr "การตั้งค่าการนำทาง" #: frappe/desk/doctype/workspace/workspace.py:319 msgid "Need Workspace Manager role to edit private workspace of other users" -msgstr "" +msgstr "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" +msgstr "ค่าติดลบ" + +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." msgstr "" #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." -msgstr "" +msgstr "ข้อผิดพลาดชุดซ้อน โปรดติดต่อผู้ดูแลระบบ" #. Name of a DocType #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Network Printer Settings" -msgstr "" +msgstr "การตั้งค่าเครื่องพิมพ์เครือข่าย" #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' @@ -16070,175 +16270,190 @@ msgstr "" #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 msgid "New" -msgstr "" +msgstr "ใหม่" #: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" -msgstr "" +msgstr "กิจกรรมใหม่" #: frappe/public/js/frappe/form/templates/address_list.html:3 #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 #: frappe/public/js/frappe/utils/address_and_contact.js:71 msgid "New Address" -msgstr "" +msgstr "ที่อยู่ใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:58 msgid "New Chart" -msgstr "" +msgstr "แผนภูมิใหม่" #: frappe/templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" -msgstr "" +msgstr "ความคิดเห็นใหม่ใน {0}: {1}" #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" -msgstr "" +msgstr "ผู้ติดต่อใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:70 msgid "New Custom Block" -msgstr "" +msgstr "บล็อกที่กำหนดเองใหม่" #: frappe/printing/page/print/print.js:295 #: frappe/printing/page/print/print.js:342 msgid "New Custom Print Format" -msgstr "" +msgstr "รูปแบบการพิมพ์ที่กำหนดเองใหม่" #. Label of the new_document_form (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "New Document Form" -msgstr "" +msgstr "ฟอร์มเอกสารใหม่" #: frappe/desk/doctype/notification_log/notification_log.py:154 msgid "New Document Shared {0}" -msgstr "" +msgstr "เอกสารใหม่ที่แชร์ {0}" #: frappe/public/js/frappe/form/footer/form_timeline.js:27 #: frappe/public/js/frappe/views/communication.js:23 msgid "New Email" -msgstr "" +msgstr "อีเมลใหม่" #: frappe/public/js/frappe/list/list_view_select.js:98 #: frappe/public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" -msgstr "" +msgstr "บัญชีอีเมลใหม่" #: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" -msgstr "" +msgstr "เหตุการณ์ใหม่" #: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" -msgstr "" +msgstr "โฟลเดอร์ใหม่" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" -msgstr "" +msgstr "กระดานคัมบังใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:62 msgid "New Links" -msgstr "" +msgstr "ลิงก์ใหม่" #: frappe/desk/doctype/notification_log/notification_log.py:152 msgid "New Mention on {0}" -msgstr "" +msgstr "การกล่าวถึงใหม่ใน {0}" #: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" -msgstr "" +msgstr "ข้อความใหม่จากหน้าติดต่อเว็บไซต์" #. Label of the new_name (Read Only) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json #: frappe/public/js/frappe/form/toolbar.js:218 #: frappe/public/js/frappe/model/model.js:713 msgid "New Name" -msgstr "" - -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" +msgstr "ชื่อใหม่" #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" -msgstr "" +msgstr "การแจ้งเตือนใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:64 msgid "New Number Card" -msgstr "" +msgstr "การ์ดตัวเลขใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:66 msgid "New Onboarding" -msgstr "" +msgstr "การเริ่มต้นใช้งานใหม่" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" -msgstr "" +msgstr "รหัสผ่านใหม่" #: frappe/printing/page/print/print.js:267 #: frappe/printing/page/print/print.js:321 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" -msgstr "" +msgstr "ชื่อรูปแบบการพิมพ์ใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:68 msgid "New Quick List" -msgstr "" +msgstr "รายการด่วนใหม่" #: frappe/public/js/frappe/views/reports/report_view.js:1384 msgid "New Report name" -msgstr "" +msgstr "ชื่อรายงานใหม่" #. Label of the new_role (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json msgid "New Role" -msgstr "" +msgstr "บทบาทใหม่" #: frappe/public/js/frappe/widgets/widget_dialog.js:60 msgid "New Shortcut" -msgstr "" +msgstr "ทางลัดใหม่" #. Label of the new_users (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "New Users (Last 30 days)" -msgstr "" +msgstr "ผู้ใช้ใหม่ (30 วันที่ผ่านมา)" #: frappe/core/doctype/version/version_view.html:14 #: frappe/core/doctype/version/version_view.html:76 msgid "New Value" -msgstr "" +msgstr "ค่าใหม่" #: frappe/workflow/page/workflow_builder/workflow_builder.js:61 msgid "New Workflow Name" -msgstr "" +msgstr "ชื่อเวิร์กโฟลว์ใหม่" #: frappe/public/js/frappe/views/workspace/workspace.js:390 msgid "New Workspace" +msgstr "พื้นที่ทำงานใหม่" + +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." msgstr "" -#: frappe/www/update-password.html:79 -msgid "New password cannot be same as old password" +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." msgstr "" +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 +msgid "New password cannot be same as old password" +msgstr "รหัสผ่านใหม่ต้องไม่เหมือนกับรหัสผ่านเก่า" + #: frappe/utils/change_log.py:389 msgid "New updates are available" -msgstr "" +msgstr "มีการอัปเดตใหม่" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." -msgstr "" +msgstr "ผู้ใช้ใหม่จะต้องลงทะเบียนด้วยตนเองโดยผู้จัดการระบบ" #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "New value to be set" -msgstr "" +msgstr "ค่าที่จะตั้งใหม่" #: frappe/public/js/frappe/form/quick_entry.js:179 #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,75 +16461,40 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" -msgstr "" +msgstr "{0} ใหม่" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" -msgstr "" +msgstr "สร้าง {0} ใหม่" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" -msgstr "" +msgstr "เพิ่ม {0} {1} ใหม่ในแดชบอร์ด {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" -msgstr "" +msgstr "สร้าง {0} {1} ใหม่" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 msgid "New {0}: {1}" -msgstr "" +msgstr "{0} ใหม่: {1}" #: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" -msgstr "" +msgstr "มีการเผยแพร่ {} ใหม่สำหรับแอปต่อไปนี้" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." -msgstr "" - -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" +msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน" #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" +msgstr "ผู้จัดการจดหมายข่าว" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 @@ -16324,100 +16504,100 @@ msgstr "" #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 #: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" -msgstr "" +msgstr "ถัดไป" #: frappe/public/js/frappe/ui/slides.js:359 msgctxt "Go to next slide" msgid "Next" -msgstr "" +msgstr "ถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:684 msgid "Next 14 Days" -msgstr "" +msgstr "14 วันถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:688 msgid "Next 30 Days" -msgstr "" +msgstr "30 วันถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" -msgstr "" +msgstr "6 เดือนถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" -msgstr "" +msgstr "7 วันถัดไป" #. Label of the next_action_email_template (Link) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Next Action Email Template" -msgstr "" +msgstr "แม่แบบอีเมลการดำเนินการถัดไป" #. Label of the next_actions_html (HTML) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "Next Actions HTML" -msgstr "" +msgstr "HTML การดำเนินการถัดไป" #. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Next Execution" -msgstr "" +msgstr "การดำเนินการถัดไป" #. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Form Tour" -msgstr "" +msgstr "ทัวร์ฟอร์มถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:696 msgid "Next Month" -msgstr "" +msgstr "เดือนถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:700 msgid "Next Quarter" -msgstr "" +msgstr "ไตรมาสถัดไป" #. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Next Schedule Date" -msgstr "" +msgstr "วันที่กำหนดการถัดไป" #: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 msgid "Next Scheduled Date" -msgstr "" +msgstr "วันที่กำหนดการถัดไป" #. Label of the next_state (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Next State" -msgstr "" +msgstr "สถานะถัดไป" #. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Step Condition" -msgstr "" +msgstr "เงื่อนไขขั้นตอนถัดไป" #. Label of the next_sync_token (Password) field in DocType 'Google Calendar' #. Label of the next_sync_token (Password) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Next Sync Token" -msgstr "" +msgstr "โทเค็นการซิงค์ถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:692 msgid "Next Week" -msgstr "" +msgstr "สัปดาห์ถัดไป" #: frappe/public/js/frappe/ui/filters/filter.js:708 msgid "Next Year" -msgstr "" +msgstr "ปีถัดไป" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Next actions" -msgstr "" +msgstr "การดำเนินการถัดไป" #. Label of the next_on_click (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next on Click" -msgstr "" +msgstr "ถัดไปเมื่อคลิก" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16655,154 +16831,154 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search.js:71 msgid "No documents found tagged with {0}" -msgstr "" +msgstr "ไม่พบเอกสารที่ติดแท็กด้วย {0}" #: frappe/public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." -msgstr "" +msgstr "ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ โปรดเพิ่มบัญชีใน ผู้ใช้ > กล่องจดหมายอีเมล" #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" -msgstr "" +msgstr "ไม่มีบันทึกที่ล้มเหลว" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" #: frappe/utils/file_manager.py:143 msgid "No file attached" -msgstr "" +msgstr "ไม่มีไฟล์แนบ" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 msgid "No filters found" -msgstr "" +msgstr "ไม่พบตัวกรอง" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "No filters selected" -msgstr "" +msgstr "ไม่ได้เลือกตัวกรอง" #: frappe/desk/form/utils.py:111 msgid "No further records" -msgstr "" +msgstr "ไม่มีบันทึกเพิ่มเติม" #: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" -msgstr "" +msgstr "ไม่พบบันทึกที่ตรงกัน ค้นหาใหม่" #: frappe/public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" -msgstr "" +msgstr "ไม่มีรายการเพิ่มเติมที่จะแสดง" #: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." -msgstr "" +msgstr "ไม่จำเป็นต้องใช้สัญลักษณ์ ตัวเลข หรืออักษรตัวพิมพ์ใหญ่" #: frappe/integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." -msgstr "" +msgstr "ไม่มีการซิงค์รายชื่อ Google ใหม่" #: frappe/public/js/frappe/ui/toolbar/navbar.html:46 msgid "No new notifications" -msgstr "" +msgstr "ไม่มีการแจ้งเตือนใหม่" #: frappe/printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" -msgstr "" +msgstr "จำนวนคอลัมน์" #. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "No of Requested SMS" -msgstr "" +msgstr "จำนวน SMS ที่ร้องขอ" #. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "No of Rows (Max 500)" -msgstr "" +msgstr "จำนวนแถว (สูงสุด 500)" #. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "No of Sent SMS" -msgstr "" +msgstr "จำนวน SMS ที่ส่ง" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" -msgstr "" +msgstr "ไม่มีสิทธิ์สำหรับ {0}" #: frappe/public/js/frappe/form/form.js:1142 msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" -msgstr "" +msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}" #: frappe/model/db_query.py:950 msgid "No permission to read {0}" -msgstr "" +msgstr "ไม่มีสิทธิ์ในการอ่าน {0}" #: frappe/share.py:220 msgid "No permission to {0} {1} {2}" -msgstr "" +msgstr "ไม่มีสิทธิ์ในการ {0} {1} {2}" #: frappe/core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" -msgstr "" +msgstr "ไม่มีบันทึกที่ถูกลบ" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" -msgstr "" +msgstr "ไม่มีบันทึกใน {0}" #: frappe/public/js/frappe/list/list_sidebar_stat.html:3 msgid "No records tagged." -msgstr "" +msgstr "ไม่มีบันทึกที่ติดแท็ก" #: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" -msgstr "" +msgstr "จะไม่มีการส่งออกบันทึก" #: frappe/public/js/frappe/form/grid.js:66 msgid "No rows" -msgstr "" +msgstr "ไม่มีแถว" #: frappe/email/doctype/notification/notification.py:129 msgid "No subject" -msgstr "" +msgstr "ไม่มีหัวข้อ" #: frappe/www/printview.py:472 msgid "No template found at path: {0}" -msgstr "" +msgstr "ไม่พบแม่แบบที่เส้นทาง: {0}" #: frappe/public/js/frappe/form/controls/multiselect_list.js:262 msgid "No values to show" -msgstr "" +msgstr "ไม่มีค่าที่จะแสดง" #: frappe/website/web_template/discussions/discussions.html:2 msgid "No {0}" -msgstr "" +msgstr "ไม่มี {0}" #: frappe/public/js/frappe/list/list_view_select.js:157 msgid "No {0} Found" -msgstr "" +msgstr "ไม่พบ {0}" #: frappe/public/js/frappe/web_form/web_form_list.js:233 msgid "No {0} found" -msgstr "" +msgstr "ไม่พบ {0}" #: frappe/public/js/frappe/list/list_view.js:494 msgid "No {0} found with matching filters. Clear filters to see all {0}." -msgstr "" +msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด" #: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" -msgstr "" +msgstr "ไม่มีจดหมาย {0}" #: frappe/public/js/form_builder/utils.js:117 #: frappe/public/js/frappe/form/grid_row.js:256 msgctxt "Title of the 'row number' column" msgid "No." -msgstr "" +msgstr "เลขที่" #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Nomatim" -msgstr "" +msgstr "โนมาทิม" #. Label of the non_negative (Check) field in DocType 'DocField' #. Label of the non_negative (Check) field in DocType 'Custom Field' @@ -16811,192 +16987,197 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Non Negative" -msgstr "" +msgstr "ไม่ติดลบ" #: frappe/desk/page/setup_wizard/install_fixtures.py:33 msgid "Non-Conforming" -msgstr "" +msgstr "ไม่สอดคล้อง" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "ไม่มี" #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" -msgstr "" +msgstr "ไม่มี: สิ้นสุดเวิร์กโฟลว์" #. Label of the normalized_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Copies" -msgstr "" +msgstr "สำเนาที่ทำให้เป็นมาตรฐาน" #. Label of the normalized_query (Data) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" -msgstr "" +msgstr "คำสั่งที่ทำให้เป็นมาตรฐาน" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" -msgstr "" +msgstr "ไม่อนุญาต" #: frappe/templates/includes/login/login.js:259 msgid "Not Allowed: Disabled User" -msgstr "" +msgstr "ไม่อนุญาต: ผู้ใช้ที่ถูกปิดใช้งาน" #: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" -msgstr "" +msgstr "ไม่ใช่บรรพบุรุษของ" #: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "" +msgstr "ไม่ใช่ลูกหลานของ" #: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" -msgstr "" +msgstr "ไม่เท่ากับ" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" -msgstr "" +msgstr "ไม่พบ" #. Label of the not_helpful (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Not Helpful" -msgstr "" +msgstr "ไม่เป็นประโยชน์" #: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" -msgstr "" +msgstr "ไม่อยู่ใน" #: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "" +msgstr "ไม่เหมือน" #: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" -msgstr "" +msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ" #. Label of the not_nullable (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Not Nullable" -msgstr "" +msgstr "ไม่สามารถเป็นค่าว่างได้" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" -msgstr "" +msgstr "ไม่ได้รับอนุญาต" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" -msgstr "" +msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}" #: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" -msgstr "" +msgstr "ไม่ได้เผยแพร่" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" -msgstr "" +msgstr "ไม่ได้บันทึก" #: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" -msgstr "" +msgstr "ไม่ได้เห็น" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" -msgstr "" +msgstr "ไม่ได้ส่ง" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" -msgstr "" +msgstr "ไม่ได้ตั้งค่า" #: frappe/public/js/frappe/ui/filters/filter.js:608 msgctxt "Field value is not set" msgid "Not Set" -msgstr "" +msgstr "ไม่ได้ตั้งค่า" #: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" -msgstr "" +msgstr "ไม่ใช่ค่า CSV (ไฟล์ CSV) ที่ถูกต้อง" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." -msgstr "" +msgstr "ไม่ใช่ภาพผู้ใช้ที่ถูกต้อง" #: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" -msgstr "" +msgstr "ไม่ใช่การกระทำเวิร์กโฟลว์ที่ถูกต้อง" #: frappe/templates/includes/login/login.js:255 msgid "Not a valid user" -msgstr "" +msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง" #: frappe/workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" -msgstr "" +msgstr "ไม่ใช้งาน" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" -msgstr "" +msgstr "ไม่อนุญาตสำหรับ {0}: {1}" #: frappe/email/doctype/notification/notification.py:595 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" -msgstr "" +msgstr "ไม่อนุญาตให้แนบเอกสาร {0} โปรดเปิดใช้งานอนุญาตการพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์" #: frappe/core/doctype/doctype/doctype.py:335 msgid "Not allowed to create custom Virtual DocType." -msgstr "" +msgstr "ไม่อนุญาตให้สร้าง Virtual DocType ที่กำหนดเอง" #: frappe/www/printview.py:165 msgid "Not allowed to print cancelled documents" -msgstr "" +msgstr "ไม่อนุญาตให้พิมพ์เอกสารที่ถูกยกเลิก" #: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" -msgstr "" +msgstr "ไม่อนุญาตให้พิมพ์เอกสารร่าง" #: frappe/permissions.py:213 msgid "Not allowed via controller permission check" -msgstr "" +msgstr "ไม่อนุญาตผ่านการตรวจสอบสิทธิ์ของตัวควบคุม" #: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 msgid "Not found" -msgstr "" +msgstr "ไม่พบ" #: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" -msgstr "" +msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา" #: frappe/core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." -msgstr "" +msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา! ตั้งค่าใน site_config.json หรือสร้าง DocType 'Custom'" #: frappe/core/doctype/system_settings/system_settings.py:215 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" -msgstr "" +msgstr "ไม่ได้รับอนุญาต" #: frappe/public/js/frappe/list/list_view.js:50 msgid "Not permitted to view {0}" -msgstr "" +msgstr "ไม่ได้รับอนุญาตให้ดู {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17004,60 +17185,60 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" -msgstr "" +msgstr "หมายเหตุ" #. Name of a DocType #: frappe/desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" -msgstr "" +msgstr "หมายเหตุที่เห็นโดย" #: frappe/www/confirm_workflow_action.html:8 msgid "Note:" -msgstr "" +msgstr "หมายเหตุ:" #: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." -msgstr "" +msgstr "หมายเหตุ: การเปลี่ยนชื่อหน้าจะทำให้ URL ก่อนหน้านี้ไปยังหน้านี้เสีย" #: frappe/core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." -msgstr "" +msgstr "หมายเหตุ: เขตเวลา Etc มีสัญลักษณ์กลับด้าน" #. Description of the 'sb0' (Section Break) field in DocType 'Website #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "" +msgstr "หมายเหตุ: เพื่อผลลัพธ์ที่ดีที่สุด ภาพต้องมีขนาดเท่ากันและความกว้างต้องมากกว่าความสูง" #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "" +msgstr "หมายเหตุ: จะอนุญาตให้มีหลายเซสชันในกรณีของอุปกรณ์มือถือ" #: frappe/core/doctype/user/user.js:393 msgid "Note: This will be shared with user." -msgstr "" +msgstr "หมายเหตุ: สิ่งนี้จะถูกแชร์กับผู้ใช้" #: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." -msgstr "" +msgstr "หมายเหตุ: คำขอลบบัญชีของคุณจะเสร็จสิ้นภายใน {0} ชั่วโมง" #: frappe/core/doctype/data_export/exporter.py:183 msgid "Notes:" -msgstr "" +msgstr "บันทึก:" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "Nothing New" -msgstr "" +msgstr "ไม่มีอะไรใหม่" #: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" -msgstr "" +msgstr "ไม่มีอะไรเหลือให้ทำซ้ำ" #: frappe/public/js/frappe/form/undo_manager.js:33 msgid "Nothing left to undo" -msgstr "" +msgstr "ไม่มีอะไรเหลือให้ยกเลิก" #: frappe/public/js/frappe/list/base_list.js:372 #: frappe/public/js/frappe/views/reports/query_report.js:105 @@ -17065,11 +17246,11 @@ msgstr "" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" -msgstr "" +msgstr "ไม่มีอะไรที่จะแสดง" #: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" -msgstr "" +msgstr "ไม่มีอะไรให้อัปเดต" #. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace @@ -17079,17 +17260,17 @@ msgstr "" #: frappe/core/doctype/communication/mixins.py:142 #: frappe/email/doctype/notification/notification.json msgid "Notification" -msgstr "" +msgstr "การแจ้งเตือน" #. Name of a DocType #: frappe/desk/doctype/notification_log/notification_log.json msgid "Notification Log" -msgstr "" +msgstr "บันทึกการแจ้งเตือน" #. Name of a DocType #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" -msgstr "" +msgstr "ผู้รับการแจ้งเตือน" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17097,109 +17278,109 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/ui/notifications/notifications.js:37 msgid "Notification Settings" -msgstr "" +msgstr "การตั้งค่าการแจ้งเตือน" #. Name of a DocType #: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json msgid "Notification Subscribed Document" -msgstr "" +msgstr "เอกสารที่สมัครรับการแจ้งเตือน" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 msgid "Notification sent to" -msgstr "" +msgstr "การแจ้งเตือนถูกส่งไปยัง" #: frappe/email/doctype/notification/notification.py:500 msgid "Notification: customer {0} has no Mobile number set" -msgstr "" +msgstr "การแจ้งเตือน: ลูกค้า {0} ไม่มีการตั้งหมายเลขมือถือ" #: frappe/email/doctype/notification/notification.py:486 msgid "Notification: document {0} has no {1} number set (field: {2})" -msgstr "" +msgstr "การแจ้งเตือน: เอกสาร {0} ไม่มีการตั้งหมายเลข {1} (ฟิลด์: {2})" #: frappe/email/doctype/notification/notification.py:495 msgid "Notification: user {0} has no Mobile number set" -msgstr "" +msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ" #. Label of the notifications (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json #: frappe/public/js/frappe/ui/notifications/notifications.js:50 #: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" -msgstr "" +msgstr "การแจ้งเตือน" #: frappe/public/js/frappe/ui/notifications/notifications.js:299 msgid "Notifications Disabled" -msgstr "" +msgstr "ปิดใช้งานการแจ้งเตือน" #. Description of the 'Default Outgoing' (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "" +msgstr "การแจ้งเตือนและอีเมลจำนวนมากจะถูกส่งจากเซิร์ฟเวอร์ขาออกนี้" #. Label of the notify_on_every_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify Users On Every Login" -msgstr "" +msgstr "แจ้งผู้ใช้ทุกครั้งที่เข้าสู่ระบบ" #. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "" +msgstr "แจ้งผ่านอีเมล" #. Label of the notify_by_email (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json msgid "Notify by email" -msgstr "" +msgstr "แจ้งผ่านอีเมล" #. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "" +msgstr "แจ้งหากไม่มีการตอบกลับ" #. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "" +msgstr "แจ้งหากไม่มีการตอบกลับ (ในนาที)" #. Label of the notify_on_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" -msgstr "" +msgstr "แจ้งผู้ใช้ด้วยป๊อปอัปเมื่อพวกเขาเข้าสู่ระบบ" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" -msgstr "" +msgstr "ตอนนี้" #. Label of the phone (Data) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Number" -msgstr "" +msgstr "หมายเลข" #. Name of a DocType #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" -msgstr "" +msgstr "การ์ดตัวเลข" #. Name of a DocType #: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" -msgstr "" +msgstr "ลิงก์การ์ดตัวเลข" #. Label of the number_card_name (Link) field in DocType 'Workspace Number #. Card' #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" -msgstr "" +msgstr "ชื่อการ์ดตัวเลข" #. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' #. Label of the number_cards (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/widgets/widget_dialog.js:658 msgid "Number Cards" -msgstr "" +msgstr "การ์ดตัวเลข" #. Label of the number_format (Select) field in DocType 'Language' #. Label of the number_format (Select) field in DocType 'System Settings' @@ -17208,59 +17389,59 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/currency/currency.json msgid "Number Format" -msgstr "" +msgstr "รูปแบบตัวเลข" #. Label of the backup_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of Backups" -msgstr "" +msgstr "จำนวนการสำรองข้อมูล" #. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Number of Groups" -msgstr "" +msgstr "จำนวนกลุ่ม" #. Label of the number_of_queries (Int) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" -msgstr "" +msgstr "จำนวนคำสั่ง Query" #: frappe/core/doctype/doctype/doctype.py:442 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." -msgstr "" +msgstr "จำนวนฟิลด์ไฟล์แนบมากกว่า {} ขีดจำกัดอัปเดตเป็น {}" #: frappe/core/doctype/system_settings/system_settings.py:170 msgid "Number of backups must be greater than zero." -msgstr "" +msgstr "จำนวนการสำรองข้อมูลต้องมากกว่าศูนย์" #. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "" +msgstr "จำนวนคอลัมน์สำหรับฟิลด์ในกริด (คอลัมน์ทั้งหมดในกริดควรน้อยกว่า 11)" #. Description of the 'Columns' (Int) field in DocType 'DocField' #. Description of the 'Columns' (Int) field in DocType 'Custom Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "" +msgstr "จำนวนคอลัมน์สำหรับฟิลด์ในมุมมองรายการหรือกริด (คอลัมน์ทั้งหมดควรน้อยกว่า 11)" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" -msgstr "" +msgstr "จำนวนวันหลังจากนั้นลิงก์ Web View ของเอกสารที่แชร์ในอีเมลจะหมดอายุ" #. Label of the cache_keys (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Number of keys" -msgstr "" +msgstr "จำนวนคีย์" #. Label of the onsite_backups (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Number of onsite backups" -msgstr "" +msgstr "จำนวนการสำรองข้อมูลในสถานที่" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17489,118 +17679,118 @@ msgstr "" #: frappe/public/js/frappe/widgets/onboarding_widget.js:264 msgid "Onboarding complete" -msgstr "" +msgstr "การเริ่มต้นใช้งานเสร็จสมบูรณ์" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "" +msgstr "เมื่อส่งแล้ว เอกสารที่สามารถส่งได้จะไม่สามารถเปลี่ยนแปลงได้ สามารถยกเลิกและแก้ไขได้เท่านั้น" #: frappe/core/page/permission_manager/permission_manager_help.html:35 msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." -msgstr "" +msgstr "เมื่อคุณตั้งค่านี้แล้ว ผู้ใช้จะสามารถเข้าถึงเอกสาร (เช่น บล็อกโพสต์) ที่มีลิงก์อยู่เท่านั้น (เช่น Blogger)" #: frappe/www/complete_signup.html:7 msgid "One Last Step" -msgstr "" +msgstr "ขั้นตอนสุดท้าย" #: frappe/twofactor.py:278 msgid "One Time Password (OTP) Registration Code from {}" -msgstr "" +msgstr "รหัสลงทะเบียนรหัสผ่านครั้งเดียว (OTP) จาก {}" #: frappe/core/doctype/data_export/exporter.py:331 msgid "One of" -msgstr "" +msgstr "หนึ่งใน" #: frappe/client.py:213 msgid "Only 200 inserts allowed in one request" -msgstr "" +msgstr "อนุญาตให้แทรกได้เพียง 200 รายการต่อคำขอหนึ่งครั้ง" #: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" -msgstr "" +msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบคิวอีเมลได้" #: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" -msgstr "" +msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถแก้ไขได้" #: frappe/core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." -msgstr "" +msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถบันทึกรายงานมาตรฐานได้ โปรดเปลี่ยนชื่อและบันทึก" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" -msgstr "" +msgstr "อนุญาตให้เฉพาะผู้ดูแลระบบใช้เครื่องบันทึก" #. Label of the allow_edit (Link) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Only Allow Edit For" -msgstr "" +msgstr "อนุญาตให้แก้ไขเฉพาะสำหรับ" #: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" -msgstr "" +msgstr "ตัวเลือกที่อนุญาตสำหรับฟิลด์ข้อมูลคือ:" #. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Only Send Records Updated in Last X Hours" -msgstr "" +msgstr "ส่งเฉพาะบันทึกที่อัปเดตในช่วง X ชั่วโมงที่ผ่านมา" #: frappe/desk/doctype/workspace/workspace.js:32 msgid "Only Workspace Manager can edit public workspaces" -msgstr "" +msgstr "เฉพาะผู้จัดการพื้นที่ทำงานเท่านั้นที่สามารถแก้ไขพื้นที่ทำงานสาธารณะได้" #: frappe/modules/utils.py:65 msgid "Only allowed to export customizations in developer mode" -msgstr "" +msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" -msgstr "" +msgstr "สามารถทิ้งเอกสารร่างได้เท่านั้น" #. Label of the only_for (Link) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" -msgstr "" +msgstr "เฉพาะสำหรับ" #: frappe/core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." -msgstr "" +msgstr "จำเป็นเฉพาะฟิลด์ที่จำเป็นสำหรับบันทึกใหม่ คุณสามารถลบคอลัมน์ที่ไม่จำเป็นได้หากต้องการ" #: frappe/contacts/doctype/contact/contact.py:131 #: frappe/contacts/doctype/contact/contact.py:158 msgid "Only one {0} can be set as primary." -msgstr "" +msgstr "สามารถตั้งค่า {0} ได้เพียงหนึ่งรายการเป็นหลัก" #: frappe/desk/reportview.py:357 msgid "Only reports of type Report Builder can be deleted" -msgstr "" +msgstr "สามารถลบรายงานประเภท Report Builder ได้เท่านั้น" #: frappe/desk/reportview.py:328 msgid "Only reports of type Report Builder can be edited" -msgstr "" +msgstr "สามารถแก้ไขรายงานประเภท Report Builder ได้เท่านั้น" #: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Only standard DocTypes are allowed to be customized from Customize Form." -msgstr "" +msgstr "อนุญาตให้ปรับแต่งเฉพาะ DocTypes มาตรฐานจากฟอร์มที่กำหนดเอง" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." -msgstr "" +msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบ DocType มาตรฐานได้" #: frappe/desk/form/assign_to.py:198 msgid "Only the assignee can complete this to-do." -msgstr "" +msgstr "เฉพาะผู้รับมอบหมายเท่านั้นที่สามารถทำสิ่งที่ต้องทำนี้ให้เสร็จสิ้น" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." -msgstr "" +msgstr "อนุญาตเฉพาะรายงานที่ส่งทางอีเมล {0} ต่อผู้ใช้หนึ่งราย" #: frappe/templates/includes/login/login.js:291 msgid "Oops! Something went wrong." -msgstr "" +msgstr "อุ๊ปส์! มีบางอย่างผิดพลาด" #. Option for the 'Status' (Select) field in DocType 'Contact' #. Option for the 'Status' (Select) field in DocType 'Communication' @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,45 +17917,45 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" -msgstr "" +msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}" #: frappe/core/doctype/file/file.js:34 #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 msgid "Optimize" -msgstr "" +msgstr "เพิ่มประสิทธิภาพ" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." -msgstr "" +msgstr "กำลังเพิ่มประสิทธิภาพภาพ..." #: frappe/custom/doctype/custom_field/custom_field.js:100 msgid "Option 1" -msgstr "" +msgstr "ตัวเลือก 1" #: frappe/custom/doctype/custom_field/custom_field.js:102 msgid "Option 2" -msgstr "" +msgstr "ตัวเลือก 2" #: frappe/custom/doctype/custom_field/custom_field.js:104 msgid "Option 3" -msgstr "" +msgstr "ตัวเลือก 3" #: frappe/core/doctype/doctype/doctype.py:1638 msgid "Option {0} for field {1} is not a child table" -msgstr "" +msgstr "ตัวเลือก {0} สำหรับฟิลด์ {1} ไม่ใช่ตารางลูก" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "" +msgstr "ไม่บังคับ: ส่งเสมอไปยัง ID เหล่านี้ แต่ละที่อยู่อีเมลในแถวใหม่" #. Description of the 'Condition' (Code) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Optional: The alert will be sent if this expression is true" -msgstr "" +msgstr "ไม่บังคับ: การแจ้งเตือนจะถูกส่งหากนิพจน์นี้เป็นจริง" #. Label of the options (Small Text) field in DocType 'DocField' #. Label of the options (Data) field in DocType 'Report Column' @@ -17783,69 +17973,73 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" -msgstr "" +msgstr "ตัวเลือก" #: frappe/core/doctype/doctype/doctype.py:1366 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" -msgstr "" +msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link' ต้องชี้ไปยังฟิลด์ลิงก์อื่นที่มีตัวเลือกเป็น 'DocType'" #. Label of the options_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Options Help" -msgstr "" +msgstr "ตัวเลือกช่วยเหลือ" #: frappe/core/doctype/doctype/doctype.py:1660 msgid "Options for Rating field can range from 3 to 10" -msgstr "" +msgstr "ตัวเลือกสำหรับฟิลด์การให้คะแนนสามารถอยู่ในช่วง 3 ถึง 10" #: frappe/custom/doctype/custom_field/custom_field.js:96 msgid "Options for select. Each option on a new line." -msgstr "" +msgstr "ตัวเลือกสำหรับการเลือก แต่ละตัวเลือกในบรรทัดใหม่" #: frappe/core/doctype/doctype/doctype.py:1383 msgid "Options for {0} must be set before setting the default value." -msgstr "" +msgstr "ต้องตั้งค่าตัวเลือกสำหรับ {0} ก่อนตั้งค่าค่าเริ่มต้น" #: frappe/public/js/form_builder/store.js:182 msgid "Options is required for field {0} of type {1}" -msgstr "" +msgstr "ต้องการตัวเลือกสำหรับฟิลด์ {0} ประเภท {1}" #: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" -msgstr "" +msgstr "ไม่ได้ตั้งค่าตัวเลือกสำหรับฟิลด์ลิงก์ {0}" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Orange" -msgstr "" +msgstr "สีส้ม" #. Label of the order (Code) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" +msgstr "คำสั่งซื้อ" + +#: frappe/database/query.py:767 +msgid "Order By must be a string" msgstr "" #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History" -msgstr "" +msgstr "ประวัติองค์กร" #. Label of the company_history_heading (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History Heading" -msgstr "" +msgstr "หัวข้อประวัติองค์กร" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" -msgstr "" +msgstr "การวางแนว" #: frappe/core/doctype/version/version_view.html:13 #: frappe/core/doctype/version/version_view.html:75 msgid "Original Value" -msgstr "" +msgstr "มูลค่าต้นฉบับ" #. Option for the 'Address Type' (Select) field in DocType 'Address' #. Option for the 'Type' (Select) field in DocType 'Communication' @@ -17857,41 +18051,41 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/page/setup_wizard/install_fixtures.py:30 msgid "Other" -msgstr "" +msgstr "อื่นๆ" #. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing" -msgstr "" +msgstr "ขาออก" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" -msgstr "" +msgstr "การตั้งค่าขาออก (SMTP)" #. Label of the outgoing_emails_column (Column Break) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Outgoing Emails (Last 7 days)" -msgstr "" +msgstr "อีเมลขาออก (7 วันที่ผ่านมา)" #. Label of the smtp_server (Data) field in DocType 'Email Account' #. Label of the smtp_server (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" -msgstr "" +msgstr "เซิร์ฟเวอร์ขาออก" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Settings" -msgstr "" +msgstr "การตั้งค่าขาออก" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" -msgstr "" +msgstr "บัญชีอีเมลขาออกไม่ถูกต้อง" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -17905,67 +18099,69 @@ msgstr "" #: frappe/desk/doctype/system_console/system_console.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Output" -msgstr "" +msgstr "ผลลัพธ์" #: frappe/public/js/frappe/form/templates/form_dashboard.html:5 msgid "Overview" -msgstr "" +msgstr "ภาพรวม" #: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" -msgstr "" +msgstr "เจ้าของ" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" -msgstr "" +msgstr "แพตช์" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" #: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 msgid "PDF Generation in Progress" -msgstr "" +msgstr "กำลังสร้าง PDF" #. Label of the pdf_generator (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "PDF Generator" -msgstr "" +msgstr "ตัวสร้าง PDF" #. Label of the pdf_page_height (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Height (in mm)" -msgstr "" +msgstr "ความสูงหน้าของ PDF (เป็นมม.)" #. Label of the pdf_page_size (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Size" -msgstr "" +msgstr "ขนาดหน้าของ PDF" #. Label of the pdf_page_width (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Width (in mm)" -msgstr "" +msgstr "ความกว้างหน้าของ PDF (เป็นมม.)" #. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Settings" -msgstr "" +msgstr "การตั้งค่า PDF" #: frappe/utils/print_format.py:289 msgid "PDF generation failed" -msgstr "" +msgstr "การสร้าง PDF ล้มเหลว" #: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" -msgstr "" +msgstr "การสร้าง PDF ล้มเหลวเนื่องจากลิงก์ภาพเสีย" #: frappe/printing/page/print/print.js:616 msgid "PDF generation may not work as expected." -msgstr "" +msgstr "การสร้าง PDF อาจไม่ทำงานตามที่คาดไว้" #: frappe/printing/page/print/print.js:534 msgid "PDF printing via \"Raw Print\" is not supported." @@ -17999,24 +18195,24 @@ msgstr "" #: frappe/core/doctype/package_release/package_release.json #: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" -msgstr "" +msgstr "แพ็คเกจ" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/package_import/package_import.json #: frappe/core/workspace/build/build.json msgid "Package Import" -msgstr "" +msgstr "นำเข้าแพ็คเกจ" #. Label of the package_name (Data) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Package Name" -msgstr "" +msgstr "ชื่อแพ็คเกจ" #. Name of a DocType #: frappe/core/doctype/package_release/package_release.json msgid "Package Release" -msgstr "" +msgstr "การปล่อยแพ็คเกจ" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -18048,89 +18244,89 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Page" -msgstr "" +msgstr "หน้า" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Page Break" -msgstr "" +msgstr "ตัวแบ่งหน้า" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Page Builder" -msgstr "" +msgstr "ตัวสร้างหน้า" #. Label of the page_blocks (Table) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Page Building Blocks" -msgstr "" +msgstr "บล็อกการสร้างหน้า" #. Label of the page_html (Section Break) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "" +msgstr "HTML ของหน้า" #: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" -msgstr "" +msgstr "ความสูงของหน้า (เป็นมม.)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 msgid "Page Margins" -msgstr "" +msgstr "ขอบหน้ากระดาษ" #. Label of the page_name (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page Name" -msgstr "" +msgstr "ชื่อหน้า" #. Label of the page_number (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" -msgstr "" +msgstr "หมายเลขหน้า" #. Label of the page_route (Small Text) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Page Route" -msgstr "" +msgstr "เส้นทางหน้า" #. Label of the view_link_in_email (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Page Settings" -msgstr "" +msgstr "การตั้งค่าหน้า" #: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" -msgstr "" +msgstr "ทางลัดหน้า" #: frappe/public/js/frappe/list/bulk_operations.js:66 msgid "Page Size" -msgstr "" +msgstr "ขนาดหน้า" #. Label of the page_title (Data) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Page Title" -msgstr "" +msgstr "ชื่อเรื่องหน้า" #: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" -msgstr "" +msgstr "ความกว้างของหน้า (เป็นมม.)" #: frappe/www/qrcode.py:35 msgid "Page has expired!" -msgstr "" +msgstr "หน้าหมดอายุแล้ว!" #: frappe/printing/doctype/print_settings/print_settings.py:70 #: frappe/public/js/frappe/list/bulk_operations.js:106 msgid "Page height and width cannot be zero" -msgstr "" +msgstr "ความสูงและความกว้างของหน้าไม่สามารถเป็นศูนย์ได้" #: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" -msgstr "" +msgstr "ไม่พบหน้า" #. Description of a DocType #: frappe/website/doctype/web_page/web_page.json @@ -18142,123 +18338,123 @@ msgstr "" #: frappe/public/js/frappe/web_form/web_form.js:264 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" -msgstr "" +msgstr "หน้า {0} จาก {1}" #. Label of the parameter (Data) field in DocType 'SMS Parameter' #: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "Parameter" -msgstr "" +msgstr "พารามิเตอร์" #: frappe/public/js/frappe/model/model.js:142 #: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" -msgstr "" +msgstr "ผู้ปกครอง" #. Label of the parent_doctype (Link) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" -msgstr "" +msgstr "DocType ผู้ปกครอง" #. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' #. Label of the parent_document_type (Link) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Parent Document Type" -msgstr "" +msgstr "ประเภทเอกสารผู้ปกครอง" #: frappe/desk/doctype/number_card/number_card.py:65 msgid "Parent Document Type is required to create a number card" -msgstr "" +msgstr "ต้องการประเภทเอกสารผู้ปกครองเพื่อสร้างการ์ดตัวเลข" #. Label of the parent_element_selector (Data) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Element Selector" -msgstr "" +msgstr "ตัวเลือกองค์ประกอบผู้ปกครอง" #. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Field" -msgstr "" +msgstr "ฟิลด์ผู้ปกครอง" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype.py:933 msgid "Parent Field (Tree)" -msgstr "" +msgstr "ฟิลด์ผู้ปกครอง (ต้นไม้)" #: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" -msgstr "" +msgstr "ฟิลด์ผู้ปกครองต้องเป็นชื่อฟิลด์ที่ถูกต้อง" #. Label of the parent_label (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Parent Label" -msgstr "" +msgstr "ป้ายผู้ปกครอง" #: frappe/core/doctype/doctype/doctype.py:1197 msgid "Parent Missing" -msgstr "" +msgstr "ผู้ปกครองหายไป" #. Label of the parent_page (Link) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Parent Page" -msgstr "" +msgstr "หน้าผู้ปกครอง" #: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" -msgstr "" +msgstr "ตารางผู้ปกครอง" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 msgid "Parent document type is required to create a dashboard chart" -msgstr "" +msgstr "ต้องการประเภทเอกสารผู้ปกครองเพื่อสร้างแผนภูมิแดชบอร์ด" #: frappe/core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." +msgstr "ผู้ปกครองคือชื่อของเอกสารที่ข้อมูลจะถูกเพิ่มเข้าไป" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "" - -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" -msgstr "" +msgstr "ไม่ได้ระบุฟิลด์ผู้ปกครองใน {0}: {1}" #: frappe/client.py:467 msgid "Parenttype, Parent and Parentfield are required to insert a child record" -msgstr "" +msgstr "ต้องการประเภทผู้ปกครอง ผู้ปกครอง และฟิลด์ผู้ปกครองเพื่อแทรกบันทึกลูก" #. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Partial" -msgstr "" +msgstr "บางส่วน" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Partial Success" -msgstr "" +msgstr "สำเร็จบางส่วน" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Partially Sent" -msgstr "" +msgstr "ส่งบางส่วน" #. Label of the participants (Section Break) field in DocType 'Event' #: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json msgid "Participants" -msgstr "" +msgstr "ผู้เข้าร่วม" #. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Pass" -msgstr "" +msgstr "ผ่าน" #. Option for the 'Status' (Select) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Passive" -msgstr "" +msgstr "ไม่กระตือรือร้น" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the password_settings (Section Break) field in DocType 'System @@ -18279,93 +18475,89 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/www/login.html:22 msgid "Password" -msgstr "" +msgstr "รหัสผ่าน" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" -msgstr "" +msgstr "ส่งอีเมลรหัสผ่านแล้ว" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" -msgstr "" +msgstr "รีเซ็ตรหัสผ่าน" #. Label of the password_reset_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Password Reset Link Generation Limit" -msgstr "" +msgstr "ขีดจำกัดการสร้างลิงก์รีเซ็ตรหัสผ่าน" #: frappe/public/js/frappe/form/grid_row.js:880 msgid "Password cannot be filtered" -msgstr "" +msgstr "ไม่สามารถกรองรหัสผ่านได้" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 msgid "Password changed successfully." -msgstr "" +msgstr "เปลี่ยนรหัสผ่านสำเร็จแล้ว" #. Label of the password (Password) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Password for Base DN" -msgstr "" +msgstr "รหัสผ่านสำหรับ Base DN" #: frappe/email/doctype/email_account/email_account.py:189 msgid "Password is required or select Awaiting Password" -msgstr "" +msgstr "ต้องการรหัสผ่านหรือเลือกกำลังรอรหัสผ่าน" #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" -msgstr "" +msgstr "ไม่มีรหัสผ่านในบัญชีอีเมล" #: frappe/utils/password.py:47 msgid "Password not found for {0} {1} {2}" -msgstr "" +msgstr "ไม่พบรหัสผ่านสำหรับ {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" -msgstr "" +msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" -msgstr "" +msgstr "ตั้งค่ารหัสผ่านแล้ว" #: frappe/auth.py:258 msgid "Password size exceeded the maximum allowed size" -msgstr "" +msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." -msgstr "" +msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" -msgstr "" +msgstr "รหัสผ่านไม่ตรงกัน" #: frappe/core/doctype/user/user.js:205 msgid "Passwords do not match!" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" +msgstr "รหัสผ่านไม่ตรงกัน!" #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" -msgstr "" +msgstr "วาง" #. Label of the patch (Int) field in DocType 'Package Release' #. Label of the patch (Code) field in DocType 'Patch Log' #: frappe/core/doctype/package_release/package_release.json #: frappe/core/doctype/patch_log/patch_log.json msgid "Patch" -msgstr "" +msgstr "แพตช์" #. Name of a DocType #: frappe/core/doctype/patch_log/patch_log.json msgid "Patch Log" -msgstr "" +msgstr "บันทึกแพตช์" #: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" -msgstr "" +msgstr "ไม่พบประเภทแพตช์ {} ใน patches.txt" #. Label of the path (Data) field in DocType 'API Request Log' #. Label of the path (Small Text) field in DocType 'Package Release' @@ -18379,32 +18571,32 @@ msgstr "" #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:35 msgid "Path" -msgstr "" +msgstr "เส้นทาง" #. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to CA Certs File" -msgstr "" +msgstr "เส้นทางไปยังไฟล์ CA Certs" #. Label of the local_server_certificate_file (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to Server Certificate" -msgstr "" +msgstr "เส้นทางไปยังใบรับรองเซิร์ฟเวอร์" #. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to private Key File" -msgstr "" +msgstr "เส้นทางไปยังไฟล์คีย์ส่วนตัว" #: frappe/website/path_resolver.py:208 msgid "Path {0} it not a valid path" -msgstr "" +msgstr "เส้นทาง {0} ไม่ใช่เส้นทางที่ถูกต้อง" #. Label of the payload_count (Int) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Payload Count" -msgstr "" +msgstr "จำนวนเพย์โหลด" #. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json @@ -18478,43 +18670,43 @@ msgstr "" #: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" -msgstr "" +msgstr "ยกเลิก {0} อย่างถาวร?" #: frappe/public/js/frappe/form/form.js:1074 msgid "Permanently Discard {0}?" -msgstr "" +msgstr "ทิ้ง {0} อย่างถาวร?" #: frappe/public/js/frappe/form/form.js:861 msgid "Permanently Submit {0}?" -msgstr "" +msgstr "ส่ง {0} อย่างถาวร?" #: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" -msgstr "" +msgstr "ลบ {0} อย่างถาวร?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" -msgstr "" +msgstr "ข้อผิดพลาดในการอนุญาต" #. Name of a DocType #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Inspector" -msgstr "" +msgstr "ตัวตรวจสอบการอนุญาต" #. Label of the permlevel (Int) field in DocType 'Custom Field' #: frappe/core/page/permission_manager/permission_manager.js:463 #: frappe/custom/doctype/custom_field/custom_field.json msgid "Permission Level" -msgstr "" +msgstr "ระดับการอนุญาต" #: frappe/core/page/permission_manager/permission_manager_help.html:22 msgid "Permission Levels" -msgstr "" +msgstr "ระดับการอนุญาต" #. Name of a DocType #: frappe/core/doctype/permission_log/permission_log.json msgid "Permission Log" -msgstr "" +msgstr "บันทึกการอนุญาต" #. Label of a shortcut in the Users Workspace #: frappe/core/workspace/users/users.json @@ -18524,18 +18716,18 @@ msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Permission Query" -msgstr "" +msgstr "คำสั่งการอนุญาต" #. Label of the permission_rules (Section Break) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json msgid "Permission Rules" -msgstr "" +msgstr "กฎการอนุญาต" #. Label of the permission_type (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Type" -msgstr "" +msgstr "ประเภทการอนุญาต" #. Label of the section_break_4 (Section Break) field in DocType 'Custom #. DocPerm' @@ -18558,65 +18750,65 @@ msgstr "" #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" -msgstr "" +msgstr "การอนุญาต" #: frappe/core/doctype/doctype/doctype.py:1834 #: frappe/core/doctype/doctype/doctype.py:1844 msgid "Permissions Error" -msgstr "" +msgstr "ข้อผิดพลาดในการอนุญาต" #: frappe/core/page/permission_manager/permission_manager_help.html:10 msgid "Permissions are automatically applied to Standard Reports and searches." -msgstr "" +msgstr "การอนุญาตถูกนำไปใช้กับรายงานมาตรฐานและการค้นหาโดยอัตโนมัติ" #: frappe/core/page/permission_manager/permission_manager_help.html:5 msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." -msgstr "" +msgstr "การอนุญาตถูกตั้งค่าในบทบาทและประเภทเอกสาร (เรียกว่า DocTypes) โดยการตั้งค่าการเข้าถึง เช่น อ่าน, เขียน, สร้าง, ลบ, ส่ง, ยกเลิก, แก้ไข, รายงาน, นำเข้า, ส่งออก, พิมพ์, อีเมล และตั้งค่าการอนุญาตผู้ใช้" #: frappe/core/page/permission_manager/permission_manager_help.html:26 msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." -msgstr "" +msgstr "การอนุญาตในระดับที่สูงขึ้นคือการอนุญาตระดับฟิลด์ ฟิลด์ทั้งหมดมีการตั้งค่าระดับการอนุญาต และกฎที่กำหนดไว้ในระดับการอนุญาตนั้นจะถูกนำไปใช้กับฟิลด์ ซึ่งมีประโยชน์ในกรณีที่คุณต้องการซ่อนหรือทำให้ฟิลด์บางฟิลด์เป็นแบบอ่านอย่างเดียวสำหรับบทบาทบางบทบาท" #: frappe/core/page/permission_manager/permission_manager_help.html:24 msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." -msgstr "" +msgstr "การอนุญาตในระดับ 0 คือการอนุญาตระดับเอกสาร กล่าวคือ เป็นการอนุญาตหลักสำหรับการเข้าถึงเอกสาร" #: frappe/core/page/permission_manager/permission_manager_help.html:6 msgid "Permissions get applied on Users based on what Roles they are assigned." -msgstr "" +msgstr "การอนุญาตถูกนำไปใช้กับผู้ใช้ตามบทบาทที่ได้รับมอบหมาย" #. Name of a report #. Label of a Link in the Users Workspace #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json #: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" -msgstr "" +msgstr "เอกสารที่อนุญาตสำหรับผู้ใช้" #. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow #. Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" -msgstr "" +msgstr "บทบาทที่อนุญาต" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Personal" -msgstr "" +msgstr "ส่วนตัว" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" -msgstr "" +msgstr "คำขอลบข้อมูลส่วนตัว" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Personal Data Deletion Step" -msgstr "" +msgstr "ขั้นตอนการลบข้อมูลส่วนตัว" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "" +msgstr "คำขอดาวน์โหลดข้อมูลส่วนตัว" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' @@ -18637,39 +18829,39 @@ msgstr "" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" -msgstr "" +msgstr "โทรศัพท์" #. Label of the phone_no (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Phone No." -msgstr "" +msgstr "หมายเลขโทรศัพท์" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." -msgstr "" +msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" -msgstr "" +msgstr "เลือกคอลัมน์" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Pie" -msgstr "" +msgstr "พาย" #. Label of the pincode (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Pincode" -msgstr "" +msgstr "รหัสไปรษณีย์" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" -msgstr "" +msgstr "สีชมพู" #. Label of the placeholder (Data) field in DocType 'DocField' #. Label of the placeholder (Data) field in DocType 'Custom Field' @@ -18678,436 +18870,437 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Placeholder" -msgstr "" +msgstr "ตัวแทนข้อความ" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Plain Text" -msgstr "" +msgstr "ข้อความธรรมดา" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Plant" -msgstr "" +msgstr "โรงงาน" #: frappe/email/doctype/email_account/email_account.py:544 msgid "Please Authorize OAuth for Email Account {0}" -msgstr "" +msgstr "โปรดยืนยัน OAuth สำหรับบัญชีอีเมล {0}" #: frappe/email/oauth.py:29 msgid "Please Authorize OAuth for Email Account {}" -msgstr "" +msgstr "โปรดยืนยัน OAuth สำหรับบัญชีอีเมล {}" #: frappe/website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." -msgstr "" +msgstr "โปรดทำสำเนาธีมเว็บไซต์นี้เพื่อปรับแต่ง" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "Please Install the ldap3 library via pip to use ldap functionality." -msgstr "" +msgstr "โปรดติดตั้งไลบรารี ldap3 ผ่าน pip เพื่อใช้ฟังก์ชัน ldap" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" -msgstr "" +msgstr "โปรดตั้งค่าแผนภูมิ" #: frappe/core/doctype/sms_settings/sms_settings.py:84 msgid "Please Update SMS Settings" -msgstr "" +msgstr "โปรดอัปเดตการตั้งค่า SMS" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 msgid "Please add a subject to your email" -msgstr "" +msgstr "โปรดเพิ่มหัวข้อในอีเมลของคุณ" #: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." -msgstr "" +msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" -msgstr "" +msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ" #: frappe/public/js/frappe/form/controls/select.js:101 msgid "Please attach a file first." -msgstr "" +msgstr "โปรดแนบไฟล์ก่อน" #: frappe/printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." -msgstr "" +msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับส่วนท้าย" #: frappe/printing/doctype/letter_head/letter_head.py:64 msgid "Please attach an image file to set HTML for Letter Head." -msgstr "" +msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับหัวจดหมาย" #: frappe/core/doctype/package_import/package_import.py:39 msgid "Please attach the package" -msgstr "" +msgstr "โปรดแนบแพ็คเกจ" #: frappe/integrations/doctype/connected_app/connected_app.js:19 msgid "Please check OpenID Configuration URL" -msgstr "" +msgstr "โปรดตรวจสอบ URL การกำหนดค่า OpenID" #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" -msgstr "" +msgstr "โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}" #: frappe/model/base_document.py:951 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" -msgstr "" +msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน" #: frappe/email/smtp.py:134 msgid "Please check your email login credentials." -msgstr "" +msgstr "โปรดตรวจสอบข้อมูลการเข้าสู่ระบบอีเมลของคุณ" #: frappe/twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." -msgstr "" +msgstr "โปรดตรวจสอบที่อยู่อีเมลที่ลงทะเบียนของคุณสำหรับคำแนะนำเกี่ยวกับวิธีดำเนินการต่อ อย่าปิดหน้าต่างนี้เนื่องจากคุณจะต้องกลับมาที่นี่" #: frappe/desk/doctype/workspace/workspace.js:23 msgid "Please click Edit on the Workspace for best results" -msgstr "" +msgstr "โปรดคลิกแก้ไขในพื้นที่ทำงานเพื่อผลลัพธ์ที่ดีที่สุด" #: frappe/core/doctype/data_import/data_import.js:158 msgid "Please click on 'Export Errored Rows', fix the errors and import again." -msgstr "" +msgstr "โปรดคลิกที่ 'ส่งออกแถวที่มีข้อผิดพลาด' แก้ไขข้อผิดพลาดและนำเข้าอีกครั้ง" #: frappe/twofactor.py:286 msgid "Please click on the following link and follow the instructions on the page. {0}" -msgstr "" +msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้และทำตามคำแนะนำในหน้า {0}" #: frappe/templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" -msgstr "" +msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้เพื่อกำหนดรหัสผ่านใหม่ของคุณ" #: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." -msgstr "" +msgstr "โปรดยืนยันการกระทำของคุณเพื่อ {0} เอกสารนี้" #: frappe/printing/page/print/print.js:618 msgid "Please contact your system manager to install correct version." -msgstr "" +msgstr "โปรดติดต่อผู้จัดการระบบของคุณเพื่อติดตั้งเวอร์ชันที่ถูกต้อง" #: frappe/desk/doctype/number_card/number_card.js:44 msgid "Please create Card first" -msgstr "" +msgstr "โปรดสร้างการ์ดก่อน" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 msgid "Please create chart first" -msgstr "" +msgstr "โปรดสร้างแผนภูมิก่อน" #: frappe/desk/form/meta.py:190 msgid "Please delete the field from {0} or add the required doctype." -msgstr "" +msgstr "โปรดลบฟิลด์จาก {0} หรือเพิ่มประเภทเอกสารที่ต้องการ" #: frappe/core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." -msgstr "" +msgstr "โปรดอย่าเปลี่ยนหัวข้อแม่แบบ" #: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" -msgstr "" +msgstr "โปรดทำสำเนานี้เพื่อทำการเปลี่ยนแปลง" #: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." -msgstr "" +msgstr "โปรดเปิดใช้งานคีย์เข้าสู่ระบบโซเชียลอย่างน้อยหนึ่งคีย์หรือ LDAP หรือเข้าสู่ระบบด้วยลิงก์อีเมลก่อนปิดใช้งานการเข้าสู่ระบบด้วยชื่อผู้ใช้/รหัสผ่าน" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" -msgstr "" +msgstr "โปรดเปิดใช้งานป๊อปอัป" #: frappe/public/js/frappe/microtemplate.js:162 #: frappe/public/js/frappe/microtemplate.js:177 msgid "Please enable pop-ups in your browser" -msgstr "" +msgstr "โปรดเปิดใช้งานป๊อปอัปในเบราว์เซอร์ของคุณ" #: frappe/integrations/google_oauth.py:55 msgid "Please enable {} before continuing." -msgstr "" +msgstr "โปรดเปิดใช้งาน {} ก่อนดำเนินการต่อ" #: frappe/utils/oauth.py:191 msgid "Please ensure that your profile has an email address" -msgstr "" +msgstr "โปรดตรวจสอบว่าโปรไฟล์ของคุณมีที่อยู่อีเมล" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" -msgstr "" +msgstr "โปรดป้อน URL โทเค็นการเข้าถึง" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" -msgstr "" +msgstr "โปรดป้อน URL การอนุญาต" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" -msgstr "" +msgstr "โปรดป้อน URL พื้นฐาน" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" -msgstr "" +msgstr "โปรดป้อน Client ID ก่อนเปิดใช้งานการเข้าสู่ระบบโซเชียล" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" -msgstr "" +msgstr "โปรดป้อน Client Secret ก่อนเปิดใช้งานการเข้าสู่ระบบโซเชียล" #: frappe/integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" -msgstr "" +msgstr "โปรดป้อน URL การกำหนดค่า OpenID" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" -msgstr "" +msgstr "โปรดป้อน URL การเปลี่ยนเส้นทาง" #: frappe/templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." -msgstr "" +msgstr "โปรดป้อนที่อยู่อีเมลที่ถูกต้อง" #: frappe/templates/includes/contact.js:15 msgid "Please enter both your email and message so that we can get back to you. Thanks!" -msgstr "" +msgstr "โปรดป้อนทั้งอีเมลและข้อความของคุณเพื่อให้เราสามารถติดต่อกลับได้ ขอบคุณ!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" -msgstr "" +msgstr "โปรดป้อนรหัสผ่าน" #: frappe/public/js/frappe/desk.js:217 msgctxt "Email Account" msgid "Please enter the password for: {0}" -msgstr "" +msgstr "โปรดป้อนรหัสผ่านสำหรับ: {0}" #: frappe/core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" -msgstr "" +msgstr "โปรดป้อนหมายเลขมือถือที่ถูกต้อง" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." -msgstr "" +msgstr "โปรดป้อนรหัสผ่านใหม่ของคุณ" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." -msgstr "" +msgstr "โปรดป้อนรหัสผ่านเก่าของคุณ" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 msgid "Please find attached {0}: {1}" -msgstr "" +msgstr "โปรดดูไฟล์แนบ {0}: {1}" #: frappe/templates/includes/comments/comments.py:31 msgid "Please login to post a comment." -msgstr "" +msgstr "โปรดเข้าสู่ระบบเพื่อโพสต์ความคิดเห็น" #: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." -msgstr "" +msgstr "โปรดตรวจสอบว่าเอกสารการสื่อสารอ้างอิงไม่ได้เชื่อมโยงกันเป็นวงกลม" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." -msgstr "" +msgstr "โปรดรีเฟรชเพื่อรับเอกสารล่าสุด" #: frappe/printing/page/print/print.js:535 msgid "Please remove the printer mapping in Printer Settings and try again." -msgstr "" +msgstr "โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์และลองอีกครั้ง" #: frappe/public/js/frappe/form/form.js:358 msgid "Please save before attaching." -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" +msgstr "โปรดบันทึกก่อนแนบ" #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" -msgstr "" +msgstr "โปรดบันทึกเอกสารก่อนการมอบหมาย" #: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" -msgstr "" +msgstr "โปรดบันทึกเอกสารก่อนลบการมอบหมาย" #: frappe/public/js/frappe/views/reports/report_view.js:1709 msgid "Please save the report first" -msgstr "" +msgstr "โปรดบันทึกรายงานก่อน" #: frappe/website/doctype/web_template/web_template.js:22 msgid "Please save to edit the template." -msgstr "" +msgstr "โปรดบันทึกเพื่อแก้ไขแม่แบบ" #: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" -msgstr "" +msgstr "โปรดเลือก DocType ก่อน" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" -msgstr "" +msgstr "โปรดเลือกประเภทเอนทิตีก่อน" #: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" -msgstr "" +msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" -msgstr "" +msgstr "โปรดเลือกฟิลด์ X และ Y" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." -msgstr "" +msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 msgid "Please select a file first." -msgstr "" +msgstr "โปรดเลือกไฟล์ก่อน" #: frappe/utils/file_manager.py:50 msgid "Please select a file or url" -msgstr "" +msgstr "โปรดเลือกไฟล์หรือ URL" #: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" -msgstr "" +msgstr "โปรดเลือกไฟล์ CSV ที่ถูกต้องพร้อมข้อมูล" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" -msgstr "" +msgstr "โปรดเลือกตัวกรองวันที่ที่ถูกต้อง" #: frappe/core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" -msgstr "" +msgstr "โปรดเลือกประเภทเอกสารที่เกี่ยวข้อง" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" -msgstr "" +msgstr "โปรดเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อจัดเรียง/จัดกลุ่ม" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" -msgstr "" +msgstr "โปรดเลือกคำนำหน้าก่อน" #: frappe/core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." -msgstr "" +msgstr "โปรดเลือกประเภทเอกสาร" #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Please select the LDAP Directory being used" -msgstr "" +msgstr "โปรดเลือกไดเรกทอรี LDAP ที่ใช้งานอยู่" #: frappe/website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" -msgstr "" +msgstr "โปรดเลือก {0}" #: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" -msgstr "" +msgstr "โปรดตั้งค่าที่อยู่อีเมล" #: frappe/printing/page/print/print.js:549 msgid "Please set a printer mapping for this print format in the Printer Settings" -msgstr "" +msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" -msgstr "" +msgstr "โปรดตั้งค่าตัวกรอง" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." -msgstr "" +msgstr "โปรดตั้งค่าค่าตัวกรองในตารางตัวกรองรายงาน" #: frappe/model/naming.py:572 msgid "Please set the document name" -msgstr "" +msgstr "โปรดตั้งชื่อเอกสาร" #: frappe/desk/doctype/dashboard/dashboard.py:120 msgid "Please set the following documents in this Dashboard as standard first." -msgstr "" +msgstr "โปรดตั้งค่าเอกสารต่อไปนี้ในแดชบอร์ดนี้เป็นมาตรฐานก่อน" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." -msgstr "" +msgstr "โปรดตั้งค่าซีรีส์ที่จะใช้" #: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" -msgstr "" +msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่าเป็นวิธีการยืนยันตัวตนผ่านการตั้งค่า SMS" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Please setup a message first" -msgstr "" +msgstr "โปรดตั้งค่าข้อความก่อน" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" -msgstr "" +msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากการตั้งค่า > บัญชีอีเมล" #: frappe/email/doctype/email_account/email_account.py:432 msgid "Please setup default outgoing Email Account from Tools > Email Account" -msgstr "" +msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากเครื่องมือ > บัญชีอีเมล" #: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" -msgstr "" +msgstr "โปรดระบุ" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" -msgstr "" +msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}" #: frappe/email/doctype/notification/notification.py:154 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" -msgstr "" +msgstr "โปรดระบุอย่างน้อย 10 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา" #: frappe/email/doctype/notification/notification.py:151 msgid "Please specify the minutes offset" -msgstr "" +msgstr "โปรดระบุการชดเชยนาที" #: frappe/email/doctype/notification/notification.py:145 msgid "Please specify which date field must be checked" -msgstr "" +msgstr "โปรดระบุฟิลด์วันที่ที่ต้องตรวจสอบ" #: frappe/email/doctype/notification/notification.py:149 msgid "Please specify which datetime field must be checked" -msgstr "" +msgstr "โปรดระบุฟิลด์วันที่และเวลาที่ต้องตรวจสอบ" #: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which value field must be checked" -msgstr "" +msgstr "โปรดระบุฟิลด์ค่าที่ต้องตรวจสอบ" #: frappe/public/js/frappe/request.js:187 #: frappe/public/js/frappe/views/translation_manager.js:102 msgid "Please try again" -msgstr "" +msgstr "โปรดลองอีกครั้ง" #: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." -msgstr "" +msgstr "โปรดอัปเดต {} ก่อนดำเนินการต่อ" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 msgid "Please use a valid LDAP search filter" -msgstr "" +msgstr "โปรดใช้ตัวกรองการค้นหา LDAP ที่ถูกต้อง" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Polling" -msgstr "" +msgstr "การสำรวจความคิดเห็น" #. Label of the popover_element (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover Element" -msgstr "" +msgstr "องค์ประกอบป๊อปโอเวอร์" #. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover or Modal Description" -msgstr "" +msgstr "คำอธิบายป๊อปโอเวอร์หรือโมดอล" #. Label of the smtp_port (Data) field in DocType 'Email Account' #. Label of the incoming_port (Data) field in DocType 'Email Account' @@ -19118,33 +19311,33 @@ msgstr "" #: frappe/email/doctype/email_domain/email_domain.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "" +msgstr "พอร์ต" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Portal Menu" -msgstr "" +msgstr "เมนูพอร์ทัล" #. Name of a DocType #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Portal Menu Item" -msgstr "" +msgstr "รายการเมนูพอร์ทัล" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/portal_settings/portal_settings.json #: frappe/website/workspace/website/website.json msgid "Portal Settings" -msgstr "" +msgstr "การตั้งค่าพอร์ทัล" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" -msgstr "" +msgstr "แนวตั้ง" #. Label of the position (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Position" -msgstr "" +msgstr "ตำแหน่ง" #: frappe/templates/discussions/comment_box.html:29 #: frappe/templates/discussions/reply_card.html:15 @@ -19152,33 +19345,37 @@ msgstr "" #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Post" -msgstr "" +msgstr "โพสต์" #: frappe/templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." -msgstr "" +msgstr "โพสต์ไว้ที่นี่ ที่ปรึกษาของเราจะช่วยคุณ" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Postal" -msgstr "" +msgstr "ไปรษณีย์" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Postal Code" -msgstr "" +msgstr "รหัสไปรษณีย์" #. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' #: frappe/desk/doctype/changelog_feed/changelog_feed.json msgid "Posting Timestamp" -msgstr "" +msgstr "การประทับเวลาที่โพสต์" #: frappe/website/doctype/blog_post/blog_post.py:264 msgid "Posts by {0}" -msgstr "" +msgstr "โพสต์โดย {0}" #: frappe/website/doctype/blog_post/blog_post.py:256 msgid "Posts filed under {0}" +msgstr "โพสต์ที่จัดเก็บภายใต้ {0}" + +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" msgstr "" #. Label of the precision (Select) field in DocType 'DocField' @@ -19190,29 +19387,29 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Precision" -msgstr "" +msgstr "ความแม่นยำ" #: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" -msgstr "" +msgstr "ความแม่นยำควรอยู่ระหว่าง 1 ถึง 6" #: frappe/utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." -msgstr "" +msgstr "การแทนที่ที่คาดเดาได้ เช่น '@' แทน 'a' ไม่ได้ช่วยมากนัก" #: frappe/desk/page/setup_wizard/install_fixtures.py:34 msgid "Prefer not to say" -msgstr "" +msgstr "ไม่ต้องการระบุ" #. Label of the is_primary_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Billing Address" -msgstr "" +msgstr "ที่อยู่สำหรับการเรียกเก็บเงินที่ต้องการ" #. Label of the is_shipping_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Shipping Address" -msgstr "" +msgstr "ที่อยู่สำหรับการจัดส่งที่ต้องการ" #. Label of the prefix (Data) field in DocType 'Document Naming Rule' #. Label of the prefix (Autocomplete) field in DocType 'Document Naming @@ -19220,7 +19417,7 @@ msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Prefix" -msgstr "" +msgstr "คำนำหน้า" #. Name of a DocType #. Label of the prepared_report (Check) field in DocType 'Report' @@ -19228,37 +19425,37 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 msgid "Prepared Report" -msgstr "" +msgstr "รายงานที่เตรียมไว้" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json msgid "Prepared Report Analytics" -msgstr "" +msgstr "การวิเคราะห์รายงานที่เตรียมไว้" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" -msgstr "" +msgstr "ผู้ใช้รายงานที่เตรียมไว้" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" -msgstr "" +msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" -msgstr "" +msgstr "กำลังเตรียมรายงาน" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" -msgstr "" +msgstr "เพิ่มแม่แบบไปยังข้อความอีเมล" #: frappe/public/js/frappe/ui/keyboard.js:139 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "" +msgstr "กดปุ่ม Alt เพื่อเรียกใช้ทางลัดเพิ่มเติมในเมนูและแถบด้านข้าง" #: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" -msgstr "" +msgstr "กด Enter เพื่อบันทึก" #. Label of the section_import_preview (Section Break) field in DocType 'Data #. Import' @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19278,46 +19473,46 @@ msgstr "" #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 #: frappe/public/js/frappe/ui/capture.js:236 msgid "Preview" -msgstr "" +msgstr "ดูตัวอย่าง" #. Label of the preview_html (HTML) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Preview HTML" -msgstr "" +msgstr "ดูตัวอย่าง HTML" #. Label of the preview_image (Attach Image) field in DocType 'Blog Category' #. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Preview Image" -msgstr "" +msgstr "ดูตัวอย่างภาพ" #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" -msgstr "" +msgstr "ดูตัวอย่างข้อความ" #: frappe/public/js/form_builder/form_builder.bundle.js:83 msgid "Preview Mode" -msgstr "" +msgstr "โหมดดูตัวอย่าง" #. Label of the series_preview (Text) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" -msgstr "" +msgstr "ดูตัวอย่างชื่อที่สร้างขึ้น" #: frappe/public/js/frappe/views/render_preview.js:19 msgid "Preview on {0}" -msgstr "" +msgstr "ดูตัวอย่างบน {0}" #: frappe/public/js/print_format_builder/Preview.vue:103 msgid "Preview type" -msgstr "" +msgstr "ประเภทดูตัวอย่าง" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" -msgstr "" +msgstr "ดูตัวอย่าง:" #: frappe/public/js/frappe/form/form_tour.js:15 #: frappe/public/js/frappe/web_form/web_form.js:95 @@ -19325,56 +19520,56 @@ msgstr "" #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" -msgstr "" +msgstr "ก่อนหน้า" #: frappe/public/js/frappe/ui/slides.js:351 msgctxt "Go to previous slide" msgid "Previous" -msgstr "" +msgstr "ก่อนหน้า" #. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Previous Hash" -msgstr "" +msgstr "แฮชก่อนหน้า" #: frappe/public/js/frappe/form/form.js:2214 msgid "Previous Submission" -msgstr "" +msgstr "การส่งก่อนหน้า" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Primary" -msgstr "" +msgstr "หลัก" #: frappe/public/js/frappe/form/templates/address_list.html:27 msgid "Primary Address" -msgstr "" +msgstr "ที่อยู่หลัก" #. Label of the primary_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Primary Color" -msgstr "" +msgstr "สีหลัก" #: frappe/public/js/frappe/form/templates/contact_list.html:23 msgid "Primary Contact" -msgstr "" +msgstr "ผู้ติดต่อหลัก" #: frappe/public/js/frappe/form/templates/contact_list.html:69 msgid "Primary Email" -msgstr "" +msgstr "อีเมลหลัก" #: frappe/public/js/frappe/form/templates/contact_list.html:49 msgid "Primary Mobile" -msgstr "" +msgstr "มือถือหลัก" #: frappe/public/js/frappe/form/templates/contact_list.html:41 msgid "Primary Phone" -msgstr "" +msgstr "โทรศัพท์หลัก" #: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 #: frappe/database/sqlite/schema.py:141 msgid "Primary key of doctype {0} can not be changed as there are existing values." -msgstr "" +msgstr "คีย์หลักของประเภทเอกสาร {0} ไม่สามารถเปลี่ยนแปลงได้เนื่องจากมีค่าที่มีอยู่แล้ว" #. Label of the print (Check) field in DocType 'Custom DocPerm' #. Label of the print (Check) field in DocType 'DocPerm' @@ -19386,23 +19581,23 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" -msgstr "" +msgstr "พิมพ์" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" -msgstr "" +msgstr "พิมพ์" #: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" -msgstr "" +msgstr "พิมพ์เอกสาร" #. Label of the print_format (Link) field in DocType 'Auto Repeat' #. Label of a Link in the Build Workspace @@ -19418,7 +19613,7 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" -msgstr "" +msgstr "รูปแบบการพิมพ์" #. Label of a Link in the Tools Workspace #. Label of the print_format_builder (Check) field in DocType 'Print Format' @@ -19428,7 +19623,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:67 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" -msgstr "" +msgstr "ตัวสร้างรูปแบบการพิมพ์" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -19439,30 +19634,39 @@ msgstr "" #. Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Builder Beta" -msgstr "" +msgstr "ตัวสร้างรูปแบบการพิมพ์เบต้า" #: frappe/utils/pdf.py:63 msgid "Print Format Error" -msgstr "" +msgstr "ข้อผิดพลาดรูปแบบการพิมพ์" #. Name of a DocType #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Print Format Field Template" +msgstr "แม่แบบฟิลด์รูปแบบการพิมพ์" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" msgstr "" #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" -msgstr "" +msgstr "ความช่วยเหลือรูปแบบการพิมพ์" #. Label of the print_format_type (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Type" +msgstr "ประเภทรูปแบบการพิมพ์" + +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" msgstr "" #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" -msgstr "" +msgstr "รูปแบบการพิมพ์ {0} ถูกปิดใช้งาน" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -19470,7 +19674,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/printing/doctype/print_heading/print_heading.json msgid "Print Heading" -msgstr "" +msgstr "หัวข้อการพิมพ์" #. Label of the print_hide (Check) field in DocType 'DocField' #. Label of the print_hide (Check) field in DocType 'Custom Field' @@ -19479,7 +19683,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide" -msgstr "" +msgstr "ซ่อนการพิมพ์" #. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' #. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' @@ -19489,21 +19693,21 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "" +msgstr "ซ่อนการพิมพ์หากไม่มีค่า" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" -msgstr "" +msgstr "ภาษาการพิมพ์" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" -msgstr "" +msgstr "ส่งการพิมพ์ไปยังเครื่องพิมพ์แล้ว!" #. Label of the server_printer (Section Break) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Server" -msgstr "" +msgstr "เซิร์ฟเวอร์การพิมพ์" #. Label of a Link in the Tools Workspace #. Label of the column_break_25 (Section Break) field in DocType 'Notification' @@ -19513,10 +19717,10 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" -msgstr "" +msgstr "การตั้งค่าการพิมพ์" #. Label of the print_style_section (Section Break) field in DocType 'Print #. Settings' @@ -19525,17 +19729,17 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.json msgid "Print Style" -msgstr "" +msgstr "สไตล์การพิมพ์" #. Label of the print_style_name (Data) field in DocType 'Print Style' #: frappe/printing/doctype/print_style/print_style.json msgid "Print Style Name" -msgstr "" +msgstr "ชื่อสไตล์การพิมพ์" #. Label of the print_style_preview (HTML) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print Style Preview" -msgstr "" +msgstr "ดูตัวอย่างสไตล์การพิมพ์" #. Label of the print_width (Data) field in DocType 'DocField' #. Label of the print_width (Data) field in DocType 'Custom Field' @@ -19544,53 +19748,53 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width" -msgstr "" +msgstr "ความกว้างการพิมพ์" #. Description of the 'Print Width' (Data) field in DocType 'Customize Form #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width of the field, if the field is a column in a table" -msgstr "" +msgstr "ความกว้างการพิมพ์ของฟิลด์ หากฟิลด์เป็นคอลัมน์ในตาราง" #: frappe/public/js/frappe/form/form.js:170 msgid "Print document" -msgstr "" +msgstr "พิมพ์เอกสาร" #. Label of the with_letterhead (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "" +msgstr "พิมพ์พร้อมหัวจดหมาย" #: frappe/printing/page/print/print.js:830 msgid "Printer" -msgstr "" +msgstr "เครื่องพิมพ์" #: frappe/printing/page/print/print.js:807 msgid "Printer Mapping" -msgstr "" +msgstr "การแมปเครื่องพิมพ์" #. Label of the printer_name (Select) field in DocType 'Network Printer #. Settings' #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Printer Name" -msgstr "" +msgstr "ชื่อเครื่องพิมพ์" #: frappe/printing/page/print/print.js:799 msgid "Printer Settings" -msgstr "" +msgstr "การตั้งค่าเครื่องพิมพ์" #: frappe/printing/page/print/print.js:548 msgid "Printer mapping not set." -msgstr "" +msgstr "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Printing" -msgstr "" +msgstr "กำลังพิมพ์" #: frappe/utils/print_format.py:291 msgid "Printing failed" -msgstr "" +msgstr "การพิมพ์ล้มเหลว" #. Label of the priority (Int) field in DocType 'Assignment Rule' #. Label of the priority (Int) field in DocType 'Document Naming Rule' @@ -19604,7 +19808,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:211 #: frappe/website/doctype/web_page/web_page.json msgid "Priority" -msgstr "" +msgstr "ลำดับความสำคัญ" #. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' @@ -19615,52 +19819,56 @@ msgstr "" #: frappe/desk/doctype/note/note_list.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" -msgstr "" +msgstr "ส่วนตัว" #. Label of the private_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Private Files (MB)" +msgstr "ไฟล์ส่วนตัว (MB)" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" msgstr "" #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "" +msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: {{ reference_doctype }} {{ reference_name }} เพื่อส่งการอ้างอิงเอกสาร" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" -msgstr "" +msgstr "ดำเนินการต่อ" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" -msgstr "" +msgstr "ดำเนินการต่ออยู่ดี" #: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" -msgstr "" +msgstr "กำลังประมวลผล" #: frappe/email/doctype/email_queue/email_queue_list.js:52 msgid "Processing..." -msgstr "" +msgstr "กำลังประมวลผล..." #: frappe/desk/page/setup_wizard/install_fixtures.py:51 msgid "Prof" -msgstr "" +msgstr "ศาสตราจารย์" #. Group in User's connections #: frappe/core/doctype/user/user.json msgid "Profile" -msgstr "" +msgstr "โปรไฟล์" #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" -msgstr "" +msgstr "ความคืบหน้า" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" -msgstr "" +msgstr "โครงการ" #. Label of the property (Data) field in DocType 'Property Setter' #: frappe/core/doctype/version/version_view.html:12 @@ -19668,7 +19876,7 @@ msgstr "" #: frappe/core/doctype/version/version_view.html:74 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" -msgstr "" +msgstr "คุณสมบัติ" #. Label of the property_depends_on_section (Section Break) field in DocType #. 'Customize Form Field' @@ -19677,22 +19885,22 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Property Depends On" -msgstr "" +msgstr "คุณสมบัติขึ้นอยู่กับ" #. Name of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter" -msgstr "" +msgstr "ตัวตั้งค่าคุณสมบัติ" #. Description of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter overrides a standard DocType or Field property" -msgstr "" +msgstr "ตัวตั้งค่าคุณสมบัติแทนที่คุณสมบัติมาตรฐานของ DocType หรือฟิลด์" #. Label of the property_type (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Type" -msgstr "" +msgstr "ประเภททรัพย์สิน" #. Label of the protect_attached_files (Check) field in DocType 'DocType' #. Label of the protect_attached_files (Check) field in DocType 'Customize @@ -19700,24 +19908,24 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Protect Attached Files" -msgstr "" +msgstr "ป้องกันไฟล์ที่แนบมา" #: frappe/core/doctype/file/file.py:501 msgid "Protected File" -msgstr "" +msgstr "ไฟล์ที่ป้องกัน" #. Description of the 'Allowed File Extensions' (Small Text) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" -msgstr "" +msgstr "ระบุรายการนามสกุลไฟล์ที่อนุญาตให้อัปโหลดไฟล์ได้ แต่ละบรรทัดควรมีประเภทไฟล์ที่อนุญาตหนึ่งประเภท หากไม่ได้ตั้งค่า จะอนุญาตให้อัปโหลดไฟล์ทุกนามสกุล ตัวอย่าง:
CSV
JPG
PNG" #. Label of the provider (Data) field in DocType 'User Social Login' #. Label of the provider (Select) field in DocType 'Geolocation Settings' #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Provider" -msgstr "" +msgstr "ผู้ให้บริการ" #. Label of the provider_name (Data) field in DocType 'Connected App' #. Label of the provider_name (Data) field in DocType 'Social Login Key' @@ -19726,7 +19934,7 @@ msgstr "" #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Provider Name" -msgstr "" +msgstr "ชื่อผู้ให้บริการ" #. Option for the 'Event Type' (Select) field in DocType 'Event' #. Label of the public (Check) field in DocType 'Note' @@ -19737,12 +19945,16 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:78 #: frappe/public/js/frappe/views/workspace/workspace.js:440 msgid "Public" -msgstr "" +msgstr "สาธารณะ" #. Label of the public_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Public Files (MB)" +msgstr "ไฟล์สาธารณะ (MB)" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' @@ -19751,16 +19963,9 @@ msgstr "" #: frappe/website/doctype/blog_post/blog_post.js:36 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" -msgstr "" - -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" +msgstr "เผยแพร่" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19780,83 +19984,83 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" -msgstr "" +msgstr "เผยแพร่แล้ว" #. Label of the published_on (Date) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Published On" -msgstr "" +msgstr "เผยแพร่เมื่อ" #: frappe/website/doctype/blog_post/templates/blog_post.html:59 msgid "Published on" -msgstr "" +msgstr "เผยแพร่เมื่อ" #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" -msgstr "" +msgstr "วันที่เผยแพร่" #: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" -msgstr "" +msgstr "ดึงอีเมล" #. Label of the pull_from_google_calendar (Check) field in DocType 'Google #. Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Pull from Google Calendar" -msgstr "" +msgstr "ดึงจาก Google Calendar" #. Label of the pull_from_google_contacts (Check) field in DocType 'Google #. Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Pull from Google Contacts" -msgstr "" +msgstr "ดึงจาก Google Contacts" #. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Pulled from Google Calendar" -msgstr "" +msgstr "ดึงจาก Google Calendar แล้ว" #. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Pulled from Google Contacts" -msgstr "" +msgstr "ดึงจาก Google Contacts แล้ว" #: frappe/email/doctype/email_account/email_account.js:209 msgid "Pulling emails..." -msgstr "" +msgstr "กำลังดึงอีเมล..." #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Manager" -msgstr "" +msgstr "ผู้จัดการการซื้อ" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "" +msgstr "ผู้จัดการมาสเตอร์การซื้อ" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Purchase User" -msgstr "" +msgstr "ผู้ใช้การซื้อ" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Purple" -msgstr "" +msgstr "สีม่วง" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "" +msgstr "การตั้งค่าการแจ้งเตือนแบบพุช" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json @@ -19867,32 +20071,32 @@ msgstr "" #. Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Push to Google Calendar" -msgstr "" +msgstr "ส่งไปยัง Google Calendar" #. Label of the push_to_google_contacts (Check) field in DocType 'Google #. Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Push to Google Contacts" -msgstr "" +msgstr "ส่งไปยัง Google Contacts" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 msgid "Put on Hold" -msgstr "" +msgstr "พักการใช้งาน" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Python" -msgstr "" +msgstr "ไพธอน" #: frappe/www/qrcode.html:3 msgid "QR Code" -msgstr "" +msgstr "คิวอาร์โค้ด" #: frappe/www/qrcode.html:6 msgid "QR Code for Login Verification" -msgstr "" +msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19906,155 +20110,146 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:401 msgid "Quarterly" -msgstr "" +msgstr "รายไตรมาส" #. Label of the query (Data) field in DocType 'Recorder Query' #. Label of the query (Code) field in DocType 'Report' #: frappe/core/doctype/recorder_query/recorder_query.json #: frappe/core/doctype/report/report.json msgid "Query" -msgstr "" +msgstr "คำสั่งค้นหา" #. Label of the section_break_6 (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Query / Script" -msgstr "" +msgstr "คำสั่งค้นหา / สคริปต์" #. Label of the query_options (Small Text) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Query Options" -msgstr "" +msgstr "ตัวเลือกการค้นหา" #. Label of the query_parameters (Table) field in DocType 'Connected App' #. Name of a DocType #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/query_parameters/query_parameters.json msgid "Query Parameters" -msgstr "" +msgstr "พารามิเตอร์การค้นหา" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json #: frappe/public/js/frappe/views/reports/query_report.js:17 msgid "Query Report" -msgstr "" +msgstr "รายงานการค้นหา" #: frappe/core/doctype/recorder/recorder.py:188 msgid "Query analysis complete. Check suggested indexes." -msgstr "" +msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ" #: frappe/utils/safe_exec.py:495 msgid "Query must be of SELECT or read-only WITH type." -msgstr "" +msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH" #. Label of the queue (Select) field in DocType 'RQ Job' #. Label of the queue (Data) field in DocType 'System Health Report Queue' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Queue" -msgstr "" +msgstr "คิว" #: frappe/utils/background_jobs.py:731 msgid "Queue Overloaded" -msgstr "" +msgstr "คิวเกินพิกัด" #. Label of the queue_status (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Queue Status" -msgstr "" +msgstr "สถานะคิว" #. Label of the queue_type (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue Type(s)" -msgstr "" +msgstr "ประเภทคิว" #. Label of the queue_in_background (Check) field in DocType 'DocType' #. Label of the queue_in_background (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" -msgstr "" +msgstr "คิวในพื้นหลัง (เบต้า)" #: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" -msgstr "" +msgstr "คิวควรเป็นหนึ่งใน {0}" #. Label of the queue (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue(s)" -msgstr "" +msgstr "คิว" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #. Option for the 'Status' (Select) field in DocType 'Submission Queue' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" -msgstr "" +msgstr "อยู่ในคิว" #. Label of the queued_at (Datetime) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued At" -msgstr "" +msgstr "อยู่ในคิวที่" #. Label of the queued_by (Data) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" -msgstr "" +msgstr "อยู่ในคิวโดย" #: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." -msgstr "" +msgstr "อยู่ในคิวสำหรับการส่ง คุณสามารถติดตามความคืบหน้าได้ที่ {0}" #: frappe/desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" +msgstr "อยู่ในคิวสำหรับการสำรองข้อมูล คุณจะได้รับอีเมลพร้อมลิงก์ดาวน์โหลด" #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" +msgstr "คิว" #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" -msgstr "" +msgstr "กำลังจัดคิว {0} สำหรับการส่ง" #. Label of the quick_entry (Check) field in DocType 'DocType' #. Label of the quick_entry (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Quick Entry" -msgstr "" +msgstr "การป้อนข้อมูลอย่างรวดเร็ว" #: frappe/core/page/permission_manager/permission_manager_help.html:3 msgid "Quick Help for Setting Permissions" -msgstr "" +msgstr "ความช่วยเหลือด่วนสำหรับการตั้งค่าสิทธิ์" #. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick #. List' #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" -msgstr "" +msgstr "ตัวกรองรายการด่วน" #. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' #. Label of the quick_lists (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Quick Lists" -msgstr "" +msgstr "รายการด่วน" #: frappe/public/js/frappe/views/reports/report_utils.js:304 msgid "Quoting must be between 0 and 3" -msgstr "" +msgstr "การเสนอราคาต้องอยู่ระหว่าง 0 ถึง 3" #. Label of the raw_information_log_section (Section Break) field in DocType #. 'Access Log' @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,83 +20420,83 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" #. Label of the readme (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Readme" -msgstr "" +msgstr "ไฟล์อ่านฉัน" #. Label of the realtime_socketio_section (Section Break) field in DocType #. 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Realtime (SocketIO)" -msgstr "" +msgstr "เรียลไทม์ (SocketIO)" #. Label of the reason (Long Text) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Reason" -msgstr "" +msgstr "เหตุผล" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" -msgstr "" +msgstr "สร้างใหม่" #: frappe/public/js/frappe/views/treeview.js:509 msgid "Rebuild Tree" -msgstr "" +msgstr "สร้างโครงสร้างใหม่" #: frappe/utils/nestedset.py:177 msgid "Rebuilding of tree is not supported for {}" -msgstr "" +msgstr "การสร้างโครงสร้างใหม่ไม่รองรับสำหรับ {}" #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Received" -msgstr "" +msgstr "ได้รับ" #: frappe/integrations/doctype/token_cache/token_cache.py:49 msgid "Received an invalid token type." -msgstr "" +msgstr "ได้รับประเภทโทเค็นที่ไม่ถูกต้อง" #. Label of the receiver_by_document_field (Select) field in DocType #. 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Document Field" -msgstr "" +msgstr "ผู้รับตามฟิลด์เอกสาร" #. Label of the receiver_by_role (Link) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Role" -msgstr "" +msgstr "ผู้รับตามบทบาท" #. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Receiver Parameter" -msgstr "" +msgstr "พารามิเตอร์ผู้รับ" #: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." -msgstr "" +msgstr "ปีล่าสุดคาดเดาได้ง่าย" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" -msgstr "" +msgstr "ล่าสุด" #. Label of the recipients (Table) field in DocType 'Email Queue' #. Label of the recipient (Data) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json msgid "Recipient" -msgstr "" +msgstr "ผู้รับ" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" -msgstr "" +msgstr "ผู้รับยกเลิกการสมัคร" #. Label of the recipients (Small Text) field in DocType 'Auto Repeat' #. Label of the column_break_5 (Section Break) field in DocType 'Notification' @@ -20309,105 +20504,105 @@ msgstr "" #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/email/doctype/notification/notification.json msgid "Recipients" -msgstr "" +msgstr "ผู้รับ" #. Name of a DocType #: frappe/core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "" +msgstr "เครื่องบันทึก" #. Name of a DocType #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" -msgstr "" +msgstr "คำสั่งค้นหาเครื่องบันทึก" #. Name of a DocType #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json msgid "Recorder Suggested Index" -msgstr "" +msgstr "ดัชนีที่แนะนำโดยเครื่องบันทึก" #: frappe/core/doctype/user_permission/user_permission_help.html:2 msgid "Records for following doctypes will be filtered" -msgstr "" +msgstr "บันทึกสำหรับประเภทเอกสารต่อไปนี้จะถูกกรอง" #: frappe/core/doctype/doctype/doctype.py:1608 msgid "Recursive Fetch From" -msgstr "" +msgstr "ดึงข้อมูลแบบวนซ้ำจาก" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Red" -msgstr "" +msgstr "สีแดง" #. Label of the redirect_http_status (Select) field in DocType 'Website Route #. Redirect' #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Redirect HTTP Status" -msgstr "" +msgstr "เปลี่ยนเส้นทางสถานะ HTTP" #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" -msgstr "" +msgstr "เปลี่ยนเส้นทาง URI" #. Label of the redirect_uri_bound_to_authorization_code (Data) field in #. DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Redirect URI Bound To Auth Code" -msgstr "" +msgstr "เปลี่ยนเส้นทาง URI ที่ผูกกับรหัสการยืนยันตัวตน" #. Label of the redirect_uris (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "" +msgstr "เปลี่ยนเส้นทาง URIs" #. Label of the redirect_url (Small Text) field in DocType 'User' #. Label of the redirect_url (Data) field in DocType 'Social Login Key' #: frappe/core/doctype/user/user.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "" +msgstr "เปลี่ยนเส้นทาง URL" #. Description of the 'Default App' (Select) field in DocType 'System Settings' #. Description of the 'Default App' (Select) field in DocType 'User' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json msgid "Redirect to the selected app after login" -msgstr "" +msgstr "เปลี่ยนเส้นทางไปยังแอปที่เลือกหลังเข้าสู่ระบบ" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." -msgstr "" +msgstr "เปลี่ยนเส้นทางไปยัง URL นี้หลังจากยืนยันสำเร็จ" #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" -msgstr "" +msgstr "เปลี่ยนเส้นทาง" #: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" -msgstr "" +msgstr "เซิร์ฟเวอร์แคช Redis ไม่ทำงาน โปรดติดต่อผู้ดูแลระบบ/ฝ่ายสนับสนุนด้านเทคนิค" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" -msgstr "" +msgstr "ทำซ้ำ" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" -msgstr "" +msgstr "ทำซ้ำการกระทำล่าสุด" #. Label of the ref_doctype (Link) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิง" #: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." -msgstr "" +msgstr "ไม่สามารถใช้ประเภทเอกสารอ้างอิงและชื่อแดชบอร์ดพร้อมกันได้" #. Label of the linked_with (Section Break) field in DocType 'Address' #. Label of the contact_details (Section Break) field in DocType 'Contact' @@ -20429,33 +20624,33 @@ msgstr "" #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/public/js/frappe/views/interaction.js:54 msgid "Reference" -msgstr "" +msgstr "อ้างอิง" #. Label of the date_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Reference Date" -msgstr "" +msgstr "วันที่อ้างอิง" #. Label of the datetime_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Reference Datetime" -msgstr "" +msgstr "วันที่และเวลาอ้างอิง" #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" -msgstr "" +msgstr "ชื่อเอกสารอ้างอิง" #. Label of the reference_doctype (Link) field in DocType 'Error Log' #. Label of the ref_doctype (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิง" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" -msgstr "" +msgstr "ต้องระบุประเภทเอกสารอ้างอิงและชื่ออ้างอิง" #. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' #. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion @@ -20463,7 +20658,7 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Docname" -msgstr "" +msgstr "ชื่อเอกสารอ้างอิง" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' @@ -20473,7 +20668,7 @@ msgstr "" #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิง" #. Label of the reference_document (Dynamic Link) field in DocType 'Auto #. Repeat' @@ -20489,7 +20684,7 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Reference Document" -msgstr "" +msgstr "เอกสารอ้างอิง" #. Label of the reference_docname (Dynamic Link) field in DocType 'Document #. Share Key' @@ -20498,7 +20693,7 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Reference Document Name" -msgstr "" +msgstr "ชื่อเอกสารอ้างอิง" #. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' #. Label of the reference_doctype (Link) field in DocType 'Activity Log' @@ -20541,7 +20736,7 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Document Type" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิง" #. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the reference_name (Dynamic Link) field in DocType 'Comment' @@ -20567,7 +20762,7 @@ msgstr "" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Name" -msgstr "" +msgstr "ชื่ออ้างอิง" #. Label of the reference_owner (Read Only) field in DocType 'Activity Log' #. Label of the reference_owner (Data) field in DocType 'Comment' @@ -20576,7 +20771,7 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/core/doctype/communication/communication.json msgid "Reference Owner" -msgstr "" +msgstr "เจ้าของอ้างอิง" #. Label of the reference_report (Data) field in DocType 'Report' #. Label of the reference_report (Link) field in DocType 'Onboarding Step' @@ -20585,51 +20780,51 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Reference Report" -msgstr "" +msgstr "รายงานอ้างอิง" #. Label of the reference_type (Link) field in DocType 'Permission Log' #. Label of the reference_type (Link) field in DocType 'ToDo' #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/todo/todo.json msgid "Reference Type" -msgstr "" +msgstr "ประเภทอ้างอิง" #. Label of the reference_name (Dynamic Link) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json msgid "Reference name" -msgstr "" +msgstr "ชื่ออ้างอิง" #: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" -msgstr "" +msgstr "อ้างอิง: {0} {1}" #. Label of the referrer (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:37 msgid "Referrer" -msgstr "" +msgstr "ผู้แนะนำ" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" -msgstr "" +msgstr "รีเฟรช" #: frappe/core/page/dashboard_view/dashboard_view.js:177 msgid "Refresh All" -msgstr "" +msgstr "รีเฟรชทั้งหมด" #. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Refresh Google Sheet" -msgstr "" +msgstr "รีเฟรช Google Sheet" #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' @@ -20640,39 +20835,39 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Refresh Token" -msgstr "" +msgstr "รีเฟรชโทเค็น" #: frappe/public/js/frappe/list/list_view.js:531 msgctxt "Document count in list view" msgid "Refreshing" -msgstr "" +msgstr "กำลังรีเฟรช" #: frappe/core/doctype/system_settings/system_settings.js:57 #: frappe/core/doctype/user/user.js:368 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." -msgstr "" +msgstr "กำลังรีเฟรช..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" -msgstr "" +msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/translation/translation.json msgid "Rejected" -msgstr "" +msgstr "ถูกปฏิเสธ" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 msgid "Relay Server URL missing" -msgstr "" +msgstr "ไม่มี URL เซิร์ฟเวอร์รีเลย์" #. Label of the section_break_qgjr (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Relay Settings" -msgstr "" +msgstr "การตั้งค่ารีเลย์" #. Group in Package's connections #: frappe/core/doctype/package/package.json @@ -20683,40 +20878,40 @@ msgstr "" #. Release' #: frappe/core/doctype/package_release/package_release.json msgid "Release Notes" -msgstr "" +msgstr "หมายเหตุการปล่อย" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 msgid "Relink" -msgstr "" +msgstr "ลิงก์ใหม่" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "" +msgstr "ลิงก์ใหม่การสื่อสาร" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Relinked" -msgstr "" +msgstr "ลิงก์ใหม่แล้ว" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" -msgstr "" +msgstr "โหลดใหม่" #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Reload File" -msgstr "" +msgstr "โหลดไฟล์ใหม่" #: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" -msgstr "" +msgstr "โหลดรายการใหม่" #: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" -msgstr "" +msgstr "โหลดรายงานใหม่" #. Label of the remember_last_selected_value (Check) field in DocType #. 'DocField' @@ -20725,162 +20920,162 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "" +msgstr "จำค่าที่เลือกครั้งสุดท้าย" #. Label of the remind_at (Datetime) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json #: frappe/public/js/frappe/form/reminders.js:33 msgid "Remind At" -msgstr "" +msgstr "เตือนที่" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" -msgstr "" +msgstr "เตือนฉัน" #: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" -msgstr "" +msgstr "เตือนฉันใน" #. Name of a DocType #: frappe/automation/doctype/reminder/reminder.json msgid "Reminder" -msgstr "" +msgstr "การเตือน" #: frappe/automation/doctype/reminder/reminder.py:39 msgid "Reminder cannot be created in past." -msgstr "" +msgstr "ไม่สามารถสร้างการเตือนในอดีตได้" #: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" -msgstr "" +msgstr "ตั้งค่าการเตือนที่ {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:14 #: frappe/public/js/frappe/ui/filters/edit_filter.html:4 #: frappe/public/js/frappe/ui/group_by/group_by.html:4 msgid "Remove" -msgstr "" +msgstr "ลบ" #: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" -msgstr "" +msgstr "ลบงานที่ล้มเหลว" #: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" -msgstr "" +msgstr "ลบฟิลด์" #: frappe/printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" -msgstr "" +msgstr "ลบส่วน" #: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "" +msgstr "ลบการปรับแต่งทั้งหมดหรือไม่?" #: frappe/public/js/form_builder/components/Section.vue:286 msgid "Remove all fields in the column" -msgstr "" +msgstr "ลบฟิลด์ทั้งหมดในคอลัมน์" #: frappe/public/js/form_builder/components/Section.vue:278 #: frappe/public/js/frappe/utils/datatable.js:9 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 msgid "Remove column" -msgstr "" +msgstr "ลบคอลัมน์" #: frappe/public/js/form_builder/components/Field.vue:260 msgid "Remove field" -msgstr "" +msgstr "ลบฟิลด์" #: frappe/public/js/form_builder/components/Section.vue:279 msgid "Remove last column" -msgstr "" +msgstr "ลบคอลัมน์สุดท้าย" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 msgid "Remove page break" -msgstr "" +msgstr "ลบการแบ่งหน้า" #: frappe/public/js/form_builder/components/Section.vue:266 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 msgid "Remove section" -msgstr "" +msgstr "ลบส่วน" #: frappe/public/js/form_builder/components/Tabs.vue:140 msgid "Remove tab" -msgstr "" +msgstr "ลบแท็บ" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Removed" -msgstr "" +msgstr "ลบแล้ว" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" -msgstr "" +msgstr "เปลี่ยนชื่อ" #: frappe/custom/doctype/custom_field/custom_field.js:116 #: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" -msgstr "" +msgstr "เปลี่ยนชื่อฟิลด์" #: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" -msgstr "" +msgstr "เปลี่ยนชื่อ {0}" #: frappe/core/doctype/doctype/doctype.py:698 msgid "Renamed files and replaced code in controllers, please check!" -msgstr "" +msgstr "เปลี่ยนชื่อไฟล์และแทนที่โค้ดในตัวควบคุมแล้ว โปรดตรวจสอบ!" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 msgid "Render labels to the left and values to the right in this section" -msgstr "" +msgstr "แสดงป้ายกำกับทางซ้ายและค่าในทางขวาในส่วนนี้" #: frappe/core/doctype/communication/communication.js:43 #: frappe/desk/doctype/todo/todo.js:36 msgid "Reopen" -msgstr "" +msgstr "เปิดใหม่" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" -msgstr "" +msgstr "ทำซ้ำ" #. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Repeat Header and Footer" -msgstr "" +msgstr "ทำซ้ำส่วนหัวและส่วนท้าย" #. Label of the repeat_on (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat On" -msgstr "" +msgstr "ทำซ้ำใน" #. Label of the repeat_till (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat Till" -msgstr "" +msgstr "ทำซ้ำจนถึง" #. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Day" -msgstr "" +msgstr "ทำซ้ำในวัน" #. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" -msgstr "" +msgstr "ทำซ้ำในหลายวัน" #. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Last Day of the Month" -msgstr "" +msgstr "ทำซ้ำในวันสุดท้ายของเดือน" #. Label of the repeat_this_event (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat this Event" -msgstr "" +msgstr "ทำซ้ำเหตุการณ์นี้" #: frappe/utils/password_strength.py:110 msgid "Repeats like \"aaa\" are easy to guess" @@ -20892,38 +21087,38 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 msgid "Repeats {0}" -msgstr "" +msgstr "ทำซ้ำ {0}" #: frappe/core/doctype/role_replication/role_replication.js:7 #: frappe/core/doctype/role_replication/role_replication.js:14 msgid "Replicate" -msgstr "" +msgstr "ทำซ้ำ" #: frappe/core/doctype/role_replication/role_replication.js:8 msgid "Replicating..." -msgstr "" +msgstr "กำลังทำซ้ำ..." #: frappe/core/doctype/role_replication/role_replication.js:13 msgid "Replication completed." -msgstr "" +msgstr "การทำซ้ำเสร็จสมบูรณ์" #. Option for the 'Status' (Select) field in DocType 'Contact' #. Option for the 'Status' (Select) field in DocType 'Communication' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.json msgid "Replied" -msgstr "" +msgstr "ตอบกลับแล้ว" #. Label of the reply (Text Editor) field in DocType 'Discussion Reply' #: frappe/core/doctype/communication/communication.js:57 #: frappe/public/js/frappe/form/footer/form_timeline.js:563 #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Reply" -msgstr "" +msgstr "ตอบกลับ" #: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" -msgstr "" +msgstr "ตอบกลับทั้งหมด" #. Label of the report (Check) field in DocType 'Custom DocPerm' #. Label of the report (Link) field in DocType 'Custom Role' @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,10 +21155,13 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" -msgstr "" +msgstr "รายงาน" #. Option for the 'Report Type' (Select) field in DocType 'Report' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' @@ -20969,32 +21169,32 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "" +msgstr "ตัวสร้างรายงาน" #. Name of a DocType #: frappe/core/doctype/report_column/report_column.json msgid "Report Column" -msgstr "" +msgstr "คอลัมน์รายงาน" #. Label of the report_description (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Description" -msgstr "" +msgstr "คำอธิบายรายงาน" #: frappe/core/doctype/report/report.py:151 msgid "Report Document Error" -msgstr "" +msgstr "ข้อผิดพลาดเอกสารรายงาน" #. Name of a DocType #: frappe/core/doctype/report_filter/report_filter.json msgid "Report Filter" -msgstr "" +msgstr "ตัวกรองรายงาน" #. Label of the report_filters (Section Break) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Filters" -msgstr "" +msgstr "ตัวกรองรายงาน" #. Label of the report_hide (Check) field in DocType 'DocField' #. Label of the report_hide (Check) field in DocType 'Custom Field' @@ -21003,19 +21203,19 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "" +msgstr "ซ่อนรายงาน" #. Label of the report_information_section (Section Break) field in DocType #. 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Report Information" -msgstr "" +msgstr "ข้อมูลรายงาน" #. Name of a role #: frappe/core/doctype/report/report.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" -msgstr "" +msgstr "ผู้จัดการรายงาน" #. Label of the report_name (Data) field in DocType 'Access Log' #. Label of the report_name (Data) field in DocType 'Prepared Report' @@ -21028,26 +21228,26 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" -msgstr "" +msgstr "ชื่อรายงาน" #: frappe/desk/doctype/number_card/number_card.py:69 msgid "Report Name, Report Field and Fucntion are required to create a number card" -msgstr "" +msgstr "ชื่อรายงาน ฟิลด์รายงาน และฟังก์ชันเป็นสิ่งจำเป็นในการสร้างการ์ดตัวเลข" #. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' #. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Report Ref DocType" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิงรายงาน" #. Label of the report_reference_doctype (Data) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Reference Doctype" -msgstr "" +msgstr "ประเภทเอกสารอ้างอิงรายงาน" #. Label of the report_type (Select) field in DocType 'Report' #. Label of the report_type (Data) field in DocType 'Onboarding Step' @@ -21056,99 +21256,99 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Type" -msgstr "" +msgstr "ประเภทรายงาน" #: frappe/public/js/frappe/list/base_list.js:203 msgid "Report View" -msgstr "" +msgstr "มุมมองรายงาน" #: frappe/public/js/frappe/form/templates/form_sidebar.html:26 msgid "Report bug" -msgstr "" +msgstr "รายงานข้อบกพร่อง" #: frappe/core/doctype/doctype/doctype.py:1809 msgid "Report cannot be set for Single types" -msgstr "" +msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 #: frappe/desk/doctype/number_card/number_card.js:191 msgid "Report has no data, please modify the filters or change the Report Name" -msgstr "" +msgstr "รายงานไม่มีข้อมูล โปรดแก้ไขตัวกรองหรือเปลี่ยนชื่อรายงาน" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 #: frappe/desk/doctype/number_card/number_card.js:186 msgid "Report has no numeric fields, please change the Report Name" -msgstr "" +msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" -msgstr "" +msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" -msgstr "" +msgstr "ถึงขีดจำกัดรายงานแล้ว" #: frappe/core/doctype/prepared_report/prepared_report.py:223 msgid "Report timed out." -msgstr "" +msgstr "รายงานหมดเวลา" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" -msgstr "" +msgstr "อัปเดตรายงานเรียบร้อยแล้ว" #: frappe/public/js/frappe/views/reports/report_view.js:1357 msgid "Report was not saved (there were errors)" -msgstr "" +msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." -msgstr "" +msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 msgid "Report {0}" -msgstr "" +msgstr "รายงาน {0}" #: frappe/desk/reportview.py:364 msgid "Report {0} deleted" -msgstr "" +msgstr "ลบรายงาน {0} แล้ว" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" -msgstr "" +msgstr "รายงาน {0} ถูกปิดใช้งาน" #: frappe/desk/reportview.py:341 msgid "Report {0} saved" -msgstr "" +msgstr "บันทึกรายงาน {0} แล้ว" #: frappe/public/js/frappe/views/reports/report_view.js:20 msgid "Report:" -msgstr "" +msgstr "รายงาน:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 msgid "Reports" -msgstr "" +msgstr "รายงาน" #: frappe/patches/v14_0/update_workspace2.py:50 msgid "Reports & Masters" -msgstr "" +msgstr "รายงานและมาสเตอร์" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" -msgstr "" +msgstr "รายงานอยู่ในคิวแล้ว" #. Description of a DocType #: frappe/core/doctype/user/user.json msgid "Represents a User in the system." -msgstr "" +msgstr "แสดงถึงผู้ใช้ในระบบ" #. Description of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Represents the states allowed in one document and role assigned to change the state." -msgstr "" +msgstr "แสดงถึงสถานะที่อนุญาตในเอกสารหนึ่งและบทบาทที่กำหนดให้เปลี่ยนสถานะ" #: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" @@ -21319,6 +21519,31 @@ msgstr "" #: frappe/templates/emails/password_reset.html:3 msgid "Reset your password" +msgstr "รีเซ็ตรหัสผ่านของคุณ" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' @@ -21329,7 +21554,7 @@ msgstr "" #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Response" -msgstr "" +msgstr "การตอบกลับ" #. Label of the response_html (Code) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json @@ -21339,38 +21564,38 @@ msgstr "" #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" -msgstr "" +msgstr "ประเภทการตอบกลับ" #: frappe/public/js/frappe/ui/notifications/notifications.js:414 msgid "Rest of the day" -msgstr "" +msgstr "ส่วนที่เหลือของวัน" #: frappe/core/doctype/deleted_document/deleted_document.js:11 #: frappe/core/doctype/deleted_document/deleted_document_list.js:48 msgid "Restore" -msgstr "" +msgstr "กู้คืน" #: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" -msgstr "" +msgstr "กู้คืนสิทธิ์ดั้งเดิม" #: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" -msgstr "" +msgstr "กู้คืนการตั้งค่าเริ่มต้นหรือไม่?" #. Label of the restored (Check) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Restored" -msgstr "" +msgstr "กู้คืนแล้ว" #: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" -msgstr "" +msgstr "กำลังกู้คืนเอกสารที่ถูกลบ" #. Label of the restrict_ip (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict IP" -msgstr "" +msgstr "จำกัด IP" #. Label of the restrict_to_domain (Link) field in DocType 'DocType' #. Label of the restrict_to_domain (Link) field in DocType 'Module Def' @@ -21380,7 +21605,7 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "" +msgstr "จำกัดเฉพาะโดเมน" #. Label of the restrict_to_domain (Link) field in DocType 'Workspace' #. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' @@ -21392,69 +21617,67 @@ msgstr "" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" -msgstr "" +msgstr "จำกัดผู้ใช้จากที่อยู่ IP นี้เท่านั้น สามารถเพิ่มที่อยู่ IP หลายรายการโดยคั่นด้วยเครื่องหมายจุลภาค และยังยอมรับที่อยู่ IP บางส่วน เช่น (111.111.111)" #: frappe/public/js/frappe/list/list_view.js:196 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" -msgstr "" +msgstr "ข้อจำกัด" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 msgid "Result" -msgstr "" +msgstr "ผลลัพธ์" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" -msgstr "" +msgstr "ดำเนินการส่งต่อ" #. Label of the retry (Int) field in DocType 'Email Queue' #: frappe/core/doctype/data_import/data_import.js:110 #: frappe/desk/page/setup_wizard/setup_wizard.js:297 #: frappe/email/doctype/email_queue/email_queue.json msgid "Retry" -msgstr "" +msgstr "ลองใหม่" #: frappe/email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" -msgstr "" +msgstr "ลองส่งใหม่" #: frappe/www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" -msgstr "" +msgstr "กลับไปที่หน้าจอยืนยันและป้อนรหัสที่แสดงโดยแอปยืนยันตัวตนของคุณ" #. Label of the reverse (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Reverse Icon Color" -msgstr "" +msgstr "ย้อนกลับสีไอคอน" #: frappe/database/schema.py:161 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." -msgstr "" +msgstr "กำลังเปลี่ยนความยาวกลับเป็น {0} สำหรับ '{1}' ใน '{2}' การตั้งค่าความยาวเป็น {3} จะทำให้ข้อมูลถูกตัดทอน" #. Label of the revocation_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Revocation URI" -msgstr "" +msgstr "URI การเพิกถอน" #: frappe/www/third_party_apps.html:47 msgid "Revoke" -msgstr "" +msgstr "เพิกถอน" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Revoked" -msgstr "" +msgstr "ถูกเพิกถอน" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" -msgstr "" +msgstr "ข้อความที่มีรูปแบบ" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -21463,23 +21686,23 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Right" -msgstr "" +msgstr "ขวา" #: frappe/printing/page/print_format_builder/print_format_builder.js:484 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" -msgstr "" +msgstr "ขวา" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Bottom" -msgstr "" +msgstr "ขวาล่าง" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Center" -msgstr "" +msgstr "ขวากลาง" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -21515,47 +21738,47 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" -msgstr "" +msgstr "บทบาท" #: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." -msgstr "" +msgstr "บทบาท 'ทั้งหมด' จะถูกมอบให้กับผู้ใช้ระบบ + เว็บไซต์ทั้งหมด" #: frappe/core/doctype/role/role.js:13 msgid "Role 'Desk User' will be given to all system users." -msgstr "" +msgstr "บทบาท 'ผู้ใช้เดสก์' จะถูกมอบให้กับผู้ใช้ระบบทั้งหมด" #. Label of the role_name (Data) field in DocType 'Role' #. Label of the role_profile (Data) field in DocType 'Role Profile' #: frappe/core/doctype/role/role.json #: frappe/core/doctype/role_profile/role_profile.json msgid "Role Name" -msgstr "" +msgstr "ชื่อบทบาท" #. Name of a DocType #. Label of a Link in the Users Workspace #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" -msgstr "" +msgstr "สิทธิ์บทบาทสำหรับหน้าและรายงาน" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/public/js/frappe/roles_editor.js:103 msgid "Role Permissions" -msgstr "" +msgstr "สิทธิ์บทบาท" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager.js:4 #: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" -msgstr "" +msgstr "ผู้จัดการสิทธิ์บทบาท" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" -msgstr "" +msgstr "ผู้จัดการสิทธิ์บทบาท" #. Name of a DocType #. Label of the role_profile_name (Link) field in DocType 'User' @@ -21566,17 +21789,17 @@ msgstr "" #: frappe/core/doctype/user_role_profile/user_role_profile.json #: frappe/core/workspace/users/users.json msgid "Role Profile" -msgstr "" +msgstr "โปรไฟล์บทบาท" #. Label of the role_profiles (Table MultiSelect) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Role Profiles" -msgstr "" +msgstr "โปรไฟล์บทบาท" #. Name of a DocType #: frappe/core/doctype/role_replication/role_replication.json msgid "Role Replication" -msgstr "" +msgstr "การจำลองบทบาท" #. Label of the role_and_level (Section Break) field in DocType 'Custom #. DocPerm' @@ -21584,11 +21807,11 @@ msgstr "" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Role and Level" -msgstr "" +msgstr "บทบาทและระดับ" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" -msgstr "" +msgstr "บทบาทถูกตั้งค่าตามประเภทผู้ใช้ {0}" #. Label of the roles (Table) field in DocType 'Page' #. Label of the roles (Table) field in DocType 'Report' @@ -21609,50 +21832,50 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace/workspace.json msgid "Roles" -msgstr "" +msgstr "บทบาท" #. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Roles & Permissions" -msgstr "" +msgstr "บทบาทและสิทธิ์" #. Label of the roles (Table) field in DocType 'Role Profile' #. Label of the roles (Table) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles Assigned" -msgstr "" +msgstr "บทบาทที่กำหนด" #. Label of the roles_html (HTML) field in DocType 'Role Profile' #. Label of the roles_html (HTML) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles HTML" -msgstr "" +msgstr "บทบาท HTML" #. Label of the roles_html (HTML) field in DocType 'Role Permission for Page #. and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Roles Html" -msgstr "" +msgstr "บทบาท Html" #: frappe/core/page/permission_manager/permission_manager_help.html:7 msgid "Roles can be set for users from their User page." -msgstr "" +msgstr "บทบาทสามารถตั้งค่าสำหรับผู้ใช้จากหน้าผู้ใช้ของพวกเขา" #: frappe/utils/nestedset.py:280 msgid "Root {0} cannot be deleted" -msgstr "" +msgstr "ไม่สามารถลบราก {0} ได้" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "" +msgstr "รอบโรบิน" #. Label of the rounding_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rounding Method" -msgstr "" +msgstr "วิธีการปัดเศษ" #. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21684,43 +21905,43 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Route" -msgstr "" +msgstr "เส้นทาง" #. Name of a DocType #: frappe/desk/doctype/route_history/route_history.json msgid "Route History" -msgstr "" +msgstr "ประวัติเส้นทาง" #. Label of the route_redirects (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Route Redirects" -msgstr "" +msgstr "เปลี่ยนเส้นทางเส้นทาง" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" -msgstr "" +msgstr "แถว" #: frappe/core/doctype/version/version_view.html:73 msgid "Row #" -msgstr "" +msgstr "แถว #" #: frappe/core/doctype/doctype/doctype.py:1831 #: frappe/core/doctype/doctype/doctype.py:1841 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" -msgstr "" +msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้" #: frappe/model/base_document.py:982 msgid "Row #{0}:" -msgstr "" +msgstr "แถว #{0}:" #: frappe/core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" -msgstr "" +msgstr "ต้องการชื่อฟิลด์" #. Label of the row_format (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -21752,15 +21973,15 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.js:367 msgid "Row {0}" -msgstr "" +msgstr "แถว {0}" #: frappe/custom/doctype/customize_form/customize_form.py:352 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" -msgstr "" +msgstr "แถว {0}: ไม่อนุญาตให้ปิดใช้งานข้อบังคับสำหรับฟิลด์มาตรฐาน" #: frappe/custom/doctype/customize_form/customize_form.py:341 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" -msgstr "" +msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้งานอนุญาตในการส่งสำหรับฟิลด์มาตรฐาน" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21844,41 +22065,41 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/notification/notification.json msgid "SMS" -msgstr "" +msgstr "ข้อความ SMS" #. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "SMS Gateway URL" -msgstr "" +msgstr "URL เกตเวย์ SMS" #. Name of a DocType #: frappe/core/doctype/sms_log/sms_log.json msgid "SMS Log" -msgstr "" +msgstr "บันทึก SMS" #. Name of a DocType #: frappe/core/doctype/sms_parameter/sms_parameter.json msgid "SMS Parameter" -msgstr "" +msgstr "พารามิเตอร์ SMS" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/core/doctype/sms_settings/sms_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "SMS Settings" -msgstr "" +msgstr "การตั้งค่า SMS" #: frappe/core/doctype/sms_settings/sms_settings.py:110 msgid "SMS sent successfully" -msgstr "" +msgstr "ส่ง SMS สำเร็จ" #: frappe/templates/includes/login/login.js:369 msgid "SMS was not sent. Please contact Administrator." -msgstr "" +msgstr "SMS ไม่ถูกส่ง โปรดติดต่อผู้ดูแลระบบ" #: frappe/email/doctype/email_account/email_account.py:212 msgid "SMTP Server is required" -msgstr "" +msgstr "ต้องการเซิร์ฟเวอร์ SMTP" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -21894,17 +22115,17 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.js:85 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" -msgstr "" +msgstr "อธิบาย SQL" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL Output" -msgstr "" +msgstr "ผลลัพธ์ SQL" #. Label of the sql_queries (Table) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "SQL Queries" -msgstr "" +msgstr "คำสั่ง SQL" #. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -21913,30 +22134,30 @@ msgstr "" #: frappe/public/js/frappe/color_picker/color_picker.js:20 msgid "SWATCHES" -msgstr "" +msgstr "ตัวอย่างสี" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Sales Manager" -msgstr "" +msgstr "ผู้จัดการฝ่ายขาย" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Sales Master Manager" -msgstr "" +msgstr "ผู้จัดการมาสเตอร์ฝ่ายขาย" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Sales User" -msgstr "" +msgstr "ผู้ใช้การขาย" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Salesforce" -msgstr "" +msgstr "เซลส์ฟอร์ซ" #. Label of the salutation (Link) field in DocType 'Contact' #. Name of a DocType @@ -21944,16 +22165,16 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" -msgstr "" +msgstr "คำทักทาย" #: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" -msgstr "" +msgstr "ฟิลด์เดียวกันถูกป้อนมากกว่าหนึ่งครั้ง" #. Label of the sample (HTML) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Sample" -msgstr "" +msgstr "ตัวอย่าง" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -21969,7 +22190,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Saturday" -msgstr "" +msgstr "วันเสาร์" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -21994,78 +22215,78 @@ msgstr "" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 msgid "Save" -msgstr "" +msgstr "บันทึก" #: frappe/core/doctype/user/user.js:339 msgid "Save API Secret: {0}" -msgstr "" +msgstr "บันทึกความลับ API: {0}" #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" -msgstr "" +msgstr "บันทึกอยู่ดี" #: frappe/public/js/frappe/views/reports/report_view.js:1388 #: frappe/public/js/frappe/views/reports/report_view.js:1733 msgid "Save As" -msgstr "" +msgstr "บันทึกเป็น" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 msgid "Save Customizations" -msgstr "" +msgstr "บันทึกการปรับแต่ง" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" -msgstr "" +msgstr "บันทึกรายงาน" #: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" -msgstr "" +msgstr "บันทึกตัวกรอง" #. Label of the save_on_complete (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Save on Completion" -msgstr "" +msgstr "บันทึกเมื่อเสร็จสิ้น" #: frappe/public/js/frappe/form/form_tour.js:295 msgid "Save the document." -msgstr "" +msgstr "บันทึกเอกสาร" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" -msgstr "" +msgstr "บันทึกแล้ว" #: frappe/public/js/frappe/list/list_sidebar.html:88 msgid "Saved Filters" -msgstr "" +msgstr "ตัวกรองที่บันทึกไว้" #: frappe/public/js/frappe/list/list_settings.js:40 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 #: frappe/public/js/frappe/views/workspace/workspace.js:348 msgid "Saving" -msgstr "" +msgstr "กำลังบันทึก" #: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" -msgstr "" +msgstr "กำลังบันทึก" #: frappe/custom/doctype/customize_form/customize_form.js:411 msgid "Saving Customization..." -msgstr "" +msgstr "กำลังบันทึกการปรับแต่ง..." #: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." -msgstr "" +msgstr "การบันทึกนี้จะส่งออกเอกสารนี้รวมถึงขั้นตอนที่เชื่อมโยงที่นี่เป็น json" #: frappe/public/js/form_builder/store.js:233 #: frappe/public/js/print_format_builder/store.js:36 #: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." -msgstr "" +msgstr "กำลังบันทึก..." #: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22471,10 +22676,10 @@ msgstr "" #: frappe/public/js/frappe/form/controls/multicheck.js:166 #: frappe/public/js/frappe/form/grid_row.js:481 msgid "Select All" -msgstr "" +msgstr "เลือกทั้งหมด" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22553,187 +22758,187 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:236 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" -msgstr "" +msgstr "เลือกฟิลด์" #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" -msgstr "" +msgstr "เลือกฟิลด์เพื่อแทรก" #: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" -msgstr "" +msgstr "เลือกฟิลด์เพื่ออัปเดต" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" -msgstr "" +msgstr "เลือกตัวกรอง" #: frappe/desk/doctype/event/event.py:103 msgid "Select Google Calendar to which event should be synced." -msgstr "" +msgstr "เลือก Google Calendar ที่จะซิงค์เหตุการณ์" #: frappe/contacts/doctype/contact/contact.py:77 msgid "Select Google Contacts to which contact should be synced." -msgstr "" +msgstr "เลือก Google Contacts ที่จะซิงค์ผู้ติดต่อ" #: frappe/public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "" +msgstr "เลือกกลุ่มตาม..." #: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" -msgstr "" +msgstr "เลือก Kanban" #: frappe/desk/page/setup_wizard/setup_wizard.js:391 msgid "Select Language" -msgstr "" +msgstr "เลือกภาษา" #. Label of the list_name (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select List View" -msgstr "" +msgstr "เลือกมุมมองรายการ" #: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" -msgstr "" +msgstr "เลือกข้อบังคับ" #: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" -msgstr "" +msgstr "เลือกโมดูล" #: frappe/printing/page/print/print.js:175 #: frappe/printing/page/print/print.js:585 msgid "Select Network Printer" -msgstr "" +msgstr "เลือกเครื่องพิมพ์เครือข่าย" #. Label of the page_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Page" -msgstr "" +msgstr "เลือกหน้า" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" -msgstr "" +msgstr "เลือกรูปแบบการพิมพ์" #: frappe/printing/page/print_format_builder/print_format_builder.js:82 msgid "Select Print Format to Edit" -msgstr "" +msgstr "เลือกรูปแบบการพิมพ์เพื่อแก้ไข" #. Label of the report_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Report" -msgstr "" +msgstr "เลือกรายงาน" #: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" -msgstr "" +msgstr "เลือกคอลัมน์ตารางสำหรับ {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:408 msgid "Select Time Zone" -msgstr "" +msgstr "เลือกเขตเวลา" #. Label of the transaction_type (Autocomplete) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Select Transaction" -msgstr "" +msgstr "เลือกธุรกรรม" #: frappe/workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" -msgstr "" +msgstr "เลือกเวิร์กโฟลว์" #. Label of the workspace_name (Link) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Select Workspace" -msgstr "" +msgstr "เลือกพื้นที่ทำงาน" #. Label of the select_workspaces_section (Section Break) field in DocType #. 'Workspace Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Select Workspaces" -msgstr "" +msgstr "เลือกพื้นที่ทำงาน" #: frappe/website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." -msgstr "" +msgstr "เลือกภาพแบรนด์ก่อน" #: frappe/printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" -msgstr "" +msgstr "เลือกประเภทเอกสารเพื่อสร้างรูปแบบใหม่" #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "" +msgstr "เลือกฟิลด์เพื่อแก้ไขคุณสมบัติ" #: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." -msgstr "" +msgstr "เลือกโหนดกลุ่มก่อน" #: frappe/core/doctype/doctype/doctype.py:1942 msgid "Select a valid Sender Field for creating documents from Email" -msgstr "" +msgstr "เลือกฟิลด์ผู้ส่งที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล" #: frappe/core/doctype/doctype/doctype.py:1926 msgid "Select a valid Subject field for creating documents from Email" -msgstr "" +msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล" #: frappe/public/js/frappe/form/form_tour.js:321 msgid "Select an Image" -msgstr "" +msgstr "เลือกภาพ" #: frappe/www/apps.html:10 msgid "Select an app to continue" -msgstr "" +msgstr "เลือกแอปเพื่อดำเนินการต่อ" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 msgid "Select an existing format to edit or start a new format." -msgstr "" +msgstr "เลือกรูปแบบที่มีอยู่เพื่อแก้ไขหรือเริ่มรูปแบบใหม่" #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "" +msgstr "เลือกภาพที่มีความกว้างประมาณ 150px พร้อมพื้นหลังโปร่งใสเพื่อผลลัพธ์ที่ดีที่สุด" #: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" -msgstr "" +msgstr "เลือกอย่างน้อย 1 รายการสำหรับการพิมพ์" #: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" -msgstr "" +msgstr "เลือกอย่างน้อย 2 การกระทำ" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" -msgstr "" +msgstr "เลือกรายการในรายการ" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" -msgstr "" +msgstr "เลือกรายการในรายการหลายรายการ" #: frappe/public/js/frappe/views/calendar/calendar.js:167 msgid "Select or drag across time slots to create a new event." -msgstr "" +msgstr "เลือกหรือลากข้ามช่วงเวลาเพื่อสร้างเหตุการณ์ใหม่" #: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" -msgstr "" +msgstr "เลือกรายการสำหรับการมอบหมาย" #: frappe/public/js/frappe/list/bulk_operations.js:260 msgid "Select records for removing assignment" -msgstr "" +msgstr "เลือกรายการสำหรับการลบการมอบหมาย" #. Description of the 'Insert After' (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Select the label after which you want to insert new field." -msgstr "" +msgstr "เลือกป้ายกำกับหลังจากนั้นคุณต้องการแทรกฟิลด์ใหม่" #: frappe/public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." -msgstr "" +msgstr "เลือกสองเวอร์ชันเพื่อดูความแตกต่าง" #: frappe/public/js/frappe/form/link_selector.js:24 #: frappe/public/js/frappe/form/multi_select_dialog.js:80 @@ -22741,246 +22946,207 @@ msgstr "" #: frappe/public/js/frappe/list/list_view_select.js:153 #: frappe/public/js/print_format_builder/Preview.vue:90 msgid "Select {0}" -msgstr "" +msgstr "เลือก {0}" #: frappe/model/workflow.py:117 msgid "Self approval is not allowed" -msgstr "" +msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" -msgstr "" +msgstr "ส่ง" #: frappe/public/js/frappe/views/communication.js:26 msgctxt "Send Email" msgid "Send" -msgstr "" +msgstr "ส่ง" #. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." -msgstr "" +msgstr "ส่ง โดยเร็วที่สุด จำนวนนี้ของนาทีก่อนหรือหลังวันที่และเวลาที่อ้างอิง การส่งจริงอาจล่าช้าได้ถึง 5 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา" #. Label of the send_after (Datetime) field in DocType 'Communication' #. Label of the send_after (Datetime) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Send After" -msgstr "" +msgstr "ส่งหลังจาก" #. Label of the event (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send Alert On" -msgstr "" +msgstr "ส่งการแจ้งเตือนเมื่อ" #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" -msgstr "" - -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" +msgstr "ส่งการแจ้งเตือนทางอีเมล" #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" -msgstr "" +msgstr "ส่งอีเมลเมื่อสถานะ" #. Description of the 'Send Print as PDF' (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "" +msgstr "ส่งไฟล์แนบพิมพ์อีเมลเป็น PDF (แนะนำ)" #. Label of the send_email_to_creator (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Send Email To Creator" -msgstr "" +msgstr "ส่งอีเมลถึงผู้สร้าง" #. Label of the send_me_a_copy (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Me A Copy of Outgoing Emails" -msgstr "" +msgstr "ส่งสำเนาอีเมลขาออกให้ฉัน" #. Label of the send_notification_to (Small Text) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send Notification to" -msgstr "" +msgstr "ส่งการแจ้งเตือนถึง" #. Label of the document_follow_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Documents Followed By Me" -msgstr "" +msgstr "ส่งการแจ้งเตือนสำหรับเอกสารที่ฉันติดตาม" #. Label of the thread_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Email Threads" -msgstr "" +msgstr "ส่งการแจ้งเตือนสำหรับเธรดอีเมล" #: frappe/email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" -msgstr "" +msgstr "ส่งเดี๋ยวนี้" #. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Print as PDF" -msgstr "" +msgstr "ส่งพิมพ์เป็น PDF" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" -msgstr "" +msgstr "ส่งใบตอบรับการอ่าน" #. Label of the send_system_notification (Check) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send System Notification" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" +msgstr "ส่งการแจ้งเตือนระบบ" #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "" - -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" +msgstr "ส่งถึงผู้รับมอบหมายทั้งหมด" #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" +msgstr "ส่งอีเมลต้อนรับ" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" -msgstr "" +msgstr "ส่งการแจ้งเตือนหากวันที่ตรงกับค่าของฟิลด์นี้" #. Description of the 'Reference Datetime' (Select) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if datetime matches this field's value" -msgstr "" +msgstr "ส่งการแจ้งเตือนหากวันที่และเวลาตรงกับค่าของฟิลด์นี้" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if this field's value changes" -msgstr "" +msgstr "ส่งการแจ้งเตือนหากค่าของฟิลด์นี้เปลี่ยนแปลง" #. Label of the send_reminder (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Send an email reminder in the morning" -msgstr "" +msgstr "ส่งการเตือนทางอีเมลในตอนเช้า" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send days before or after the reference date" -msgstr "" +msgstr "ส่งก่อนหรือหลังวันที่อ้างอิง" #. Description of the 'Send Email On State' (Check) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send email when document transitions to the state." -msgstr "" +msgstr "ส่งอีเมลเมื่อเอกสารเปลี่ยนสถานะ" #. Description of the 'Forward To Email Address' (Data) field in DocType #. 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Send enquiries to this email address" -msgstr "" +msgstr "ส่งคำถามไปยังที่อยู่อีเมลนี้" #: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 msgid "Send login link" -msgstr "" +msgstr "ส่งลิงก์เข้าสู่ระบบ" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" +msgstr "ส่งสำเนาให้ฉัน" #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" -msgstr "" +msgstr "ส่งเฉพาะเมื่อมีข้อมูล" #. Label of the send_unsubscribe_message (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send unsubscribe message in email" -msgstr "" +msgstr "ส่งข้อความยกเลิกการสมัครในอีเมล" #. Label of the sender (Data) field in DocType 'Event' #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" -msgstr "" +msgstr "ผู้ส่ง" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" -msgstr "" +msgstr "อีเมลผู้ส่ง" #. Label of the sender_field (Data) field in DocType 'DocType' #. Label of the sender_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" -msgstr "" +msgstr "ฟิลด์อีเมลผู้ส่ง" #: frappe/core/doctype/doctype/doctype.py:1945 msgid "Sender Field should have Email in options" -msgstr "" +msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" -msgstr "" +msgstr "ชื่อผู้ส่ง" #. Label of the sender_name_field (Data) field in DocType 'DocType' #. Label of the sender_name_field (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Name Field" -msgstr "" +msgstr "ฟิลด์ชื่อผู้ส่ง" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -22991,17 +23157,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" +msgstr "กำลังส่ง" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' @@ -23010,42 +23167,40 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" -msgstr "" +msgstr "ส่งแล้ว" #. Label of the sent_folder_name (Data) field in DocType 'Email Account' #. Label of the sent_folder_name (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Sent Folder Name" -msgstr "" +msgstr "ชื่อโฟลเดอร์ที่ส่ง" #. Label of the sent_on (Date) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent On" -msgstr "" +msgstr "ส่งเมื่อ" #. Label of the read_receipt (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "" +msgstr "ส่งใบตอบรับการอ่าน" #. Label of the sent_to (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent To" -msgstr "" +msgstr "ส่งถึง" #. Label of the sent_or_received (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent or Received" -msgstr "" +msgstr "ส่งหรือรับ" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Sent/Received Email" -msgstr "" +msgstr "อีเมลที่ส่ง/รับ" #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23110,7 +23265,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:254 msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." -msgstr "" +msgstr "ระบบไม่สามารถประมวลผลคำขอ เนื่องจากเกิดข้อขัดแย้งจากคำขอที่ทำงานพร้อมกัน กรุณาลองอีกครั้ง" #: frappe/public/js/frappe/request.js:246 msgid "Server was too busy to process this request. Please try again." @@ -23139,26 +23294,26 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" -msgstr "" +msgstr "ค่าเริ่มต้นของเซสชัน" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" -msgstr "" +msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" -msgstr "" +msgstr "เซสชันหมดอายุ" #. Label of the session_expiry (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" -msgstr "" +msgstr "การหมดอายุของเซสชัน (หมดเวลาไม่ใช้งาน)" #: frappe/core/doctype/system_settings/system_settings.py:120 msgid "Session Expiry must be in format {0}" -msgstr "" +msgstr "การหมดอายุของเซสชันต้องอยู่ในรูปแบบ {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 @@ -23166,22 +23321,22 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.js:387 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" -msgstr "" +msgstr "ตั้งค่า" #: frappe/public/js/frappe/ui/filters/filter.js:607 msgctxt "Field value is set" msgid "Set" -msgstr "" +msgstr "ตั้งค่า" #. Label of the set_banner_from_image (Button) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Set Banner from Image" -msgstr "" +msgstr "ตั้งค่าแบนเนอร์จากภาพ" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" -msgstr "" +msgstr "ตั้งค่าแผนภูมิ" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json @@ -23191,54 +23346,54 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 #: frappe/desk/doctype/number_card/number_card.js:367 msgid "Set Dynamic Filters" -msgstr "" +msgstr "ตั้งค่าตัวกรองแบบไดนามิก" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 #: frappe/desk/doctype/number_card/number_card.js:280 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" -msgstr "" +msgstr "ตั้งค่าตัวกรอง" #: frappe/public/js/frappe/widgets/chart_widget.js:436 #: frappe/public/js/frappe/widgets/quick_list_widget.js:105 msgid "Set Filters for {0}" -msgstr "" +msgstr "ตั้งค่าตัวกรองสำหรับ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" -msgstr "" +msgstr "ตั้งค่าระดับ" #: frappe/core/doctype/user_type/user_type.py:92 msgid "Set Limit" -msgstr "" +msgstr "ตั้งค่าขีดจำกัด" #. Description of the 'Setup Series for transactions' (Section Break) field in #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "" +msgstr "ตั้งค่าตัวเลือกชุดการตั้งชื่อในธุรกรรมของคุณ" #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Set New Password" -msgstr "" +msgstr "ตั้งรหัสผ่านใหม่" #: frappe/desk/page/backups/backups.js:8 msgid "Set Number of Backups" -msgstr "" +msgstr "ตั้งค่าจำนวนการสำรองข้อมูล" #: frappe/www/update-password.html:32 msgid "Set Password" -msgstr "" +msgstr "ตั้งรหัสผ่าน" #: frappe/custom/doctype/customize_form/customize_form.js:112 msgid "Set Permissions" -msgstr "" +msgstr "ตั้งค่าสิทธิ์" #: frappe/printing/page/print_format_builder/print_format_builder.js:471 msgid "Set Properties" -msgstr "" +msgstr "ตั้งค่าคุณสมบัติ" #. Label of the property_section (Section Break) field in DocType #. 'Notification' @@ -23246,56 +23401,56 @@ msgstr "" #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Set Property After Alert" -msgstr "" +msgstr "ตั้งค่าคุณสมบัติหลังการแจ้งเตือน" #: frappe/public/js/frappe/form/link_selector.js:207 #: frappe/public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" -msgstr "" +msgstr "ตั้งค่าปริมาณ" #. Label of the set_role_for (Select) field in DocType 'Role Permission for #. Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Set Role For" -msgstr "" +msgstr "ตั้งค่าบทบาทสำหรับ" #: frappe/core/doctype/user/user.js:131 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "" +msgstr "ตั้งค่าสิทธิ์ผู้ใช้" #. Label of the value (Small Text) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" -msgstr "" +msgstr "ตั้งค่ามูลค่า" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" -msgstr "" +msgstr "ตั้งค่าทั้งหมดเป็นส่วนตัว" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" -msgstr "" +msgstr "ตั้งค่าทั้งหมดเป็นสาธารณะ" #: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" -msgstr "" +msgstr "ตั้งค่าเป็นค่าเริ่มต้น" #: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" -msgstr "" +msgstr "ตั้งค่าเป็นธีมเริ่มต้น" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" -msgstr "" +msgstr "ตั้งค่าโดยผู้ใช้" #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "Set dynamic filter values in JavaScript for the required fields here." -msgstr "" +msgstr "ตั้งค่าค่าตัวกรองแบบไดนามิกใน JavaScript สำหรับฟิลด์ที่ต้องการที่นี่" #. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' @@ -23307,17 +23462,17 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" -msgstr "" +msgstr "ตั้งค่าความแม่นยำที่ไม่เป็นมาตรฐานสำหรับฟิลด์ Float หรือ Currency" #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" -msgstr "" +msgstr "ตั้งค่าเพียงครั้งเดียว" #. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Set size in MB" -msgstr "" +msgstr "ตั้งค่าขนาดใน MB" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23356,15 +23511,15 @@ msgstr "" #: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" -msgstr "" +msgstr "ตั้งค่าแม่แบบที่อยู่นี้เป็นค่าเริ่มต้นเนื่องจากไม่มีค่าเริ่มต้นอื่น" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." -msgstr "" +msgstr "กำลังตั้งค่าเอกสารการค้นหาระดับโลก" #: frappe/desk/page/setup_wizard/setup_wizard.js:285 msgid "Setting up your system" -msgstr "" +msgstr "กำลังตั้งค่าระบบของคุณ" #. Label of the settings_tab (Tab Break) field in DocType 'DocType' #. Label of the settings_tab (Tab Break) field in DocType 'User' @@ -23377,72 +23532,72 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json frappe/www/me.html:20 msgid "Settings" -msgstr "" +msgstr "การตั้งค่า" #. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Settings Dropdown" -msgstr "" +msgstr "การตั้งค่าดรอปดาวน์" #. Description of a DocType #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Settings for Contact Us Page" -msgstr "" +msgstr "การตั้งค่าสำหรับหน้าติดต่อเรา" #. Description of a DocType #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Settings for the About Us Page" -msgstr "" +msgstr "การตั้งค่าสำหรับหน้าเกี่ยวกับเรา" #. Description of a DocType #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" +msgstr "การตั้งค่าเพื่อควบคุมหมวดหมู่บล็อกและการโต้ตอบเช่นความคิดเห็นและการถูกใจ" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 msgid "Setup" -msgstr "" +msgstr "การตั้งค่า" #: frappe/core/page/permission_manager/permission_manager_help.html:27 msgid "Setup > Customize Form" -msgstr "" +msgstr "การตั้งค่า > ปรับแต่งฟอร์ม" #: frappe/core/page/permission_manager/permission_manager_help.html:8 msgid "Setup > User" -msgstr "" +msgstr "การตั้งค่า > ผู้ใช้" #: frappe/core/page/permission_manager/permission_manager_help.html:33 msgid "Setup > User Permissions" -msgstr "" +msgstr "การตั้งค่า > สิทธิ์ผู้ใช้" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" -msgstr "" +msgstr "ตั้งค่าอีเมลอัตโนมัติ" #. Label of the setup_complete (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Setup Complete" -msgstr "" +msgstr "การตั้งค่าเสร็จสมบูรณ์" #. Label of the setup_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" -msgstr "" +msgstr "ตั้งค่าชุดสำหรับธุรกรรม" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" -msgstr "" +msgstr "การตั้งค่าล้มเหลว" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23456,64 +23611,66 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "" +msgstr "แชร์" #: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" -msgstr "" +msgstr "แชร์กับ" #: frappe/public/js/frappe/form/templates/set_sharing.html:49 msgid "Share this document with" -msgstr "" +msgstr "แชร์เอกสารนี้กับ" #: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" -msgstr "" +msgstr "แชร์ {0} กับ" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Shared" -msgstr "" +msgstr "แชร์" #: frappe/desk/form/assign_to.py:132 msgid "Shared with the following Users with Read access:{0}" -msgstr "" +msgstr "แชร์กับผู้ใช้ต่อไปนี้ที่มีสิทธิ์การเข้าถึงแบบอ่าน:{0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shipping" -msgstr "" +msgstr "การขนส่ง" #: frappe/public/js/frappe/form/templates/address_list.html:31 msgid "Shipping Address" -msgstr "" +msgstr "ที่อยู่การขนส่ง" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shop" -msgstr "" +msgstr "ร้านค้า" #. Label of the short_name (Data) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Short Name" -msgstr "" +msgstr "ชื่อย่อ" #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" -msgstr "" +msgstr "รูปแบบแป้นพิมพ์สั้น ๆ เดาง่าย" #. Label of the shortcuts (Table) field in DocType 'Workspace' #. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "" +msgstr "ทางลัด" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" -msgstr "" +msgstr "แสดง" #. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json @@ -23532,20 +23689,26 @@ msgstr "" #. Label of the absolute_value (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Absolute Values" -msgstr "" +msgstr "แสดงค่าที่แน่นอน" #: frappe/public/js/frappe/form/templates/form_sidebar.html:73 msgid "Show All" +msgstr "แสดงทั้งหมด" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" msgstr "" #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" -msgstr "" +msgstr "แสดงปฏิทิน" #. Label of the symbol_on_right (Check) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Show Currency Symbol on Right Side" -msgstr "" +msgstr "แสดงสัญลักษณ์สกุลเงินทางด้านขวา" #. Label of the show_dashboard (Check) field in DocType 'DocField' #. Label of the show_dashboard (Check) field in DocType 'Custom Field' @@ -23555,141 +23718,153 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" -msgstr "" +msgstr "แสดงแดชบอร์ด" #. Label of the show_document (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Show Document" -msgstr "" +msgstr "แสดงเอกสาร" #: frappe/www/error.html:42 frappe/www/error.html:65 msgid "Show Error" -msgstr "" +msgstr "แสดงข้อผิดพลาด" #: frappe/public/js/frappe/form/layout.js:579 msgid "Show Fieldname (click to copy on clipboard)" -msgstr "" +msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)" #. Label of the first_document (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Show First Document Tour" -msgstr "" +msgstr "แสดงทัวร์เอกสารแรก" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Form Tour" -msgstr "" +msgstr "แสดงทัวร์ฟอร์ม" #. Label of the allow_error_traceback (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "" +msgstr "แสดงข้อผิดพลาดทั้งหมดและอนุญาตให้รายงานปัญหาไปยังนักพัฒนา" #. Label of the show_full_form (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show Full Form?" -msgstr "" +msgstr "แสดงฟอร์มทั้งหมดหรือไม่?" #. Label of the show_full_number (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Full Number" -msgstr "" +msgstr "แสดงหมายเลขทั้งหมด" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" -msgstr "" +msgstr "แสดงทางลัดแป้นพิมพ์" #. Label of the show_labels (Check) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 msgid "Show Labels" -msgstr "" +msgstr "แสดงป้ายกำกับ" #. Label of the show_language_picker (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" -msgstr "" +msgstr "แสดงตัวเลือกภาษา" #. Label of the line_breaks (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Line Breaks after Sections" -msgstr "" +msgstr "แสดงการแบ่งบรรทัดหลังส่วน" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" -msgstr "" +msgstr "แสดงลิงก์" #. Label of the show_failed_logs (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Show Only Failed Logs" -msgstr "" +msgstr "แสดงเฉพาะบันทึกที่ล้มเหลว" #. Label of the show_percentage_stats (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Percentage Stats" -msgstr "" +msgstr "แสดงสถิติเปอร์เซ็นต์" #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" -msgstr "" +msgstr "แสดงสิทธิ์" #: frappe/public/js/form_builder/form_builder.bundle.js:31 #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Show Preview" -msgstr "" +msgstr "แสดงตัวอย่าง" #. Label of the show_preview_popup (Check) field in DocType 'DocType' #. Label of the show_preview_popup (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Preview Popup" -msgstr "" +msgstr "แสดงป๊อปอัปตัวอย่าง" #. Label of the show_processlist (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Show Processlist" +msgstr "แสดงรายการกระบวนการ" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" msgstr "" #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" -msgstr "" +msgstr "แสดงข้อผิดพลาดที่เกี่ยวข้อง" #. Label of the show_report (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.js:43 #: frappe/core/doctype/report/report.js:16 msgid "Show Report" -msgstr "" +msgstr "แสดงรายงาน" #: frappe/public/js/frappe/list/list_filter.js:15 #: frappe/public/js/frappe/list/list_filter.js:94 msgid "Show Saved" -msgstr "" +msgstr "แสดงที่บันทึกไว้" #. Label of the show_section_headings (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Section Headings" -msgstr "" +msgstr "แสดงหัวข้อส่วน" #. Label of the show_sidebar (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" +msgstr "แสดงแถบด้านข้าง" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" -msgstr "" +msgstr "แสดงแท็ก" #. Label of the show_title (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Title" -msgstr "" +msgstr "แสดงชื่อเรื่อง" #. Label of the show_title_field_in_link (Check) field in DocType 'DocType' #. Label of the show_title_field_in_link (Check) field in DocType 'Customize @@ -23697,108 +23872,120 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" -msgstr "" +msgstr "แสดงชื่อเรื่องในฟิลด์ลิงก์" #: frappe/public/js/frappe/views/reports/report_view.js:1527 msgid "Show Totals" -msgstr "" +msgstr "แสดงยอดรวม" #: frappe/desk/doctype/form_tour/form_tour.js:116 msgid "Show Tour" -msgstr "" +msgstr "แสดงทัวร์" #: frappe/core/doctype/data_import/data_import.js:448 msgid "Show Traceback" +msgstr "แสดงการติดตามข้อผิดพลาด" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" msgstr "" #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" -msgstr "" +msgstr "แสดงคำเตือน" #: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Show Weekends" -msgstr "" +msgstr "แสดงวันหยุดสุดสัปดาห์" #. Label of the show_account_deletion_link (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" -msgstr "" +msgstr "แสดงลิงก์ลบบัญชีในหน้าบัญชีของฉัน" #: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" -msgstr "" +msgstr "แสดงทุกเวอร์ชัน" #: frappe/public/js/frappe/form/footer/form_timeline.js:69 msgid "Show all activity" -msgstr "" +msgstr "แสดงกิจกรรมทั้งหมด" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" -msgstr "" +msgstr "แสดงบล็อกทั้งหมด" #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" -msgstr "" +msgstr "แสดงเป็น cc" #. Label of the show_attachments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show attachments" -msgstr "" +msgstr "แสดงไฟล์แนบ" #. Label of the show_footer_on_login (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" -msgstr "" +msgstr "แสดงส่วนท้ายเมื่อเข้าสู่ระบบ" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Show full form instead of a quick entry modal" -msgstr "" +msgstr "แสดงฟอร์มเต็มแทนโมดัลการป้อนข้อมูลด่วน" #. Label of the document_type (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Show in Module Section" +msgstr "แสดงในส่วนโมดูล" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" msgstr "" #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" -msgstr "" +msgstr "แสดงในตัวกรอง" #. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Show link to document" -msgstr "" +msgstr "แสดงลิงก์ไปยังเอกสาร" #. Label of the show_list (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show list" -msgstr "" +msgstr "แสดงรายการ" #: frappe/public/js/frappe/form/layout.js:273 #: frappe/public/js/frappe/form/layout.js:291 msgid "Show more details" -msgstr "" +msgstr "แสดงรายละเอียดเพิ่มเติม" #. Label of the show_on_timeline (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Show on Timeline" -msgstr "" +msgstr "แสดงในไทม์ไลน์" #. Description of the 'Stats Time Interval' (Select) field in DocType 'Number #. Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show percentage difference according to this time interval" -msgstr "" +msgstr "แสดงความแตกต่างของเปอร์เซ็นต์ตามช่วงเวลานี้" #. Label of the show_sidebar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show sidebar" -msgstr "" +msgstr "แสดงแถบด้านข้าง" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -23807,15 +23994,15 @@ msgstr "" #: frappe/public/js/frappe/widgets/onboarding_widget.js:148 msgid "Show {0} List" -msgstr "" +msgstr "แสดงรายการ {0}" #: frappe/public/js/frappe/views/reports/report_view.js:501 msgid "Showing only Numeric fields from Report" -msgstr "" +msgstr "แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน" #: frappe/public/js/frappe/data_import/import_preview.js:153 msgid "Showing only first {0} rows out of {1}" -msgstr "" +msgstr "แสดงเฉพาะ {0} แถวแรกจาก {1}" #. Label of the list_sidebar (Check) field in DocType 'User' #. Label of the form_sidebar (Check) field in DocType 'User' @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23879,7 +24066,7 @@ msgstr "" #: frappe/www/login.html:169 msgid "Signups have been disabled for this website." -msgstr "" +msgstr "การลงทะเบียนถูกปิดใช้งานสำหรับเว็บไซต์นี้" #. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment #. Rule' @@ -23902,72 +24089,74 @@ msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" -msgstr "" +msgstr "เซสชันพร้อมกัน" #: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Single DocTypes cannot be customized." -msgstr "" +msgstr "ประเภทเอกสารเดี่ยวไม่สามารถปรับแต่งได้" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "" +msgstr "ประเภทเดี่ยวมีเพียงหนึ่งระเบียนไม่มีตารางที่เกี่ยวข้อง ค่าเก็บไว้ใน tabSingles" #: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." -msgstr "" +msgstr "ไซต์กำลังทำงานในโหมดอ่านอย่างเดียวสำหรับการบำรุงรักษาหรืออัปเดตไซต์ ไม่สามารถดำเนินการนี้ได้ในขณะนี้ โปรดลองอีกครั้งในภายหลัง" #: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Size" -msgstr "" +msgstr "ขนาด" #. Label of the size (Float) field in DocType 'System Health Report Tables' #: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json msgid "Size (MB)" -msgstr "" +msgstr "ขนาด (MB)" #: frappe/public/js/frappe/widgets/onboarding_widget.js:82 #: frappe/public/js/onboarding_tours/onboarding_tours.js:18 msgid "Skip" -msgstr "" +msgstr "ข้าม" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" -msgstr "" +msgstr "ข้ามการอนุญาต" #: frappe/public/js/frappe/widgets/onboarding_widget.js:332 msgid "Skip Step" -msgstr "" +msgstr "ข้ามขั้นตอน" #. Label of the skipped (Check) field in DocType 'Patch Log' #: frappe/core/doctype/patch_log/patch_log.json msgid "Skipped" -msgstr "" +msgstr "ข้ามแล้ว" #: frappe/core/doctype/data_import/importer.py:952 msgid "Skipping Duplicate Column {0}" -msgstr "" +msgstr "ข้ามคอลัมน์ซ้ำ {0}" #: frappe/core/doctype/data_import/importer.py:977 msgid "Skipping Untitled Column" -msgstr "" +msgstr "ข้ามคอลัมน์ที่ไม่มีชื่อ" #: frappe/core/doctype/data_import/importer.py:963 msgid "Skipping column {0}" -msgstr "" +msgstr "ข้ามคอลัมน์ {0}" #: frappe/modules/utils.py:176 msgid "Skipping fixture syncing for doctype {0} from file {1}" -msgstr "" +msgstr "ข้ามการซิงค์ฟิกซ์เจอร์สำหรับประเภทเอกสาร {0} จากไฟล์ {1}" #: frappe/core/doctype/data_import/data_import.js:39 msgid "Skipping {0} of {1}, {2}" -msgstr "" +msgstr "ข้าม {0} จาก {1}, {2}" #. Label of the skype (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -23982,39 +24171,39 @@ msgstr "" #. Label of the slack_webhook_url (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Slack Channel" -msgstr "" +msgstr "ช่อง Slack" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 msgid "Slack Webhook Error" -msgstr "" +msgstr "ข้อผิดพลาด Webhook ของ Slack" #. Name of a DocType #. Label of a Link in the Integrations Workspace #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" -msgstr "" +msgstr "URL Webhook ของ Slack" #. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Slideshow" -msgstr "" +msgstr "สไลด์โชว์" #. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Items" -msgstr "" +msgstr "รายการสไลด์โชว์" #. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Name" -msgstr "" +msgstr "ชื่อสไลด์โชว์" #. Description of a DocType #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow like display for the website" -msgstr "" +msgstr "การแสดงผลแบบสไลด์โชว์สำหรับเว็บไซต์" #. Label of the slug (Data) field in DocType 'UTM Campaign' #. Label of the slug (Data) field in DocType 'UTM Medium' @@ -24036,23 +24225,23 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Small Text" -msgstr "" +msgstr "ข้อความเล็ก" #. Label of the smallest_currency_fraction_value (Currency) field in DocType #. 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Smallest Currency Fraction Value" -msgstr "" +msgstr "ค่าหน่วยย่อยของสกุลเงินที่เล็กที่สุด" #. Description of the 'Smallest Currency Fraction Value' (Currency) field in #. DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" -msgstr "" +msgstr "หน่วยเศษส่วนที่เล็กที่สุดที่หมุนเวียนได้ (เหรียญ) เช่น 1 เซ็นต์สำหรับ USD และควรป้อนเป็น 0.01" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "Snippet and more variables: {0}" -msgstr "" +msgstr "ข้อความย่อและตัวแปรเพิ่มเติม: {0}" #. Name of a DocType #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24177,23 +24376,23 @@ msgstr "" #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" -msgstr "" +msgstr "ชื่อต้นทาง" #. Label of the source_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json #: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "" +msgstr "ข้อความต้นทาง" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 msgid "Spacer" -msgstr "" +msgstr "ตัวเว้นวรรค" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Spam" -msgstr "" +msgstr "สแปม" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -24202,44 +24401,44 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" -msgstr "" +msgstr "ไม่อนุญาตอักขระพิเศษ" #: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" -msgstr "" +msgstr "ไม่อนุญาตอักขระพิเศษยกเว้น '-', '#', '.', '/', '{{' และ '}}' ในชุดการตั้งชื่อ {0}" #. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Specify a custom timeout, default timeout is 1500 seconds" -msgstr "" +msgstr "ระบุการหมดเวลาที่กำหนดเอง ค่าเริ่มต้นคือ 1500 วินาที" #. Description of the 'Allowed embedding domains' (Small Text) field in DocType #. 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." -msgstr "" +msgstr "ระบุโดเมนหรือแหล่งที่ได้รับอนุญาตให้ฝังฟอร์มนี้ ป้อนหนึ่งโดเมนต่อบรรทัด (เช่น https://example.com) หากไม่ได้ระบุโดเมน ฟอร์มสามารถฝังได้เฉพาะในแหล่งเดียวกัน" #. Label of the splash_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Splash Image" -msgstr "" +msgstr "ภาพสแปลช" #: frappe/desk/reportview.py:419 #: frappe/public/js/frappe/web_form/web_form_list.js:175 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" -msgstr "" +msgstr "ลำดับ" #: frappe/public/js/print_format_builder/Field.vue:143 #: frappe/public/js/print_format_builder/Field.vue:164 msgid "Sr No." -msgstr "" +msgstr "เลขลำดับ" #. Label of the stack_html (HTML) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder/recorder.js:82 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Stack Trace" -msgstr "" +msgstr "การติดตามสแต็ก" #. Label of the standard (Select) field in DocType 'Page' #. Label of the standard (Check) field in DocType 'Desktop Icon' @@ -24255,65 +24454,65 @@ msgstr "" #: frappe/printing/doctype/print_style/print_style.json #: frappe/website/doctype/web_template/web_template.json msgid "Standard" -msgstr "" +msgstr "มาตรฐาน" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." -msgstr "" +msgstr "ไม่สามารถลบประเภทเอกสารมาตรฐานได้" #: frappe/core/doctype/doctype/doctype.py:228 msgid "Standard DocType cannot have default print format, use Customize Form" -msgstr "" +msgstr "ประเภทเอกสารมาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นได้ ใช้การปรับแต่งฟอร์ม" #: frappe/desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" -msgstr "" +msgstr "ไม่ได้ตั้งค่ามาตรฐาน" #: frappe/core/page/permission_manager/permission_manager.js:132 msgid "Standard Permissions" -msgstr "" +msgstr "สิทธิ์มาตรฐาน" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" -msgstr "" +msgstr "ไม่สามารถอัปเดตรูปแบบการพิมพ์มาตรฐานได้" #: frappe/printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." -msgstr "" +msgstr "ไม่สามารถเปลี่ยนสไตล์การพิมพ์มาตรฐานได้ โปรดทำสำเนาเพื่อแก้ไข" #: frappe/desk/reportview.py:354 msgid "Standard Reports cannot be deleted" -msgstr "" +msgstr "ไม่สามารถลบรายงานมาตรฐานได้" #: frappe/desk/reportview.py:325 msgid "Standard Reports cannot be edited" -msgstr "" +msgstr "ไม่สามารถแก้ไขรายงานมาตรฐานได้" #. Label of the standard_menu_items (Section Break) field in DocType 'Portal #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Standard Sidebar Menu" -msgstr "" +msgstr "เมนูแถบด้านข้างมาตรฐาน" #: frappe/website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." -msgstr "" +msgstr "ไม่สามารถแก้ไขฟอร์มเว็บมาตรฐานได้ ให้ทำสำเนาฟอร์มเว็บแทน" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Standard rich text editor with controls" -msgstr "" +msgstr "โปรแกรมแก้ไขข้อความมาตรฐานพร้อมการควบคุม" #: frappe/core/doctype/role/role.py:46 msgid "Standard roles cannot be disabled" -msgstr "" +msgstr "ไม่สามารถปิดใช้งานบทบาทมาตรฐานได้" #: frappe/core/doctype/role/role.py:32 msgid "Standard roles cannot be renamed" -msgstr "" +msgstr "ไม่สามารถเปลี่ยนชื่อบทบาทมาตรฐานได้" #: frappe/core/doctype/user_type/user_type.py:61 msgid "Standard user type {0} can not be deleted." -msgstr "" +msgstr "ไม่สามารถลบประเภทผู้ใช้มาตรฐาน {0} ได้" #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24494,9 +24691,9 @@ msgstr "" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Status" -msgstr "" +msgstr "สถานะ" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24617,7 +24814,7 @@ msgstr "" #. Label of the subdomain (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Subdomain" -msgstr "" +msgstr "ซับโดเมน" #. Label of the subject (Data) field in DocType 'Auto Repeat' #. Label of the subject (Small Text) field in DocType 'Activity Log' @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,13 +24831,12 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" -msgstr "" +msgstr "หัวข้อ" #. Label of the subject_field (Data) field in DocType 'DocType' #. Label of the subject_field (Data) field in DocType 'Customize Form' @@ -24651,16 +24845,16 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/calendar_view/calendar_view.json msgid "Subject Field" -msgstr "" +msgstr "ฟิลด์หัวข้อ" #: frappe/core/doctype/doctype/doctype.py:1935 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" -msgstr "" +msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ" #. Name of a DocType #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Submission Queue" -msgstr "" +msgstr "คิวการส่ง" #. Label of the submit (Check) field in DocType 'Custom DocPerm' #. Label of the submit (Check) field in DocType 'DocPerm' @@ -24676,70 +24870,70 @@ msgstr "" #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 msgid "Submit" -msgstr "" +msgstr "ส่ง" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" -msgstr "" +msgstr "ส่ง" #: frappe/website/doctype/web_form/templates/web_form.html:47 msgctxt "Button in web form" msgid "Submit" -msgstr "" +msgstr "ส่ง" #: frappe/public/js/frappe/ui/dialog.js:62 msgctxt "Primary action in dialog" msgid "Submit" -msgstr "" +msgstr "ส่ง" #: frappe/public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" -msgstr "" +msgstr "ส่ง" #: frappe/public/js/frappe/desk.js:227 msgctxt "Submit password for Email Account" msgid "Submit" -msgstr "" +msgstr "ส่ง" #. Label of the submit_after_import (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Submit After Import" -msgstr "" +msgstr "ส่งหลังจากนำเข้า" #: frappe/core/page/permission_manager/permission_manager_help.html:39 msgid "Submit an Issue" -msgstr "" +msgstr "ส่งปัญหา" #: frappe/website/doctype/web_form/templates/web_form.html:156 msgctxt "Button in web form" msgid "Submit another response" -msgstr "" +msgstr "ส่งคำตอบอื่น" #. Label of the button_label (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Submit button label" -msgstr "" +msgstr "ป้ายกำกับปุ่มส่ง" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 msgid "Submit on Creation" -msgstr "" +msgstr "ส่งเมื่อสร้าง" #: frappe/public/js/frappe/widgets/onboarding_widget.js:395 msgid "Submit this document to complete this step." -msgstr "" +msgstr "ส่งเอกสารนี้เพื่อดำเนินการขั้นตอนนี้ให้เสร็จสิ้น" #: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" -msgstr "" +msgstr "ส่งเอกสารนี้เพื่อยืนยัน" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" -msgstr "" +msgstr "ส่งเอกสาร {0} หรือไม่?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -24747,36 +24941,36 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:539 #: frappe/website/doctype/web_form/templates/web_form.html:136 msgid "Submitted" -msgstr "" +msgstr "ส่งแล้ว" #: frappe/workflow/doctype/workflow/workflow.py:103 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" -msgstr "" +msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ แถวการเปลี่ยนผ่าน {0}" #: frappe/public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" -msgstr "" +msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ในขณะที่เปลี่ยนจาก สถานะ {0} เป็น สถานะ {1}" #: frappe/public/js/frappe/form/save.js:10 msgctxt "Freeze message while submitting a document" msgid "Submitting" -msgstr "" +msgstr "กำลังส่ง" #: frappe/desk/doctype/bulk_update/bulk_update.py:88 msgid "Submitting {0}" -msgstr "" +msgstr "กำลังส่ง {0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Subsidiary" -msgstr "" +msgstr "บริษัทในเครือ" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' #. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" -msgstr "" +msgstr "คำบรรยาย" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -24798,83 +24992,83 @@ msgstr "" #: frappe/workflow/doctype/workflow_action/workflow_action.py:171 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" -msgstr "" +msgstr "สำเร็จ" #. Name of a DocType #: frappe/core/doctype/success_action/success_action.json msgid "Success Action" -msgstr "" +msgstr "การดำเนินการสำเร็จ" #. Label of the success_message (Data) field in DocType 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Success Message" -msgstr "" +msgstr "ข้อความสำเร็จ" #. Label of the success_uri (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Success URI" -msgstr "" +msgstr "URI สำเร็จ" #. Label of the success_url (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success URL" -msgstr "" +msgstr "URL สำเร็จ" #. Label of the success_message (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success message" -msgstr "" +msgstr "ข้อความสำเร็จ" #. Label of the success_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success title" -msgstr "" +msgstr "ชื่อเรื่องสำเร็จ" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" -msgstr "" +msgstr "สำเร็จ! คุณพร้อมแล้ว 👍" #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" -msgstr "" +msgstr "จำนวนงานที่สำเร็จ" #: frappe/model/workflow.py:307 msgid "Successful Transactions" -msgstr "" +msgstr "ธุรกรรมที่สำเร็จ" #: frappe/model/rename_doc.py:699 msgid "Successful: {0} to {1}" -msgstr "" +msgstr "สำเร็จ: {0} ถึง {1}" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 msgid "Successfully Updated" -msgstr "" +msgstr "อัปเดตสำเร็จ" #: frappe/core/doctype/data_import/data_import.js:423 msgid "Successfully imported {0}" -msgstr "" +msgstr "นำเข้า {0} สำเร็จ" #: frappe/core/doctype/data_import/data_import.js:144 msgid "Successfully imported {0} out of {1} records." -msgstr "" +msgstr "นำเข้า {0} จาก {1} รายการสำเร็จ" #: frappe/desk/doctype/form_tour/form_tour.py:87 msgid "Successfully reset onboarding status for all users." -msgstr "" +msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งานสำหรับผู้ใช้ทั้งหมดสำเร็จ" #: frappe/public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" -msgstr "" +msgstr "อัปเดตการแปลสำเร็จ" #: frappe/core/doctype/data_import/data_import.js:431 msgid "Successfully updated {0}" -msgstr "" +msgstr "อัปเดต {0} สำเร็จ" #: frappe/core/doctype/data_import/data_import.js:149 msgid "Successfully updated {0} out of {1} records." -msgstr "" +msgstr "อัปเดต {0} จาก {1} รายการสำเร็จ" #: frappe/core/doctype/recorder/recorder.js:15 msgid "Suggest Optimizations" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -24924,143 +25118,143 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" -msgstr "" +msgstr "ระงับการส่ง" #: frappe/public/js/frappe/ui/capture.js:276 msgid "Switch Camera" -msgstr "" +msgstr "สลับกล้อง" #: frappe/public/js/frappe/desk.js:96 #: frappe/public/js/frappe/ui/theme_switcher.js:11 msgid "Switch Theme" -msgstr "" +msgstr "สลับธีม" #: frappe/templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" -msgstr "" +msgstr "สลับไปที่เดสก์" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" -msgstr "" +msgstr "สลับไปที่ Frappe CRM เพื่อการขายที่ชาญฉลาดขึ้น" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" -msgstr "" +msgstr "กำลังสลับกล้อง" #. Label of the symbol (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Symbol" -msgstr "" +msgstr "สัญลักษณ์" #. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' #. Label of the sync (Section Break) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Sync" -msgstr "" +msgstr "ซิงค์" #: frappe/integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" -msgstr "" +msgstr "ซิงค์ปฏิทิน" #: frappe/integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" -msgstr "" +msgstr "ซิงค์ผู้ติดต่อ" #. Label of the sync_as_public (Check) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Sync events from Google as public" -msgstr "" +msgstr "ซิงค์กิจกรรมจาก Google เป็นสาธารณะ" #: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" -msgstr "" +msgstr "ซิงค์เมื่อย้าย" #: frappe/integrations/doctype/google_calendar/google_calendar.py:312 msgid "Sync token was invalid and has been reset, Retry syncing." -msgstr "" +msgstr "โทเค็นซิงค์ไม่ถูกต้องและถูกรีเซ็ต ลองซิงค์อีกครั้ง" #. Label of the sync_with_google_calendar (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Sync with Google Calendar" -msgstr "" +msgstr "ซิงค์กับ Google ปฏิทิน" #. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Sync with Google Contacts" -msgstr "" +msgstr "ซิงค์กับ Google ผู้ติดต่อ" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" -msgstr "" +msgstr "ซิงค์ฟิลด์ {0}" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 msgid "Synced Fields" -msgstr "" +msgstr "ฟิลด์ที่ซิงค์แล้ว" #: frappe/integrations/doctype/google_calendar/google_calendar.js:31 #: frappe/integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" -msgstr "" +msgstr "กำลังซิงค์" #: frappe/integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" -msgstr "" +msgstr "กำลังซิงค์ {0} จาก {1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" -msgstr "" +msgstr "ข้อผิดพลาดทางไวยากรณ์" #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "System" -msgstr "" +msgstr "ระบบ" #. Name of a DocType #: frappe/desk/doctype/system_console/system_console.json #: frappe/public/js/frappe/ui/dropdown_console.js:4 msgid "System Console" -msgstr "" +msgstr "คอนโซลระบบ" #: frappe/custom/doctype/custom_field/custom_field.py:408 msgid "System Generated Fields can not be renamed" -msgstr "" +msgstr "ไม่สามารถเปลี่ยนชื่อฟิลด์ที่ระบบสร้างขึ้นได้" #. Label of a standard help item #. Type: Route #: frappe/hooks.py msgid "System Health" -msgstr "" +msgstr "สุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "System Health Report" -msgstr "" +msgstr "รายงานสุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json msgid "System Health Report Errors" -msgstr "" +msgstr "ข้อผิดพลาดรายงานสุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "System Health Report Failing Jobs" -msgstr "" +msgstr "งานที่ล้มเหลวในรายงานสุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "System Health Report Queue" -msgstr "" +msgstr "คิวรายงานสุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json msgid "System Health Report Tables" -msgstr "" +msgstr "ตารางรายงานสุขภาพระบบ" #. Name of a DocType #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "System Health Report Workers" -msgstr "" +msgstr "ผู้ปฏิบัติงานรายงานสุขภาพระบบ" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25212,38 +25407,43 @@ msgstr "" #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "System Manager" -msgstr "" +msgstr "ผู้จัดการระบบ" #: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." -msgstr "" +msgstr "ต้องการสิทธิ์ผู้จัดการระบบ" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "System Notification" -msgstr "" +msgstr "การแจ้งเตือนระบบ" #. Label of the system_page (Check) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "System Page" -msgstr "" +msgstr "หน้าระบบ" #. Name of a DocType #: frappe/core/doctype/system_settings/system_settings.json msgid "System Settings" -msgstr "" +msgstr "การตั้งค่าระบบ" #. Description of the 'Allow Roles' (Table MultiSelect) field in DocType #. 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "System managers are allowed by default" -msgstr "" +msgstr "ผู้จัดการระบบได้รับอนุญาตโดยค่าเริ่มต้น" #: frappe/public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,32 +25622,28 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" #: frappe/core/doctype/translation/test_translation.py:47 #: frappe/core/doctype/translation/test_translation.py:54 msgid "Test Data" -msgstr "" +msgstr "ข้อมูลทดสอบ" #. Label of the test_job_id (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Test Job ID" -msgstr "" +msgstr "รหัสงานทดสอบ" #: frappe/core/doctype/translation/test_translation.py:49 #: frappe/core/doctype/translation/test_translation.py:57 msgid "Test Spanish" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" +msgstr "ทดสอบภาษาสเปน" #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" -msgstr "" +msgstr "โฟลเดอร์ทดสอบ" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25460,22 +25656,22 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Text" -msgstr "" +msgstr "ข้อความ" #. Label of the text_align (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Text Align" -msgstr "" +msgstr "จัดแนวข้อความ" #. Label of the text_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "" +msgstr "สีข้อความ" #. Label of the text_content (Code) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Text Content" -msgstr "" +msgstr "เนื้อหาข้อความ" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25486,11 +25682,11 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Text Editor" -msgstr "" +msgstr "ตัวแก้ไขข้อความ" #: frappe/templates/emails/password_reset.html:5 msgid "Thank you" -msgstr "" +msgstr "ขอบคุณ" #: frappe/www/contact.py:39 msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" @@ -25500,27 +25696,23 @@ msgstr "" #: frappe/website/doctype/web_form/templates/web_form.html:140 msgid "Thank you for spending your valuable time to fill this form" -msgstr "" +msgstr "ขอบคุณที่สละเวลาของคุณในการกรอกแบบฟอร์มนี้" #: frappe/templates/emails/auto_reply.html:1 msgid "Thank you for your email" -msgstr "" +msgstr "ขอบคุณสำหรับอีเมลของคุณ" #: frappe/website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" +msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ!" #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" -msgstr "" +msgstr "ขอบคุณสำหรับข้อความของคุณ" #: frappe/templates/emails/new_user.html:16 msgid "Thanks" -msgstr "" +msgstr "ขอบคุณ" #: frappe/templates/emails/auto_repeat_fail.html:3 msgid "The Auto Repeat for this document has been disabled." @@ -25578,38 +25770,38 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" -msgstr "" +msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" -msgstr "" +msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" -msgstr "" +msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่" #: frappe/core/doctype/user_type/user_type.py:114 msgid "The role {0} should be a custom role." -msgstr "" +msgstr "บทบาท {0} ควรเป็นบทบาทที่กำหนดเอง" #: frappe/core/doctype/audit_trail/audit_trail.py:46 msgid "The selected document {0} is not a {1}." -msgstr "" +msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." -msgstr "" +msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่" #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." -msgstr "" +msgstr "ระบบมีบทบาทที่กำหนดไว้ล่วงหน้ามากมาย คุณสามารถเพิ่มบทบาทใหม่เพื่อกำหนดสิทธิ์ที่ละเอียดขึ้น" #: frappe/core/doctype/user_type/user_type.py:97 msgid "The total number of user document types limit has been crossed." -msgstr "" +msgstr "จำนวนประเภทเอกสารผู้ใช้ทั้งหมดเกินขีดจำกัดแล้ว" #: frappe/public/js/frappe/form/controls/data.js:25 msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." -msgstr "" +msgstr "ค่าที่คุณวางมีความยาว {0} ตัวอักษร จำนวนตัวอักษรสูงสุดที่อนุญาตคือ {1}" #. Description of the 'Condition' (Small Text) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "The webhook will be triggered if this expression is true" -msgstr "" +msgstr "Webhook จะถูกเรียกใช้หากนิพจน์นี้เป็นจริง" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 msgid "The {0} is already on auto repeat {1}" -msgstr "" +msgstr "{0} อยู่ในโหมดทำซ้ำอัตโนมัติ {1} แล้ว" #. Label of the section_break_6 (Section Break) field in DocType 'Website #. Settings' @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25802,145 +25994,151 @@ msgstr "" #: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" -msgstr "" +msgstr "มีปัญหากับ URL ของไฟล์: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" -msgstr "" +msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:" #: frappe/core/page/permission_manager/permission_manager.py:156 msgid "There must be atleast one permission rule." -msgstr "" +msgstr "ต้องมีอย่างน้อยหนึ่งกฎสิทธิ์" #: frappe/www/error.py:17 msgid "There was an error building this page" -msgstr "" +msgstr "เกิดข้อผิดพลาดในการสร้างหน้านี้" #: frappe/public/js/frappe/views/kanban/kanban_view.js:182 msgid "There was an error saving filters" -msgstr "" +msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง" #: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" -msgstr "" +msgstr "มีข้อผิดพลาด" #: frappe/public/js/frappe/views/interaction.js:277 msgid "There were errors while creating the document. Please try again." -msgstr "" +msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." -msgstr "" +msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง" #: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" -msgstr "" +msgstr "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ" #. Description of the 'Announcement Widget' (Text Editor) field in DocType #. 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "ประกาศเหล่านี้จะแสดงในข้อความแจ้งเตือนที่สามารถปิดได้ใต้แถบนำทาง" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." msgstr "" #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "These settings are required if 'Custom' LDAP Directory is used" -msgstr "" +msgstr "การตั้งค่าเหล่านี้จำเป็นหากใช้ไดเรกทอรี LDAP แบบกำหนดเอง" #. Description of the 'Defaults' (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." -msgstr "" +msgstr "ค่าดังกล่าวจะถูกอัปเดตโดยอัตโนมัติในธุรกรรมและยังมีประโยชน์ในการจำกัดสิทธิ์สำหรับผู้ใช้นี้ในธุรกรรมที่มีค่าดังกล่าว" #: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" -msgstr "" +msgstr "แอปพลิเคชันของบุคคลที่สาม" #. Label of the third_party_authentication (Section Break) field in DocType #. 'User' #: frappe/core/doctype/user/user.json msgid "Third Party Authentication" -msgstr "" +msgstr "การตรวจสอบสิทธิ์ของบุคคลที่สาม" #: frappe/geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" -msgstr "" +msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" -msgstr "" +msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว" #: frappe/public/js/frappe/ui/filters/filter.js:666 msgid "This Month" -msgstr "" +msgstr "เดือนนี้" #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" -msgstr "" +msgstr "ไตรมาสนี้" #: frappe/public/js/frappe/ui/filters/filter.js:662 msgid "This Week" -msgstr "" +msgstr "สัปดาห์นี้" #: frappe/public/js/frappe/ui/filters/filter.js:674 msgid "This Year" -msgstr "" +msgstr "ปีนี้" #: frappe/custom/doctype/customize_form/customize_form.js:220 msgid "This action is irreversible. Do you wish to continue?" -msgstr "" +msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" -msgstr "" +msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}" #: frappe/public/js/frappe/form/toolbar.js:117 #: frappe/public/js/frappe/model/model.js:706 msgid "This cannot be undone" -msgstr "" +msgstr "ไม่สามารถย้อนกลับได้" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "This card will be available to all Users if this is set" -msgstr "" +msgstr "การ์ดนี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้" #. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "This chart will be available to all Users if this is set" -msgstr "" +msgstr "แผนภูมินี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้" #: frappe/custom/doctype/customize_form/customize_form.js:212 msgid "This doctype has no orphan fields to trim" -msgstr "" +msgstr "ประเภทเอกสารนี้ไม่มีฟิลด์ที่ไม่ได้ใช้งานให้ตัดแต่ง" #: frappe/core/doctype/doctype/doctype.py:1054 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." -msgstr "" +msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." -msgstr "" +msgstr "ไม่สามารถลบเอกสารนี้ได้ในขณะนี้เนื่องจากกำลังถูกแก้ไขโดยผู้ใช้อื่น โปรดลองอีกครั้งหลังจากสักครู่" #: frappe/www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." -msgstr "" +msgstr "เอกสารนี้ถูกแก้ไขหลังจากส่งอีเมลแล้ว" #: frappe/public/js/frappe/form/form.js:1305 msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." -msgstr "" +msgstr "เอกสารนี้มีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งอาจไม่ปรากฏใน PDF สุดท้าย
พิจารณาบันทึกเอกสารก่อนพิมพ์" #: frappe/public/js/frappe/form/form.js:1102 msgid "This document is already amended, you cannot ammend it again" -msgstr "" +msgstr "เอกสารนี้ได้รับการแก้ไขแล้ว คุณไม่สามารถแก้ไขได้อีก" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." -msgstr "" +msgstr "เอกสารนี้ถูกล็อกและจัดคิวสำหรับการดำเนินการ โปรดลองอีกครั้งหลังจากสักครู่" #: frappe/templates/emails/auto_repeat_fail.html:7 msgid "This email is autogenerated" -msgstr "" +msgstr "อีเมลนี้ถูกสร้างขึ้นโดยอัตโนมัติ" #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 msgid "This feature can not be used as dependencies are missing.\n" @@ -25949,7 +26147,7 @@ msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "This feature is brand new and still experimental" -msgstr "" +msgstr "คุณลักษณะนี้เป็นของใหม่และยังอยู่ในขั้นทดลอง" #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' @@ -25962,138 +26160,130 @@ msgstr "" #: frappe/core/doctype/file/file.py:500 msgid "This file is attached to a protected document and cannot be deleted." -msgstr "" +msgstr "ไฟล์นี้แนบกับเอกสารที่ได้รับการป้องกันและไม่สามารถลบได้" #: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." -msgstr "" +msgstr "ไฟล์นี้เป็นสาธารณะและสามารถเข้าถึงได้โดยทุกคน แม้ไม่ได้เข้าสู่ระบบ ทำเครื่องหมายเป็นส่วนตัวเพื่อจำกัดการเข้าถึง" #: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." -msgstr "" +msgstr "ไฟล์นี้เป็นสาธารณะ สามารถเข้าถึงได้โดยไม่ต้องยืนยันตัวตน" #: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" -msgstr "" +msgstr "ฟอร์มนี้ถูกแก้ไขหลังจากที่คุณโหลดแล้ว" #: frappe/public/js/frappe/form/form.js:2257 msgid "This form is not editable due to a Workflow." -msgstr "" +msgstr "ฟอร์มนี้ไม่สามารถแก้ไขได้เนื่องจากเวิร์กโฟลว์" #. Description of the 'Is Default' (Check) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json msgid "This format is used if country specific format is not found" -msgstr "" +msgstr "รูปแบบนี้จะถูกใช้หากไม่พบรูปแบบเฉพาะประเทศ" #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 msgid "This geolocation provider is not supported yet." -msgstr "" +msgstr "ผู้ให้บริการตำแหน่งทางภูมิศาสตร์นี้ยังไม่ได้รับการสนับสนุน" #. Description of the 'Header' (HTML Editor) field in DocType 'Website #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "This goes above the slideshow." -msgstr "" +msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." -msgstr "" +msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่" #: frappe/utils/password_strength.py:158 msgid "This is a top-10 common password." -msgstr "" +msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 10 อันดับแรก" #: frappe/utils/password_strength.py:160 msgid "This is a top-100 common password." -msgstr "" +msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 100 อันดับแรก" #: frappe/utils/password_strength.py:162 msgid "This is a very common password." -msgstr "" +msgstr "นี่คือรหัสผ่านที่พบบ่อยมาก" #: frappe/core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." -msgstr "" +msgstr "นี่คือประเภทเอกสารเสมือนและข้อมูลจะถูกล้างเป็นระยะ" #: frappe/templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" -msgstr "" +msgstr "นี่คือการตอบกลับที่สร้างขึ้นโดยอัตโนมัติ" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "This is an example Google SERP Preview." -msgstr "" +msgstr "นี่คือตัวอย่างการแสดงผลใน Google SERP" #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." -msgstr "" +msgstr "นี่คล้ายกับรหัสผ่านที่ใช้บ่อย" #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "This is the number of the last created transaction with this prefix" -msgstr "" +msgstr "นี่คือตัวเลขของธุรกรรมล่าสุดที่สร้างด้วยคำนำหน้านี้" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 msgid "This link has already been activated for verification." -msgstr "" +msgstr "ลิงก์นี้ถูกเปิดใช้งานแล้วสำหรับการยืนยัน" #: frappe/utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." -msgstr "" +msgstr "ลิงก์นี้ไม่ถูกต้องหรือหมดอายุ โปรดตรวจสอบว่าคุณวางถูกต้อง" #: frappe/printing/page/print/print.js:410 msgid "This may get printed on multiple pages" -msgstr "" +msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า" #: frappe/utils/goal.py:109 msgid "This month" -msgstr "" +msgstr "เดือนนี้" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." -msgstr "" +msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน" #: frappe/templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" -msgstr "" +msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." -msgstr "" +msgstr "รายงานนี้ถูกสร้างขึ้น {0}" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." -msgstr "" +msgstr "คำขอนี้ยังไม่ได้รับการอนุมัติจากผู้ใช้" #: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." -msgstr "" +msgstr "ไซต์นี้อยู่ในโหมดอ่านอย่างเดียว ฟังก์ชันการทำงานทั้งหมดจะได้รับการคืนค่าในไม่ช้า" #: frappe/core/doctype/doctype/doctype.js:73 msgid "This site is running in developer mode. Any change made here will be updated in code." -msgstr "" +msgstr "ไซต์นี้กำลังทำงานในโหมดนักพัฒนา การเปลี่ยนแปลงใด ๆ ที่ทำที่นี่จะถูกอัปเดตในโค้ด" #: frappe/www/attribution.html:11 msgid "This software is built on top of many open source packages." -msgstr "" +msgstr "ซอฟต์แวร์นี้สร้างขึ้นบนพื้นฐานของแพ็คเกจโอเพ่นซอร์สมากมาย" #: frappe/website/doctype/web_page/web_page.js:71 msgid "This title will be used as the title of the webpage as well as in meta tags" -msgstr "" +msgstr "ชื่อนี้จะถูกใช้เป็นชื่อของหน้าเว็บรวมถึงในแท็กเมตา" #: frappe/public/js/frappe/form/controls/base_input.js:129 msgid "This value is fetched from {0}'s {1} field" -msgstr "" +msgstr "ค่านี้ถูกดึงมาจากฟิลด์ {1} ของ {0}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' @@ -26103,37 +26293,37 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" -msgstr "" +msgstr "สิ่งนี้จะถูกสร้างขึ้นโดยอัตโนมัติเมื่อคุณเผยแพร่หน้า คุณยังสามารถป้อนเส้นทางเองได้หากต้องการ" #. Description of the 'Callback Message' (Small Text) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown in a modal after routing" -msgstr "" +msgstr "สิ่งนี้จะแสดงในหน้าต่างโมดัลหลังจากการกำหนดเส้นทาง" #. Description of the 'Report Description' (Data) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "This will be shown to the user in a dialog after routing to the report" -msgstr "" +msgstr "สิ่งนี้จะแสดงให้ผู้ใช้เห็นในกล่องโต้ตอบหลังจากการกำหนดเส้นทางไปยังรายงาน" #: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" -msgstr "" +msgstr "สิ่งนี้จะออกจากระบบ {0} จากอุปกรณ์อื่นทั้งหมด" #: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." -msgstr "" +msgstr "สิ่งนี้จะลบข้อมูลของคุณอย่างถาวร" #: frappe/desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" -msgstr "" +msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้และแสดงให้ผู้ใช้ทุกคนเห็น คุณแน่ใจหรือไม่?" #: frappe/core/doctype/rq_job/rq_job.js:15 msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,21 +26635,21 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." -msgstr "" +msgstr "เพื่ออนุญาตให้รายงานเพิ่มเติมอัปเดตขีดจำกัดในการตั้งค่าระบบ" #. Label of the section_break_10 (Section Break) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "To and CC" -msgstr "" +msgstr "ถึงและสำเนา" #. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto #. Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." -msgstr "" +msgstr "เพื่อเริ่มช่วงวันที่ตั้งแต่ต้นช่วงเวลาที่เลือก ตัวอย่างเช่น หากเลือก 'ปี' เป็นช่วงเวลา รายงานจะเริ่มตั้งแต่วันที่ 1 มกราคมของปีปัจจุบัน" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." @@ -26470,44 +26657,44 @@ msgstr "" #: frappe/www/login.html:76 msgid "To enable it follow the instructions in the following link: {0}" -msgstr "" +msgstr "เพื่อเปิดใช้งาน ให้ทำตามคำแนะนำในลิงก์ต่อไปนี้: {0}" #: frappe/core/doctype/server_script/server_script.js:40 msgid "To enable server scripts, read the {0}." -msgstr "" +msgstr "เพื่อเปิดใช้งานสคริปต์เซิร์ฟเวอร์ อ่าน {0}" #: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 msgid "To export this step as JSON, link it in a Onboarding document and save the document." -msgstr "" +msgstr "เพื่อส่งออกขั้นตอนนี้เป็น JSON ให้ลิงก์ในเอกสารการเริ่มต้นใช้งานและบันทึกเอกสาร" #: frappe/email/doctype/email_account/email_account.js:126 msgid "To generate password click {0}" -msgstr "" +msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." -msgstr "" +msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}" #: frappe/email/doctype/email_account/email_account.js:139 msgid "To know more click {0}" -msgstr "" +msgstr "เพื่อทราบข้อมูลเพิ่มเติม คลิก {0}" #. Description of the 'Console' (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "To print output use print(text)" -msgstr "" +msgstr "เพื่อพิมพ์ผลลัพธ์ ใช้ print(text)" #: frappe/core/doctype/user_type/user_type.py:291 msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." -msgstr "" +msgstr "เพื่อกำหนดบทบาท {0} ในผู้ใช้ {1} โปรดตั้งค่าฟิลด์ {2} เป็น {3} ในระเบียน {4} หนึ่งรายการ" #: frappe/integrations/doctype/google_calendar/google_calendar.js:8 msgid "To use Google Calendar, enable {0}." -msgstr "" +msgstr "เพื่อใช้ Google ปฏิทิน ให้เปิดใช้งาน {0}" #: frappe/integrations/doctype/google_contacts/google_contacts.js:8 msgid "To use Google Contacts, enable {0}." -msgstr "" +msgstr "เพื่อใช้ Google ผู้ติดต่อ ให้เปิดใช้งาน {0}" #. Description of the 'Enable Google indexing' (Check) field in DocType #. 'Website Settings' @@ -26522,7 +26709,7 @@ msgstr "" #: frappe/public/js/frappe/utils/diffview.js:44 msgid "To version" -msgstr "" +msgstr "ถึงเวอร์ชัน" #. Label of a shortcut in the Tools Workspace #. Name of a DocType @@ -26531,119 +26718,125 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json msgid "ToDo" -msgstr "" +msgstr "สิ่งที่ต้องทำ" #: frappe/public/js/frappe/form/controls/date.js:58 #: frappe/public/js/frappe/ui/filters/filter.js:733 #: frappe/public/js/frappe/views/calendar/calendar.js:274 msgid "Today" -msgstr "" +msgstr "วันนี้" #: frappe/public/js/frappe/views/reports/report_view.js:1570 msgid "Toggle Chart" -msgstr "" +msgstr "สลับแผนภูมิ" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "Toggle Full Width" -msgstr "" +msgstr "สลับความกว้างเต็ม" #: frappe/public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" -msgstr "" +msgstr "สลับมุมมองตาราง" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 #: frappe/public/js/frappe/views/reports/report_view.js:1574 msgid "Toggle Sidebar" -msgstr "" +msgstr "สลับแถบด้านข้าง" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "" +msgstr "สลับแถบด้านข้าง" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "Toggle Theme" -msgstr "" +msgstr "สลับธีม" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" -msgstr "" +msgstr "โทเค็น" #. Name of a DocType #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Cache" +msgstr "แคชโทเค็น" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" msgstr "" #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" -msgstr "" +msgstr "ประเภทโทเค็น" #. Label of the token_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Token URI" -msgstr "" +msgstr "URI โทเค็น" #: frappe/utils/oauth.py:184 msgid "Token is missing" -msgstr "" +msgstr "โทเค็นหายไป" #: frappe/public/js/frappe/ui/filters/filter.js:739 msgid "Tomorrow" -msgstr "" +msgstr "พรุ่งนี้" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 #: frappe/model/workflow.py:254 msgid "Too Many Documents" -msgstr "" +msgstr "เอกสารมากเกินไป" #: frappe/rate_limiter.py:101 msgid "Too Many Requests" -msgstr "" +msgstr "คำขอมากเกินไป" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." -msgstr "" +msgstr "การเปลี่ยนแปลงฐานข้อมูลมากเกินไปในหนึ่งการกระทำ" #: frappe/utils/background_jobs.py:730 msgid "Too many queued background jobs ({0}). Please retry after some time." -msgstr "" +msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" -msgstr "" +msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง" #. Name of a Workspace #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "เครื่องมือ" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 msgid "Top" -msgstr "" +msgstr "บนสุด" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 msgid "Top 10" -msgstr "" +msgstr "10 อันดับแรก" #. Name of a DocType #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Top Bar Item" -msgstr "" +msgstr "รายการแถบบน" #. Label of the top_bar_items (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Top Bar Items" -msgstr "" +msgstr "รายการแถบบน" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26651,18 +26844,18 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 msgid "Top Center" -msgstr "" +msgstr "ศูนย์กลางบนสุด" #. Label of the top_errors (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Top Errors" -msgstr "" +msgstr "ข้อผิดพลาดสูงสุด" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 msgid "Top Left" -msgstr "" +msgstr "ซ้ายบน" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26670,68 +26863,55 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 msgid "Top Right" -msgstr "" +msgstr "ขวาบน" #. Label of the topic (Link) field in DocType 'Discussion Reply' #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Topic" -msgstr "" +msgstr "หัวข้อ" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" -msgstr "" +msgstr "รวม" #. Label of the total_background_workers (Int) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Background Workers" -msgstr "" +msgstr "รวมผู้ปฏิบัติงานพื้นหลัง" #. Label of the total_errors (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Errors (last 1 day)" -msgstr "" +msgstr "รวมข้อผิดพลาด (1 วันที่ผ่านมา)" #: frappe/public/js/frappe/ui/capture.js:259 msgid "Total Images" -msgstr "" +msgstr "รวมภาพ" #. Label of the total_outgoing_emails (Int) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Outgoing Emails" -msgstr "" - -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" +msgstr "รวมอีเมลขาออก" #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" -msgstr "" +msgstr "รวมผู้สมัครสมาชิก" #. Label of the total_users (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Users" -msgstr "" - -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" +msgstr "รวมผู้ใช้" #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" -msgstr "" +msgstr "รวมเวลาทำงาน" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' @@ -26741,15 +26921,15 @@ msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" -msgstr "" +msgstr "รวม:" #: frappe/public/js/frappe/views/reports/report_view.js:1256 msgid "Totals" -msgstr "" +msgstr "รวมทั้งหมด" #: frappe/public/js/frappe/views/reports/report_view.js:1231 msgid "Totals Row" -msgstr "" +msgstr "แถวรวม" #. Label of the trace_id (Data) field in DocType 'Error Log' #: frappe/core/doctype/error_log/error_log.json @@ -26806,50 +26986,50 @@ msgstr "" #. Description of a DocType #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Track milestones for any document" -msgstr "" +msgstr "ติดตามเหตุการณ์สำคัญสำหรับเอกสารใด ๆ" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" -msgstr "" +msgstr "URL การติดตามถูกสร้างและคัดลอกไปยังคลิปบอร์ด" #. Label of the transaction_hash (Small Text) field in DocType 'Transaction #. Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Hash" -msgstr "" +msgstr "แฮชธุรกรรม" #. Name of a DocType #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" -msgstr "" +msgstr "บันทึกธุรกรรม" #. Name of a report #: frappe/core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" -msgstr "" +msgstr "รายงานบันทึกธุรกรรม" #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" -msgstr "" +msgstr "คนข้ามเพศ" #: frappe/public/js/workflow_builder/components/Properties.vue:19 msgid "Transition Properties" -msgstr "" +msgstr "คุณสมบัติการเปลี่ยนผ่าน" #. Label of the transition_rules (Section Break) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transition Rules" -msgstr "" +msgstr "กฎการเปลี่ยนผ่าน" #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "" +msgstr "การเปลี่ยนผ่าน" #. Label of the translatable (Check) field in DocType 'DocField' #. Label of the translatable (Check) field in DocType 'Custom Field' @@ -26858,39 +27038,44 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Translatable" -msgstr "" +msgstr "สามารถแปลได้" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" -msgstr "" +msgstr "แปลข้อมูล" #. Label of the translated_doctype (Check) field in DocType 'DocType' #. Label of the translated_doctype (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Translate Link Fields" -msgstr "" +msgstr "แปลฟิลด์ลิงก์" #: frappe/public/js/frappe/views/reports/report_view.js:1656 msgid "Translate values" -msgstr "" +msgstr "แปลค่า" #: frappe/public/js/frappe/views/translation_manager.js:11 msgid "Translate {0}" -msgstr "" +msgstr "แปล {0}" #. Label of the translated_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "" +msgstr "ข้อความที่แปลแล้ว" #. Name of a DocType #: frappe/core/doctype/translation/translation.json msgid "Translation" -msgstr "" +msgstr "การแปล" #: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" +msgstr "การแปล" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' @@ -27114,35 +27299,67 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" +msgstr "URL ของหน้า" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." msgstr "" #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" -msgstr "" +msgstr "URL ที่จะไปเมื่อคลิกที่ภาพสไลด์โชว์" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" -msgstr "" +msgstr "แคมเปญ UTM" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" -msgstr "" +msgstr "สื่อ UTM" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" -msgstr "" +msgstr "แหล่งที่มา UTM" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -27151,75 +27368,79 @@ msgstr "" #: frappe/desk/form/document_follow.py:79 msgid "Un-following document {0}" -msgstr "" +msgstr "เลิกติดตามเอกสาร {0}" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" -msgstr "" +msgstr "ไม่สามารถหา DocType {0} ได้" #: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." -msgstr "" +msgstr "ไม่สามารถโหลดกล้องได้" #: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" -msgstr "" +msgstr "ไม่สามารถโหลด: {0}" #: frappe/utils/csvutils.py:37 msgid "Unable to open attached file. Did you export it as CSV?" -msgstr "" +msgstr "ไม่สามารถเปิดไฟล์ที่แนบมาได้ คุณได้ส่งออกเป็น CSV หรือไม่?" #: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" -msgstr "" +msgstr "ไม่สามารถอ่านรูปแบบไฟล์สำหรับ {0}" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" -msgstr "" +msgstr "ไม่สามารถส่งอีเมลได้เนื่องจากไม่มีบัญชีอีเมล โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจาก การตั้งค่า > บัญชีอีเมล" #: frappe/public/js/frappe/views/calendar/calendar.js:450 msgid "Unable to update event" -msgstr "" +msgstr "ไม่สามารถอัปเดตกิจกรรมได้" #: frappe/core/doctype/file/file.py:464 msgid "Unable to write file format for {0}" -msgstr "" +msgstr "ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0}" #. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Unassign Condition" -msgstr "" +msgstr "ยกเลิกการกำหนดเงื่อนไข" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" -msgstr "" +msgstr "ข้อยกเว้นที่ไม่ได้จับ" #: frappe/public/js/frappe/form/toolbar.js:103 msgid "Unchanged" -msgstr "" +msgstr "ไม่เปลี่ยนแปลง" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" -msgstr "" +msgstr "เลิกทำ" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" +msgstr "เลิกทำการกระทำล่าสุด" + +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" -msgstr "" +msgstr "เลิกติดตาม" #. Name of a DocType #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" -msgstr "" +msgstr "อีเมลที่ไม่ได้จัดการ" #. Label of the unhandled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Unhandled Emails" -msgstr "" +msgstr "อีเมลที่ไม่ได้จัดการ" #. Label of the unique (Check) field in DocType 'DocField' #. Label of the unique (Check) field in DocType 'Custom Field' @@ -27228,76 +27449,83 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Unique" +msgstr "ไม่ซ้ำ" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." msgstr "" #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" -msgstr "" +msgstr "ไม่ทราบ" #: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" -msgstr "" +msgstr "คอลัมน์ที่ไม่ทราบ: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" -msgstr "" +msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}" #: frappe/auth.py:316 msgid "Unknown User" -msgstr "" +msgstr "ผู้ใช้ที่ไม่ทราบ" #: frappe/utils/csvutils.py:54 msgid "Unknown file encoding. Tried to use: {0}" -msgstr "" +msgstr "การเข้ารหัสไฟล์ที่ไม่ทราบ พยายามใช้: {0}" #: frappe/core/doctype/submission_queue/submission_queue.js:7 msgid "Unlock Reference Document" -msgstr "" +msgstr "ปลดล็อกเอกสารอ้างอิง" #: frappe/public/js/frappe/form/footer/form_timeline.js:632 #: frappe/website/doctype/blog_post/blog_post.js:36 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" -msgstr "" +msgstr "ยกเลิกการเผยแพร่" #. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Unread" -msgstr "" +msgstr "ยังไม่ได้อ่าน" #. Label of the unread_notification_sent (Check) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Unread Notification Sent" -msgstr "" +msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว" #: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" -msgstr "" +msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย" #: frappe/public/js/frappe/data_import/data_exporter.js:159 #: frappe/public/js/frappe/form/controls/multicheck.js:166 msgid "Unselect All" -msgstr "" +msgstr "ยกเลิกการเลือกทั้งหมด" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Unshared" -msgstr "" +msgstr "ไม่ได้แชร์" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" -msgstr "" +msgstr "ยกเลิกการสมัครสมาชิก" #. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Unsubscribe Method" -msgstr "" +msgstr "วิธียกเลิกการสมัครสมาชิก" #. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Unsubscribe Params" -msgstr "" +msgstr "พารามิเตอร์ยกเลิกการสมัครสมาชิก" #. Label of the unsubscribed (Check) field in DocType 'Contact' #. Label of the unsubscribed (Check) field in DocType 'User' @@ -27305,29 +27533,34 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" +msgstr "ยกเลิกการสมัครสมาชิกแล้ว" + +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" msgstr "" #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" -msgstr "" +msgstr "คอลัมน์ที่ไม่มีชื่อ" #: frappe/core/doctype/file/file.js:38 msgid "Unzip" -msgstr "" +msgstr "แตกไฟล์ซิป" #: frappe/public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" -msgstr "" +msgstr "แตกไฟล์ {0} แล้ว" #: frappe/public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." -msgstr "" +msgstr "กำลังแตกไฟล์..." #: frappe/desk/doctype/event/event.py:269 msgid "Upcoming Events for Today" -msgstr "" +msgstr "กิจกรรมที่กำลังจะมาถึงสำหรับวันนี้" #. Label of the update (Button) field in DocType 'Document Naming Settings' #: frappe/core/doctype/data_import/data_import_list.js:36 @@ -27341,73 +27574,73 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:765 #: frappe/public/js/frappe/form/grid_row.js:411 msgid "Update" -msgstr "" +msgstr "อัปเดต" #. Label of the update_amendment_naming (Button) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "" +msgstr "อัปเดตการตั้งชื่อการแก้ไข" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Update Existing Records" -msgstr "" +msgstr "อัปเดตระเบียนที่มีอยู่" #. Label of the update_field (Select) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Field" -msgstr "" +msgstr "อัปเดตฟิลด์" #: frappe/core/doctype/installed_applications/installed_applications.js:6 #: frappe/core/doctype/installed_applications/installed_applications.js:13 msgid "Update Hooks Resolution Order" -msgstr "" +msgstr "อัปเดตลำดับการแก้ไข Hooks" #: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" -msgstr "" +msgstr "อัปเดตคำสั่งซื้อ" #: frappe/desk/page/setup_wizard/setup_wizard.js:494 msgid "Update Password" -msgstr "" +msgstr "อัปเดตรหัสผ่าน" #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "" +msgstr "อัปเดตตัวนับซีรีส์" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "" +msgstr "อัปเดตหมายเลขซีรีส์" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Update Settings" -msgstr "" +msgstr "อัปเดตการตั้งค่า" #: frappe/public/js/frappe/views/translation_manager.js:13 msgid "Update Translations" -msgstr "" +msgstr "อัปเดตการแปล" #. Label of the update_value (Small Text) field in DocType 'Bulk Update' #. Label of the update_value (Data) field in DocType 'Workflow Document State' #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Update Value" -msgstr "" +msgstr "อัปเดตค่า" #: frappe/utils/change_log.py:381 msgid "Update from Frappe Cloud" -msgstr "" +msgstr "อัปเดตจาก Frappe Cloud" #: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" -msgstr "" +msgstr "อัปเดตระเบียน {0}" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Permission Log' @@ -27417,93 +27650,93 @@ msgstr "" #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 #: frappe/public/js/frappe/web_form/web_form.js:427 msgid "Updated" -msgstr "" +msgstr "อัปเดตแล้ว" #: frappe/desk/doctype/bulk_update/bulk_update.js:32 msgid "Updated Successfully" -msgstr "" +msgstr "อัปเดตสำเร็จ" #: frappe/public/js/frappe/desk.js:452 msgid "Updated To A New Version 🎉" -msgstr "" +msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉" #: frappe/public/js/frappe/list/bulk_operations.js:372 msgid "Updated successfully" -msgstr "" +msgstr "อัปเดตสำเร็จ" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" -msgstr "" +msgstr "กำลังอัปเดต" #: frappe/public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" msgid "Updating" -msgstr "" +msgstr "กำลังอัปเดต" #: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." -msgstr "" +msgstr "กำลังอัปเดตสถานะคิวอีเมล อีเมลจะถูกดึงขึ้นในรอบที่กำหนดถัดไป" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" -msgstr "" +msgstr "การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง" #: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" -msgstr "" +msgstr "กำลังอัปเดตการตั้งค่าทั่วโลก" #: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 msgid "Updating naming series options" -msgstr "" +msgstr "กำลังอัปเดตตัวเลือกซีรีส์การตั้งชื่อ" #: frappe/public/js/frappe/form/toolbar.js:136 msgid "Updating related fields..." -msgstr "" +msgstr "กำลังอัปเดตฟิลด์ที่เกี่ยวข้อง..." #: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" -msgstr "" +msgstr "กำลังอัปเดต {0}" #: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" -msgstr "" +msgstr "กำลังอัปเดต {0} ของ {1}, {2}" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" -msgstr "" +msgstr "อัปเกรดแผน" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" -msgstr "" +msgstr "อัปเกรดประสบการณ์การสนับสนุนของคุณด้วย Frappe Helpdesk" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" -msgstr "" +msgstr "อัปโหลด" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 msgid "Upload Image" -msgstr "" +msgstr "อัปโหลดภาพ" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 msgid "Upload file" -msgstr "" +msgstr "อัปโหลดไฟล์" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 msgid "Upload {0} files" -msgstr "" +msgstr "อัปโหลดไฟล์ {0}" #. Label of the uploaded_to_dropbox (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Dropbox" -msgstr "" +msgstr "อัปโหลดไปยัง Dropbox" #. Label of the uploaded_to_google_drive (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Google Drive" -msgstr "" +msgstr "อัปโหลดไปยัง Google Drive" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' @@ -27515,41 +27748,41 @@ msgstr "" #. Label of the ascii_encode_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "" +msgstr "ใช้การเข้ารหัส ASCII สำหรับรหัสผ่าน" #. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Use First Day of Period" -msgstr "" +msgstr "ใช้วันแรกของช่วงเวลา" #. Label of the use_html (Check) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" -msgstr "" +msgstr "ใช้ HTML" #. Label of the use_imap (Check) field in DocType 'Email Account' #. Label of the use_imap (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use IMAP" -msgstr "" +msgstr "ใช้ IMAP" #. Label of the use_number_format_from_currency (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Use Number Format from Currency" -msgstr "" +msgstr "ใช้รูปแบบตัวเลขจากสกุลเงิน" #. Label of the use_post (Check) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Use POST" -msgstr "" +msgstr "ใช้ POST" #. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Use Report Chart" -msgstr "" +msgstr "ใช้แผนภูมิรายงาน" #. Label of the use_ssl (Check) field in DocType 'Email Account' #. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' @@ -27558,63 +27791,63 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use SSL" -msgstr "" +msgstr "ใช้ SSL" #. Label of the use_starttls (Check) field in DocType 'Email Account' #. Label of the use_starttls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" -msgstr "" +msgstr "ใช้ STARTTLS" #. Label of the use_tls (Check) field in DocType 'Email Account' #. Label of the use_tls (Check) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use TLS" -msgstr "" +msgstr "ใช้ TLS" #: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." -msgstr "" +msgstr "ใช้คำไม่กี่คำ หลีกเลี่ยงวลีทั่วไป" #. Label of the login_id_is_different (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use different Email ID" -msgstr "" +msgstr "ใช้รหัสอีเมลที่แตกต่าง" #. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Use if the default settings don't seem to detect your data correctly" -msgstr "" +msgstr "ใช้หากการตั้งค่าเริ่มต้นดูเหมือนจะไม่ตรวจจับข้อมูลของคุณอย่างถูกต้อง" #: frappe/model/db_query.py:435 msgid "Use of function {0} in field is restricted" -msgstr "" +msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถูกจำกัด" #: frappe/model/db_query.py:412 msgid "Use of sub-query or function is restricted" -msgstr "" +msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด" #: frappe/printing/page/print/print.js:279 msgid "Use the new Print Format Builder" -msgstr "" +msgstr "ใช้ตัวสร้างรูปแบบการพิมพ์ใหม่" #. Description of the 'Title Field' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Use this fieldname to generate title" -msgstr "" +msgstr "ใช้ชื่อนี้เพื่อสร้างชื่อเรื่อง" #. Description of the 'Always BCC Address' (Data) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use this, for example, if all sent emails should also be send to an archive." -msgstr "" +msgstr "ใช้สิ่งนี้ ตัวอย่างเช่น หากอีเมลที่ส่งทั้งหมดควรถูกส่งไปยังที่เก็บถาวรด้วย" #. Label of the used_oauth (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" -msgstr "" +msgstr "ใช้ OAuth แล้ว" #. Label of the user (Link) field in DocType 'Assignment Rule User' #. Label of the user (Link) field in DocType 'Reminder' @@ -27673,7 +27906,7 @@ msgstr "" #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" -msgstr "" +msgstr "ผู้ใช้" #. Label of the user (Link) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -27682,7 +27915,7 @@ msgstr "" #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" -msgstr "" +msgstr "ผู้ใช้ '{0}' มีบทบาท '{1}' อยู่แล้ว" #. Name of a DocType #: frappe/core/doctype/report/user_activity_report.json @@ -27697,172 +27930,172 @@ msgstr "" #. Label of the user_agent (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "User Agent" -msgstr "" +msgstr "ตัวแทนผู้ใช้" #. Label of the in_create (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Create" -msgstr "" +msgstr "ผู้ใช้ไม่สามารถสร้างได้" #. Label of the read_only (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Search" -msgstr "" +msgstr "ผู้ใช้ไม่สามารถค้นหาได้" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" -msgstr "" +msgstr "ผู้ใช้เปลี่ยนแปลง" #. Label of the defaults (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "" +msgstr "ค่าเริ่มต้นของผู้ใช้" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Details" -msgstr "" +msgstr "รายละเอียดผู้ใช้" #. Name of a report #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json msgid "User Doctype Permissions" -msgstr "" +msgstr "สิทธิ์ประเภทเอกสารของผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_document_type/user_document_type.json msgid "User Document Type" -msgstr "" +msgstr "ประเภทเอกสารของผู้ใช้" #: frappe/core/doctype/user_type/user_type.py:98 msgid "User Document Types Limit Exceeded" -msgstr "" +msgstr "เกินขีดจำกัดประเภทเอกสารของผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_email/user_email.json msgid "User Email" -msgstr "" +msgstr "อีเมลผู้ใช้" #. Label of the user_emails (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Emails" -msgstr "" +msgstr "อีเมลผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_group/user_group.json msgid "User Group" -msgstr "" +msgstr "กลุ่มผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_group_member/user_group_member.json msgid "User Group Member" -msgstr "" +msgstr "สมาชิกกลุ่มผู้ใช้" #. Label of the user_group_members (Table MultiSelect) field in DocType 'User #. Group' #: frappe/core/doctype/user_group/user_group.json msgid "User Group Members" -msgstr "" +msgstr "สมาชิกกลุ่มผู้ใช้" #. Label of the userid (Data) field in DocType 'User Social Login' #: frappe/core/doctype/user_social_login/user_social_login.json msgid "User ID" -msgstr "" +msgstr "รหัสผู้ใช้" #. Label of the user_id_property (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "User ID Property" -msgstr "" +msgstr "คุณสมบัติรหัสผู้ใช้" #. Description of a DocType #: frappe/website/doctype/blogger/blogger.json msgid "User ID of a Blogger" -msgstr "" +msgstr "รหัสผู้ใช้ของบล็อกเกอร์" #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" -msgstr "" +msgstr "รหัสผู้ใช้" #. Label of the user_id_field (Select) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "User Id Field" -msgstr "" +msgstr "ฟิลด์รหัสผู้ใช้" #: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" -msgstr "" +msgstr "ฟิลด์รหัสผู้ใช้เป็นสิ่งจำเป็นในประเภทผู้ใช้ {0}" #. Label of the user_image (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Image" -msgstr "" +msgstr "ภาพผู้ใช้" #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" -msgstr "" +msgstr "เมนูผู้ใช้" #. Label of the user_name (Data) field in DocType 'Personal Data Download #. Request' #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "User Name" -msgstr "" +msgstr "ชื่อผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" -msgstr "" +msgstr "สิทธิ์ของผู้ใช้" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" -msgstr "" +msgstr "สิทธิ์ของผู้ใช้" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" -msgstr "" +msgstr "สิทธิ์ของผู้ใช้" #: frappe/core/page/permission_manager/permission_manager_help.html:32 msgid "User Permissions are used to limit users to specific records." -msgstr "" +msgstr "สิทธิ์ของผู้ใช้ใช้เพื่อจำกัดผู้ใช้ให้เข้าถึงระเบียนเฉพาะ" #: frappe/core/doctype/user_permission/user_permission_list.js:124 msgid "User Permissions created successfully" -msgstr "" +msgstr "สร้างสิทธิ์ของผู้ใช้สำเร็จ" #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" -msgstr "" +msgstr "บทบาทของผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_role_profile/user_role_profile.json msgid "User Role Profile" -msgstr "" +msgstr "โปรไฟล์บทบาทของผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" -msgstr "" +msgstr "ผู้ใช้เลือกประเภทเอกสาร" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "User Settings" -msgstr "" +msgstr "การตั้งค่าผู้ใช้" #. Name of a DocType #: frappe/core/doctype/user_social_login/user_social_login.json msgid "User Social Login" -msgstr "" +msgstr "การเข้าสู่ระบบโซเชียลของผู้ใช้" #. Label of the _user_tags (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "User Tags" -msgstr "" +msgstr "แท็กผู้ใช้" #. Label of the user_type (Link) field in DocType 'User' #. Name of a DocType @@ -27870,106 +28103,106 @@ msgstr "" #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:83 msgid "User Type" -msgstr "" +msgstr "ประเภทผู้ใช้" #. Label of the user_type_modules (Table) field in DocType 'User Type' #. Name of a DocType #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type_module/user_type_module.json msgid "User Type Module" -msgstr "" +msgstr "โมดูลประเภทผู้ใช้" #. Description of the 'Allow Login using Mobile Number' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or Mobile number" -msgstr "" +msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือหมายเลขโทรศัพท์มือถือ" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or User Name" -msgstr "" +msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือชื่อผู้ใช้" #: frappe/templates/includes/login/login.js:292 msgid "User does not exist." -msgstr "" +msgstr "ผู้ใช้ไม่มีอยู่" #: frappe/core/doctype/user_type/user_type.py:83 msgid "User does not have permission to create the new {0}" -msgstr "" +msgstr "ผู้ใช้ไม่มีสิทธิ์สร้าง {0} ใหม่" #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" -msgstr "" +msgstr "ผู้ใช้เป็นสิ่งจำเป็นสำหรับการแชร์" #. Label of the user_must_always_select (Check) field in DocType 'Document #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "User must always select" -msgstr "" +msgstr "ผู้ใช้ต้องเลือกเสมอ" #: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" -msgstr "" +msgstr "สิทธิ์ของผู้ใช้มีอยู่แล้ว" #: frappe/www/login.py:171 msgid "User with email address {0} does not exist" -msgstr "" +msgstr "ผู้ใช้ที่มีที่อยู่อีเมล {0} ไม่มีอยู่" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." -msgstr "" +msgstr "ผู้ใช้ที่มีอีเมล: {0} ไม่มีอยู่ในระบบ โปรดขอให้ 'ผู้ดูแลระบบ' สร้างผู้ใช้ให้คุณ" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" -msgstr "" +msgstr "ไม่สามารถลบผู้ใช้ {0} ได้" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" -msgstr "" +msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" -msgstr "" +msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้" #: frappe/permissions.py:139 msgid "User {0} does not have access to this document" -msgstr "" +msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงเอกสารนี้" #: frappe/permissions.py:162 msgid "User {0} does not have doctype access via role permission for document {1}" -msgstr "" +msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงประเภทเอกสารผ่านสิทธิ์บทบาทสำหรับเอกสาร {1}" #: frappe/desk/doctype/workspace/workspace.py:275 msgid "User {0} does not have the permission to create a Workspace." -msgstr "" +msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้างพื้นที่ทำงาน" #: frappe/templates/emails/data_deletion_approval.html:1 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 msgid "User {0} has requested for data deletion" -msgstr "" +msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" -msgstr "" +msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}" #: frappe/utils/oauth.py:269 msgid "User {0} is disabled" -msgstr "" +msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน" #: frappe/sessions.py:242 msgid "User {0} is disabled. Please contact your System Manager." -msgstr "" +msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน โปรดติดต่อผู้จัดการระบบของคุณ" #: frappe/desk/form/assign_to.py:104 msgid "User {0} is not permitted to access this document." -msgstr "" +msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาตให้เข้าถึงเอกสารนี้" #. Label of the userinfo_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Userinfo URI" -msgstr "" +msgstr "URI ข้อมูลผู้ใช้" #. Label of the username (Data) field in DocType 'User' #. Label of the username (Data) field in DocType 'User Social Login' @@ -27977,11 +28210,11 @@ msgstr "" #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/www/login.py:110 msgid "Username" -msgstr "" +msgstr "ชื่อผู้ใช้" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" -msgstr "" +msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว" #. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' #. Name of a Workspace @@ -27992,7 +28225,7 @@ msgstr "" #: frappe/core/workspace/users/users.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Users" -msgstr "" +msgstr "ผู้ใช้" #. Description of the 'Protect Attached Files' (Check) field in DocType #. 'DocType' @@ -28001,25 +28234,25 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." -msgstr "" +msgstr "ผู้ใช้สามารถลบไฟล์ที่แนบมาได้เฉพาะเมื่อเอกสารอยู่ในร่างหรือถูกยกเลิก และพวกเขายังสามารถลบเอกสารได้" #: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" -msgstr "" +msgstr "ผู้ใช้ที่มีบทบาท {0}:" #: frappe/public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" -msgstr "" +msgstr "ใช้ธีมของระบบเพื่อสลับระหว่างโหมดสว่างและมืด" #: frappe/public/js/frappe/desk.js:154 msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." -msgstr "" +msgstr "การใช้คอนโซลนี้อาจทำให้ผู้โจมตีปลอมตัวเป็นคุณและขโมยข้อมูลของคุณได้ อย่าป้อนหรือวางโค้ดที่คุณไม่เข้าใจ" #. Label of the utilization (Percent) field in DocType 'System Health Report #. Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Utilization" -msgstr "" +msgstr "การใช้งาน" #. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -28030,27 +28263,27 @@ msgstr "" #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Valid" -msgstr "" +msgstr "ถูกต้อง" #: frappe/templates/includes/login/login.js:52 #: frappe/templates/includes/login/login.js:65 msgid "Valid Login id required." -msgstr "" +msgstr "ต้องการรหัสเข้าสู่ระบบที่ถูกต้อง" #: frappe/templates/includes/login/login.js:39 msgid "Valid email and name required" -msgstr "" +msgstr "ต้องการอีเมลและชื่อที่ถูกต้อง" #. Label of the validate_action (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Validate Field" -msgstr "" +msgstr "ตรวจสอบฟิลด์" #. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Validate Frappe Mail Settings" -msgstr "" +msgstr "ตรวจสอบการตั้งค่าอีเมล Frappe" #. Label of the validate_ssl_certificate (Check) field in DocType 'Email #. Account' @@ -28061,16 +28294,16 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Validate SSL Certificate" -msgstr "" +msgstr "ตรวจสอบใบรับรอง SSL" #: frappe/public/js/frappe/web_form/web_form.js:360 msgid "Validation Error" -msgstr "" +msgstr "ข้อผิดพลาดในการตรวจสอบ" #. Label of the validity (Select) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Validity" -msgstr "" +msgstr "ความถูกต้อง" #. Label of the value (Data) field in DocType 'Milestone' #. Label of the defvalue (Text) field in DocType 'DefaultValue' @@ -28097,87 +28330,93 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.js:197 #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Value" -msgstr "" +msgstr "ค่า" #. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Value Based On" -msgstr "" +msgstr "ค่าตาม" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Change" -msgstr "" +msgstr "การเปลี่ยนแปลงค่า" #. Label of the value_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Changed" -msgstr "" +msgstr "ค่าที่เปลี่ยนแปลง" #. Label of the property_value (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value To Be Set" -msgstr "" +msgstr "ค่าที่จะตั้ง" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" -msgstr "" +msgstr "ค่าไม่สามารถเปลี่ยนแปลงได้สำหรับ {0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" -msgstr "" +msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" -msgstr "" +msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ {0}: {1}" #: frappe/custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" -msgstr "" +msgstr "ค่าของฟิลด์ตรวจสอบสามารถเป็น 0 หรือ 1" #: frappe/custom/doctype/customize_form/customize_form.py:611 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" -msgstr "" +msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร" #: frappe/model/base_document.py:445 msgid "Value for {0} cannot be a list" -msgstr "" +msgstr "ค่าของ {0} ไม่สามารถเป็นรายการได้" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Value from this field will be set as the due date in the ToDo" -msgstr "" +msgstr "ค่าจากฟิลด์นี้จะถูกตั้งเป็นวันที่ครบกำหนดใน ToDo" #: frappe/core/doctype/data_import/importer.py:714 msgid "Value must be one of {0}" +msgstr "ค่าต้องเป็นหนึ่งใน {0}" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." msgstr "" #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" -msgstr "" +msgstr "ค่าที่จะตรวจสอบ" #: frappe/model/base_document.py:1124 msgid "Value too big" -msgstr "" +msgstr "ค่ามากเกินไป" #: frappe/core/doctype/data_import/importer.py:727 msgid "Value {0} missing for {1}" -msgstr "" +msgstr "ค่า {0} หายไปสำหรับ {1}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" -msgstr "" +msgstr "ค่า {0} ต้องอยู่ในรูปแบบระยะเวลาที่ถูกต้อง: d h m s" #: frappe/core/doctype/data_import/importer.py:745 #: frappe/core/doctype/data_import/importer.py:760 msgid "Value {0} must in {1} format" -msgstr "" +msgstr "ค่า {0} ต้องอยู่ในรูปแบบ {1}" #: frappe/core/doctype/version/version_view.html:8 msgid "Values Changed" -msgstr "" +msgstr "ค่าที่เปลี่ยนแปลง" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -28186,114 +28425,114 @@ msgstr "" #: frappe/templates/includes/login/login.js:333 msgid "Verification" -msgstr "" +msgstr "การตรวจสอบ" #: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 msgid "Verification Code" -msgstr "" +msgstr "รหัสการตรวจสอบ" #: frappe/templates/emails/delete_data_confirmation.html:10 msgid "Verification Link" -msgstr "" +msgstr "ลิงก์การตรวจสอบ" #: frappe/templates/includes/login/login.js:383 msgid "Verification code email not sent. Please contact Administrator." -msgstr "" +msgstr "อีเมลรหัสการตรวจสอบไม่ได้ส่ง โปรดติดต่อผู้ดูแลระบบ" #: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." -msgstr "" +msgstr "รหัสการตรวจสอบถูกส่งไปยังที่อยู่อีเมลที่ลงทะเบียนของคุณแล้ว" #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "" +msgstr "ตรวจสอบแล้ว" #: frappe/public/js/frappe/ui/messages.js:359 #: frappe/templates/includes/login/login.js:337 msgid "Verify" -msgstr "" +msgstr "ตรวจสอบ" #: frappe/public/js/frappe/ui/messages.js:358 msgid "Verify Password" -msgstr "" +msgstr "ตรวจสอบรหัสผ่าน" #: frappe/templates/includes/login/login.js:171 msgid "Verifying..." -msgstr "" +msgstr "กำลังตรวจสอบ..." #. Name of a DocType #: frappe/core/doctype/version/version.json msgid "Version" -msgstr "" +msgstr "เวอร์ชัน" #: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" -msgstr "" +msgstr "อัปเดตเวอร์ชันแล้ว" #. Label of the video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Video URL" -msgstr "" +msgstr "URL วิดีโอ" #. Label of the view_name (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "View" -msgstr "" +msgstr "ดู" #: frappe/core/doctype/success_action/success_action.js:60 #: frappe/public/js/frappe/form/success_action.js:89 msgid "View All" -msgstr "" +msgstr "ดูทั้งหมด" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" -msgstr "" +msgstr "ดูเส้นทางการตรวจสอบ" #: frappe/templates/includes/likes/likes.py:34 msgid "View Blog Post" -msgstr "" +msgstr "ดูโพสต์บล็อก" #: frappe/templates/includes/comments/comments.py:56 msgid "View Comment" -msgstr "" +msgstr "ดูความคิดเห็น" #: frappe/core/doctype/user/user.js:151 msgid "View Doctype Permissions" -msgstr "" +msgstr "ดูสิทธิ์ประเภทเอกสาร" #: frappe/core/doctype/file/file.js:4 msgid "View File" -msgstr "" +msgstr "ดูไฟล์" #: frappe/public/js/frappe/ui/notifications/notifications.js:220 msgid "View Full Log" -msgstr "" +msgstr "ดูบันทึกทั้งหมด" #: frappe/public/js/frappe/views/treeview.js:484 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" -msgstr "" +msgstr "ดูรายการ" #. Name of a DocType #: frappe/core/doctype/view_log/view_log.json msgid "View Log" -msgstr "" +msgstr "ดูบันทึก" #: frappe/core/doctype/user/user.js:142 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" -msgstr "" +msgstr "ดูเอกสารที่อนุญาต" #. Label of the view_properties (Button) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "View Properties (via Customize Form)" -msgstr "" +msgstr "ดูคุณสมบัติ (ผ่านการปรับแต่งฟอร์ม)" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "View Report" -msgstr "" +msgstr "ดูรายงาน" #. Label of the view_settings (Section Break) field in DocType 'DocType' #. Label of the view_settings_section (Section Break) field in DocType @@ -28301,158 +28540,158 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "View Settings" -msgstr "" +msgstr "ดูการตั้งค่า" #. Label of the view_switcher (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "View Switcher" -msgstr "" +msgstr "ดูตัวสลับ" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.js:16 msgid "View Website" -msgstr "" +msgstr "ดูเว็บไซต์" #: frappe/www/confirm_workflow_action.html:12 msgid "View document" -msgstr "" +msgstr "ดูเอกสาร" #: frappe/templates/emails/auto_email_report.html:60 msgid "View report in your browser" -msgstr "" +msgstr "ดูรายงานในเบราว์เซอร์ของคุณ" #: frappe/templates/emails/print_link.html:2 msgid "View this in your browser" -msgstr "" +msgstr "ดูสิ่งนี้ในเบราว์เซอร์ของคุณ" #: frappe/public/js/frappe/web_form/web_form.js:454 msgctxt "Button in web form" msgid "View your response" -msgstr "" +msgstr "ดูการตอบกลับของคุณ" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 #: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 #: frappe/desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" -msgstr "" +msgstr "ดู {0}" #. Label of the viewed_by (Data) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json msgid "Viewed By" -msgstr "" +msgstr "ดูโดย" #. Group in DocType's connections #. Label of a Card Break in the Build Workspace #: frappe/core/doctype/doctype/doctype.json #: frappe/core/workspace/build/build.json msgid "Views" -msgstr "" +msgstr "การดู" #. Label of the is_virtual (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Virtual" -msgstr "" +msgstr "เสมือน" #: frappe/model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" -msgstr "" +msgstr "ประเภทเอกสารเสมือน {} ต้องการเมธอดแบบคงที่ที่เรียกว่า {} พบ {}" #: frappe/model/virtual_doctype.py:89 msgid "Virtual DocType {} requires overriding an instance method called {} found {}" -msgstr "" +msgstr "ประเภทเอกสารเสมือน {} ต้องการการแทนที่เมธอดอินสแตนซ์ที่เรียกว่า {} พบ {}" #. Label of the visibility_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Visibility" -msgstr "" +msgstr "การมองเห็น" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 msgid "Visible to website/portal users." -msgstr "" +msgstr "มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล" #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Visit" -msgstr "" +msgstr "เยี่ยมชม" #: frappe/website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" -msgstr "" +msgstr "เยี่ยมชมหน้าเว็บ" #. Label of the visitor_id (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Visitor ID" -msgstr "" +msgstr "รหัสผู้เยี่ยมชม" #: frappe/templates/discussions/reply_section.html:39 msgid "Want to discuss?" -msgstr "" +msgstr "ต้องการพูดคุยหรือไม่?" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Warehouse" -msgstr "" +msgstr "คลังสินค้า" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" -msgstr "" +msgstr "คำเตือน" #: frappe/custom/doctype/customize_form/customize_form.js:217 msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" -msgstr "" +msgstr "คำเตือน: ข้อมูลสูญหายใกล้เข้ามา! การดำเนินการจะลบคอลัมน์ฐานข้อมูลต่อไปนี้ออกจากประเภทเอกสาร {0} อย่างถาวร:" #: frappe/core/doctype/doctype/doctype.py:1125 msgid "Warning: Naming is not set" -msgstr "" +msgstr "คำเตือน: ยังไม่ได้ตั้งชื่อ" #: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" -msgstr "" +msgstr "คำเตือน: ไม่สามารถหา {0} ในตารางใด ๆ ที่เกี่ยวข้องกับ {1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" -msgstr "" +msgstr "คำเตือน: การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง" #: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" -msgstr "" +msgstr "บทความนี้มีประโยชน์หรือไม่?" #: frappe/public/js/frappe/widgets/onboarding_widget.js:127 msgid "Watch Tutorial" -msgstr "" +msgstr "ดูบทแนะนำ" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Watch Video" -msgstr "" +msgstr "ดูวิดีโอ" #: frappe/desk/doctype/workspace/workspace.js:34 msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" -msgstr "" +msgstr "เราไม่อนุญาตให้แก้ไขเอกสารนี้ เพียงคลิกปุ่มแก้ไขในหน้าพื้นที่ทำงานเพื่อทำให้พื้นที่ทำงานของคุณสามารถแก้ไขได้และปรับแต่งตามที่คุณต้องการ" #: frappe/templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" -msgstr "" +msgstr "เราได้รับคำขอให้ลบข้อมูล {0} ที่เกี่ยวข้องกับ: {1}" #: frappe/templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" -msgstr "" +msgstr "เราได้รับคำขอจากคุณเพื่อดาวน์โหลดข้อมูล {0} ที่เกี่ยวข้องกับ: {1}" #: frappe/www/attribution.html:12 msgid "We would like to thank the authors of these packages for their contribution." -msgstr "" +msgstr "เราขอขอบคุณผู้เขียนแพ็คเกจเหล่านี้สำหรับการมีส่วนร่วมของพวกเขา" #: frappe/www/contact.py:50 msgid "We've received your query!" -msgstr "" +msgstr "เราได้รับคำถามของคุณแล้ว!" #: frappe/public/js/frappe/form/controls/password.js:87 msgid "Weak" -msgstr "" +msgstr "อ่อนแอ" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28460,22 +28699,22 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.json #: frappe/website/workspace/website/website.json msgid "Web Form" -msgstr "" +msgstr "ฟอร์มเว็บ" #. Name of a DocType #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Web Form Field" -msgstr "" +msgstr "ฟิลด์ฟอร์มเว็บ" #. Label of the web_form_fields (Table) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Web Form Fields" -msgstr "" +msgstr "ฟิลด์ฟอร์มเว็บ" #. Name of a DocType #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Web Form List Column" -msgstr "" +msgstr "คอลัมน์รายการฟอร์มเว็บ" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28483,21 +28722,21 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json msgid "Web Page" -msgstr "" +msgstr "หน้าเว็บ" #. Name of a DocType #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" -msgstr "" +msgstr "บล็อกหน้าเว็บ" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" -msgstr "" +msgstr "URL หน้าเว็บ" #. Name of a DocType #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Web Page View" -msgstr "" +msgstr "มุมมองหน้าเว็บ" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json @@ -28509,30 +28748,31 @@ msgstr "" #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/web_template/web_template.json msgid "Web Template" -msgstr "" +msgstr "แม่แบบเว็บ" #. Name of a DocType #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Web Template Field" -msgstr "" +msgstr "ฟิลด์แม่แบบเว็บ" #. Label of the web_template_values (Code) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Template Values" -msgstr "" +msgstr "ค่าของแม่แบบเว็บ" #: frappe/utils/jinja_globals.py:48 msgid "Web Template is not specified" -msgstr "" +msgstr "ไม่ได้ระบุแม่แบบเว็บ" #. Label of the web_view (Tab Break) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Web View" -msgstr "" +msgstr "มุมมองเว็บ" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28544,66 +28784,63 @@ msgstr "" #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_data/webhook_data.json msgid "Webhook Data" -msgstr "" +msgstr "ข้อมูล Webhook" #. Name of a DocType #: frappe/integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" -msgstr "" +msgstr "ส่วนหัว Webhook" #. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Headers" -msgstr "" +msgstr "ส่วนหัว Webhook" #. Label of the sb_webhook (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Request" -msgstr "" +msgstr "คำขอ Webhook" #. Label of a Link in the Build Workspace #. Name of a DocType #: frappe/core/workspace/build/build.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" -msgstr "" +msgstr "บันทึกคำขอ Webhook" #. Label of the webhook_secret (Password) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Secret" -msgstr "" +msgstr "ความลับ Webhook" #. Label of the sb_security (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Security" -msgstr "" +msgstr "ความปลอดภัย Webhook" #. Label of the sb_condition (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "" +msgstr "ทริกเกอร์ Webhook" #. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json msgid "Webhook URL" -msgstr "" +msgstr "URL Webhook" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json msgid "Website" -msgstr "" +msgstr "เว็บไซต์" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" -msgstr "" +msgstr "การวิเคราะห์เว็บไซต์" #. Name of a role #: frappe/core/doctype/comment/comment.json @@ -28624,47 +28861,47 @@ msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Website Manager" -msgstr "" +msgstr "ผู้จัดการเว็บไซต์" #. Name of a DocType #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" -msgstr "" +msgstr "แท็กเมตาเว็บไซต์" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_route_meta/website_route_meta.json #: frappe/website/workspace/website/website.json msgid "Website Route Meta" -msgstr "" +msgstr "เมตาเส้นทางเว็บไซต์" #. Name of a DocType #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" -msgstr "" +msgstr "เปลี่ยนเส้นทางเว็บไซต์" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_script/website_script.json #: frappe/website/workspace/website/website.json msgid "Website Script" -msgstr "" +msgstr "สคริปต์เว็บไซต์" #. Label of the website_search_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Website Search Field" -msgstr "" +msgstr "ฟิลด์ค้นหาเว็บไซต์" #: frappe/core/doctype/doctype/doctype.py:1522 msgid "Website Search Field must be a valid fieldname" -msgstr "" +msgstr "ฟิลด์ค้นหาเว็บไซต์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/workspace/website/website.json msgid "Website Settings" -msgstr "" +msgstr "การตั้งค่าเว็บไซต์" #. Label of the website_sidebar (Link) field in DocType 'Web Form' #. Label of the website_sidebar (Link) field in DocType 'Web Page' @@ -28675,24 +28912,24 @@ msgstr "" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/workspace/website/website.json msgid "Website Sidebar" -msgstr "" +msgstr "แถบด้านข้างเว็บไซต์" #. Name of a DocType #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" -msgstr "" +msgstr "รายการแถบด้านข้างเว็บไซต์" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/workspace/website/website.json msgid "Website Slideshow" -msgstr "" +msgstr "สไลด์โชว์เว็บไซต์" #. Name of a DocType #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" -msgstr "" +msgstr "รายการสไลด์โชว์เว็บไซต์" #. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType @@ -28701,23 +28938,23 @@ msgstr "" #: frappe/website/doctype/website_theme/website_theme.json #: frappe/website/workspace/website/website.json msgid "Website Theme" -msgstr "" +msgstr "ธีมเว็บไซต์" #. Name of a DocType #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "Website Theme Ignore App" -msgstr "" +msgstr "ธีมเว็บไซต์ไม่สนใจแอป" #. Label of the website_theme_image (Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme Image" -msgstr "" +msgstr "ภาพธีมเว็บไซต์" #. Label of the website_theme_image_link (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme image link" -msgstr "" +msgstr "ลิงก์ภาพธีมเว็บไซต์" #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' @@ -28739,16 +28976,16 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Wednesday" -msgstr "" +msgstr "วันพุธ" #: frappe/public/js/frappe/views/calendar/calendar.js:276 msgid "Week" -msgstr "" +msgstr "สัปดาห์" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Weekdays" -msgstr "" +msgstr "วันธรรมดา" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -28770,18 +29007,18 @@ msgstr "" #: frappe/public/js/frappe/utils/common.js:399 #: frappe/website/report/website_analytics/website_analytics.js:24 msgid "Weekly" -msgstr "" +msgstr "รายสัปดาห์" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Weekly Long" -msgstr "" +msgstr "รายสัปดาห์แบบยาว" #: frappe/desk/page/setup_wizard/setup_wizard.js:384 msgid "Welcome" -msgstr "" +msgstr "ยินดีต้อนรับ" #. Label of the welcome_email_template (Link) field in DocType 'System #. Settings' @@ -28789,58 +29026,58 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/email_group/email_group.json msgid "Welcome Email Template" -msgstr "" +msgstr "แม่แบบอีเมลต้อนรับ" #. Label of the welcome_url (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" -msgstr "" +msgstr "URL ต้อนรับ" #. Name of a Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" -msgstr "" +msgstr "ส่งอีเมลต้อนรับแล้ว" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" -msgstr "" +msgstr "ยินดีต้อนรับสู่ {0}" #: frappe/public/js/frappe/ui/notifications/notifications.js:62 msgid "What's New" -msgstr "" +msgstr "มีอะไรใหม่" #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "" +msgstr "เมื่อเปิดใช้งาน จะอนุญาตให้ผู้เยี่ยมชมอัปโหลดไฟล์ไปยังแอปพลิเคชันของคุณ คุณสามารถเปิดใช้งานได้หากต้องการรวบรวมไฟล์จากผู้ใช้โดยไม่ต้องให้พวกเขาเข้าสู่ระบบ เช่น ในฟอร์มสมัครงาน" #. Description of the 'Store Attached PDF Document' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." -msgstr "" +msgstr "เมื่อส่งเอกสารทางอีเมล ให้เก็บ PDF ไว้ในการสื่อสาร คำเตือน: สิ่งนี้อาจเพิ่มการใช้งานพื้นที่เก็บข้อมูลของคุณ" #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." -msgstr "" +msgstr "เมื่ออัปโหลดไฟล์ บังคับให้ใช้การจับภาพบนเว็บ หากไม่ได้เลือกสิ่งนี้ พฤติกรรมเริ่มต้นคือการใช้กล้องพื้นฐานของมือถือเมื่อมีการตรวจพบการใช้งานจากมือถือ" #: frappe/core/page/permission_manager/permission_manager_help.html:18 msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." -msgstr "" +msgstr "เมื่อคุณแก้ไขเอกสารหลังจากยกเลิกและบันทึก มันจะได้รับหมายเลขใหม่ที่เป็นเวอร์ชันของหมายเลขเก่า" #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:481 msgid "Which view of the associated DocType should this shortcut take you to?" -msgstr "" +msgstr "มุมมองใดของ DocType ที่เกี่ยวข้องที่ทางลัดนี้ควรนำคุณไป?" #. Label of the width (Data) field in DocType 'DocField' #. Label of the width (Int) field in DocType 'Report Column' @@ -28855,7 +29092,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 #: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 msgid "Width" -msgstr "" +msgstr "ความกว้าง" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 msgid "Widths can be set in px or %." @@ -28864,7 +29101,7 @@ msgstr "" #. Label of the wildcard_filter (Check) field in DocType 'Report Filter' #: frappe/core/doctype/report_filter/report_filter.json msgid "Wildcard Filter" -msgstr "" +msgstr "ตัวกรองไวลด์การ์ด" #. Description of the 'Wildcard Filter' (Check) field in DocType 'Report #. Filter' @@ -28875,36 +29112,36 @@ msgstr "" #. Description of the 'Short Name' (Data) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Will be used in url (usually first name)." -msgstr "" +msgstr "จะใช้ใน URL (โดยปกติคือชื่อแรก)" #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" -msgstr "" +msgstr "จะเป็นรหัสเข้าสู่ระบบของคุณ" #: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" -msgstr "" +msgstr "จะแสดงเฉพาะเมื่อเปิดใช้งานหัวข้อส่วน" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." -msgstr "" +msgstr "จะรันงานตามกำหนดเวลาเพียงครั้งเดียวต่อวันสำหรับไซต์ที่ไม่ได้ใช้งาน ตั้งค่าเป็น 0 เพื่อหลีกเลี่ยงการปิดใช้งานตัวกำหนดเวลาโดยอัตโนมัติ" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" -msgstr "" +msgstr "พร้อมหัวจดหมาย" #. Label of the worker_information_section (Section Break) field in DocType 'RQ #. Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" -msgstr "" +msgstr "ข้อมูลพนักงาน" #. Label of the worker_name (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" -msgstr "" +msgstr "ชื่อพนักงาน" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Group in DocType's connections @@ -28914,42 +29151,42 @@ msgstr "" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow" -msgstr "" +msgstr "เวิร์กโฟลว์" #. Name of a DocType #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" -msgstr "" +msgstr "การดำเนินการเวิร์กโฟลว์" #. Name of a DocType #. Description of a DocType #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "" +msgstr "มาสเตอร์การดำเนินการเวิร์กโฟลว์" #. Label of the workflow_action_name (Data) field in DocType 'Workflow Action #. Master' #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Name" -msgstr "" +msgstr "ชื่อการดำเนินการเวิร์กโฟลว์" #. Name of a DocType #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" -msgstr "" +msgstr "บทบาทที่อนุญาตให้ดำเนินการเวิร์กโฟลว์" #. Description of the 'Is Optional State' (Check) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Action is not created for optional states" -msgstr "" +msgstr "ไม่ได้สร้างการดำเนินการเวิร์กโฟลว์สำหรับสถานะที่เลือกได้" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.js:25 #: frappe/workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" -msgstr "" +msgstr "ตัวสร้างเวิร์กโฟลว์" #. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document #. State' @@ -28958,72 +29195,72 @@ msgstr "" #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Builder ID" -msgstr "" +msgstr "รหัสตัวสร้างเวิร์กโฟลว์" #: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." -msgstr "" +msgstr "ตัวสร้างเวิร์กโฟลว์ช่วยให้คุณสร้างเวิร์กโฟลว์ได้อย่างเห็นภาพ คุณสามารถลากและวางสถานะและเชื่อมโยงเพื่อสร้างการเปลี่ยนผ่าน นอกจากนี้คุณยังสามารถอัปเดตคุณสมบัติของพวกเขาจากแถบด้านข้าง" #. Label of the workflow_data (JSON) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" -msgstr "" +msgstr "ข้อมูลเวิร์กโฟลว์" #: frappe/public/js/workflow_builder/components/Properties.vue:42 msgid "Workflow Details" -msgstr "" +msgstr "รายละเอียดเวิร์กโฟลว์" #. Name of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" -msgstr "" +msgstr "สถานะเอกสารเวิร์กโฟลว์" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Name" -msgstr "" +msgstr "ชื่อเวิร์กโฟลว์" #. Label of the workflow_state (Data) field in DocType 'Workflow Action' #. Name of a DocType #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow State" -msgstr "" +msgstr "สถานะเวิร์กโฟลว์" #. Label of the workflow_state_field (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow State Field" -msgstr "" +msgstr "ฟิลด์สถานะเวิร์กโฟลว์" #: frappe/model/workflow.py:61 msgid "Workflow State not set" -msgstr "" +msgstr "ไม่ได้ตั้งค่าสถานะเวิร์กโฟลว์" #: frappe/model/workflow.py:204 frappe/model/workflow.py:212 msgid "Workflow State transition not allowed from {0} to {1}" -msgstr "" +msgstr "ไม่อนุญาตให้เปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1}" #: frappe/workflow/doctype/workflow/workflow.js:140 msgid "Workflow States Don't Exist" -msgstr "" +msgstr "สถานะเวิร์กโฟลว์ไม่มีอยู่" #: frappe/model/workflow.py:328 msgid "Workflow Status" -msgstr "" +msgstr "สถานะเวิร์กโฟลว์" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" -msgstr "" +msgstr "การเปลี่ยนผ่านเวิร์กโฟลว์" #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." -msgstr "" +msgstr "สถานะเวิร์กโฟลว์แสดงถึงสถานะปัจจุบันของเอกสาร" #: frappe/public/js/workflow_builder/store.js:83 msgid "Workflow updated successfully" -msgstr "" +msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ" #. Label of the workspace_section (Section Break) field in DocType 'User' #. Label of a Link in the Build Workspace @@ -29032,46 +29269,46 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" -msgstr "" +msgstr "พื้นที่ทำงาน" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" -msgstr "" +msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่" #. Name of a DocType #: frappe/desk/doctype/workspace_chart/workspace_chart.json msgid "Workspace Chart" -msgstr "" +msgstr "แผนภูมิพื้นที่ทำงาน" #. Name of a DocType #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" -msgstr "" +msgstr "บล็อกที่กำหนดเองของพื้นที่ทำงาน" #. Name of a DocType #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Workspace Link" -msgstr "" +msgstr "ลิงก์พื้นที่ทำงาน" #. Name of a role #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Manager" -msgstr "" +msgstr "ผู้จัดการพื้นที่ทำงาน" #. Name of a DocType #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Workspace Number Card" -msgstr "" +msgstr "การ์ดตัวเลขพื้นที่ทำงาน" #. Name of a DocType #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Workspace Quick List" -msgstr "" +msgstr "รายการด่วนพื้นที่ทำงาน" #. Label of a standard navbar item #. Type: Action @@ -29079,45 +29316,45 @@ msgstr "" #: frappe/desk/doctype/workspace_settings/workspace_settings.json #: frappe/hooks.py msgid "Workspace Settings" -msgstr "" +msgstr "การตั้งค่าพื้นที่ทำงาน" #. Label of the workspace_setup_completed (Check) field in DocType 'Workspace #. Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Setup Completed" -msgstr "" +msgstr "การตั้งค่าพื้นที่ทำงานเสร็จสมบูรณ์" #. Name of a DocType #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Workspace Shortcut" -msgstr "" +msgstr "ทางลัดพื้นที่ทำงาน" #. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace #. Settings' #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Visibility" -msgstr "" +msgstr "การมองเห็นพื้นที่ทำงาน" #: frappe/public/js/frappe/views/workspace/workspace.js:538 msgid "Workspace {0} created" -msgstr "" +msgstr "สร้างพื้นที่ทำงาน {0} แล้ว" #. Option for the 'View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Workspaces" -msgstr "" +msgstr "พื้นที่ทำงาน" #: frappe/public/js/frappe/form/footer/form_timeline.js:756 msgid "Would you like to publish this comment? This means it will become visible to website/portal users." -msgstr "" +msgstr "คุณต้องการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะมองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล" #: frappe/public/js/frappe/form/footer/form_timeline.js:760 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." -msgstr "" +msgstr "คุณต้องการยกเลิกการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะไม่มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัลอีกต่อไป" #: frappe/desk/page/setup_wizard/setup_wizard.py:41 msgid "Wrapping up" -msgstr "" +msgstr "กำลังสรุป" #. Label of the write (Check) field in DocType 'Custom DocPerm' #. Label of the write (Check) field in DocType 'DocPerm' @@ -29128,20 +29365,20 @@ msgstr "" #: frappe/core/doctype/docshare/docshare.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "" +msgstr "เขียน" #: frappe/model/base_document.py:954 msgid "Wrong Fetch From value" -msgstr "" +msgstr "ค่าที่ดึงมาผิด" #: frappe/public/js/frappe/views/reports/report_view.js:490 msgid "X Axis Field" -msgstr "" +msgstr "ฟิลด์แกน X" #. Label of the x_field (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "X Field" -msgstr "" +msgstr "ฟิลด์ X" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json @@ -29151,17 +29388,17 @@ msgstr "" #. Label of the y_axis (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" -msgstr "" +msgstr "แกน Y" #: frappe/public/js/frappe/views/reports/report_view.js:497 msgid "Y Axis Fields" -msgstr "" +msgstr "ฟิลด์แกน Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" -msgstr "" +msgstr "ฟิลด์ Y" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -29178,7 +29415,7 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/doctype/company_history/company_history.json msgid "Year" -msgstr "" +msgstr "ปี" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -29196,14 +29433,14 @@ msgstr "" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:403 msgid "Yearly" -msgstr "" +msgstr "รายปี" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Yellow" -msgstr "" +msgstr "สีเหลือง" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -29220,133 +29457,133 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" -msgstr "" +msgstr "ใช่" #: frappe/public/js/frappe/ui/messages.js:32 msgctxt "Approve confirmation dialog" msgid "Yes" -msgstr "" +msgstr "ใช่" #: frappe/public/js/frappe/ui/filters/filter.js:545 msgctxt "Checkbox is checked" msgid "Yes" -msgstr "" +msgstr "ใช่" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" -msgstr "" +msgstr "เมื่อวาน" #: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." msgid "You" -msgstr "" +msgstr "คุณ" #: frappe/public/js/frappe/form/footer/form_timeline.js:463 msgid "You Liked" -msgstr "" +msgstr "คุณชอบ" #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." -msgstr "" +msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว" #: frappe/public/js/frappe/ui/toolbar/navbar.html:20 msgid "You are impersonating as another user." -msgstr "" +msgstr "คุณกำลังปลอมตัวเป็นผู้ใช้อื่น" #: frappe/integrations/frappe_providers/frappecloud_billing.py:28 msgid "You are not allowed to access this resource" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในฟิลด์ {3}" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในแถว {3}, ฟิลด์ {4}" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้สร้างคอลัมน์" #: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้ลบรายงานมาตรฐาน" #: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้ลบธีมเว็บไซต์มาตรฐาน" #: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้แก้ไขรายงาน" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}" #: frappe/public/js/frappe/views/treeview.js:448 msgid "You are not allowed to print this report" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้" #: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." -msgstr "" +msgstr "คุณไม่ได้เชื่อมต่อกับอินเทอร์เน็ต โปรดลองอีกครั้งในภายหลัง" #: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้โดยไม่เข้าสู่ระบบ" #: frappe/www/app.py:27 msgid "You are not permitted to access this page." -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" -msgstr "" +msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง" #: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." -msgstr "" +msgstr "คุณกำลังติดตามเอกสารนี้ คุณจะได้รับการอัปเดตรายวันทางอีเมล คุณสามารถเปลี่ยนแปลงได้ในการตั้งค่าผู้ใช้" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." -msgstr "" +msgstr "คุณได้รับอนุญาตให้ปรับปรุงคำสั่งซื้อเท่านั้น ห้ามลบหรือเพิ่มแอป" #: frappe/email/doctype/email_account/email_account.js:284 msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." -msgstr "" +msgstr "คุณกำลังเลือกตัวเลือกการซิงค์เป็น ALL ซึ่งจะซิงค์ข้อความที่อ่านและยังไม่ได้อ่านทั้งหมดจากเซิร์ฟเวอร์อีกครั้ง ซึ่งอาจทำให้เกิดการซ้ำซ้อนของการสื่อสาร (อีเมล) ได้" #: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" msgid "You attached {0}" -msgstr "" +msgstr "คุณแนบ {0}" #: frappe/printing/page/print_format_builder/print_format_builder.js:749 msgid "You can add dynamic properties from the document by using Jinja templating." -msgstr "" +msgstr "คุณสามารถเพิ่มคุณสมบัติแบบไดนามิกจากเอกสารโดยใช้ Jinja templating" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" -msgstr "" +msgstr "คุณยังสามารถเข้าถึงตัวแปร wkhtmltopdf (ใช้ได้เฉพาะในการพิมพ์ PDF):" #: frappe/templates/emails/new_user.html:22 msgid "You can also copy-paste following link in your browser" -msgstr "" +msgstr "คุณยังสามารถคัดลอก-วางลิงก์ต่อไปนี้ในเบราว์เซอร์ของคุณ" #: frappe/templates/emails/download_data.html:9 msgid "You can also copy-paste this " @@ -29354,69 +29591,69 @@ msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" -msgstr "" +msgstr "คุณยังสามารถคัดลอก-วาง {0} นี้ในเบราว์เซอร์ของคุณ" #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." -msgstr "" +msgstr "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข" #: frappe/public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." -msgstr "" +msgstr "คุณสามารถเปลี่ยนนโยบายการเก็บรักษาจาก {0}" #: frappe/public/js/frappe/widgets/onboarding_widget.js:194 msgid "You can continue with the onboarding after exploring this page" -msgstr "" +msgstr "คุณสามารถดำเนินการต่อกับการเริ่มต้นใช้งานหลังจากสำรวจหน้านี้" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." -msgstr "" +msgstr "คุณสามารถปิดใช้งาน {0} นี้แทนการลบได้" #: frappe/core/doctype/file/file.py:736 msgid "You can increase the limit from System Settings." -msgstr "" +msgstr "คุณสามารถเพิ่มขีดจำกัดจากการตั้งค่าระบบ" #: frappe/utils/synchronization.py:48 msgid "You can manually remove the lock if you think it's safe: {}" -msgstr "" +msgstr "คุณสามารถลบการล็อกด้วยตนเองหากคุณคิดว่าปลอดภัย: {}" #: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" -msgstr "" +msgstr "คุณสามารถแทรกรูปภาพในฟิลด์ Markdown เท่านั้น" #: frappe/public/js/frappe/list/bulk_operations.js:42 msgid "You can only print upto {0} documents at a time" -msgstr "" +msgstr "คุณสามารถพิมพ์เอกสารได้สูงสุด {0} ฉบับในครั้งเดียว" #: frappe/core/doctype/user_type/user_type.py:104 msgid "You can only set the 3 custom doctypes in the Document Types table." -msgstr "" +msgstr "คุณสามารถตั้งค่าประเภทเอกสารที่กำหนดเองได้เพียง 3 ประเภทในตารางประเภทเอกสาร" #: frappe/handler.py:182 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." -msgstr "" +msgstr "คุณสามารถอัปโหลดเอกสาร JPG, PNG, PDF, TXT, CSV หรือ Microsoft เท่านั้น" #: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" -msgstr "" +msgstr "คุณสามารถอัปโหลดระเบียนได้สูงสุด 5000 ระเบียนในครั้งเดียว (อาจน้อยกว่านี้ในบางกรณี)" #: frappe/website/doctype/web_page/web_page.js:92 msgid "You can select one from the following," -msgstr "" +msgstr "คุณสามารถเลือกหนึ่งจากรายการต่อไปนี้," #. Description of the 'Rate limit for email link login' (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "You can set a high value here if multiple users will be logging in from the same network." -msgstr "" +msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." -msgstr "" +msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ" #: frappe/core/page/permission_manager/permission_manager_help.html:27 msgid "You can use Customize Form to set levels on fields." -msgstr "" +msgstr "คุณสามารถใช้ฟอร์มปรับแต่งเพื่อกำหนดระดับในฟิลด์" #: frappe/public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" @@ -29424,100 +29661,104 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Options' for field {0}" -msgstr "" +msgstr "คุณไม่สามารถตั้งค่า 'ตัวเลือก' สำหรับฟิลด์ {0} ได้" #: frappe/custom/doctype/customize_form/customize_form.py:393 msgid "You can't set 'Translatable' for field {0}" -msgstr "" +msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" msgid "You cancelled this document" -msgstr "" +msgstr "คุณยกเลิกเอกสารนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 msgctxt "Form timeline" msgid "You cancelled this document {1}" -msgstr "" +msgstr "คุณยกเลิกเอกสารนี้ {1}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 msgid "You cannot create a dashboard chart from single DocTypes" -msgstr "" +msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้" #: frappe/custom/doctype/customize_form/customize_form.py:385 msgid "You cannot unset 'Read Only' for field {0}" -msgstr "" +msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" -msgstr "" +msgstr "คุณเปลี่ยนค่าของ {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" -msgstr "" +msgstr "คุณเปลี่ยนค่าของ {0} {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" -msgstr "" +msgstr "คุณเปลี่ยนค่าของ {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" -msgstr "" +msgstr "คุณเปลี่ยนค่าของ {0} {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" msgid "You changed {0} to {1}" -msgstr "" +msgstr "คุณเปลี่ยน {0} เป็น {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:140 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 msgid "You created this" -msgstr "" +msgstr "คุณสร้างสิ่งนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 msgctxt "Form timeline" msgid "You created this document {0}" -msgstr "" +msgstr "คุณสร้างเอกสารนี้ {0}" #: frappe/client.py:417 msgid "You do not have Read or Select Permissions for {}" -msgstr "" +msgstr "คุณไม่มีสิทธิ์อ่านหรือเลือกสำหรับ {}" #: frappe/public/js/frappe/request.js:177 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." -msgstr "" +msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" +msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น" + +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." -msgstr "" +msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}" #: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." -msgstr "" +msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" -msgstr "" +msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." -msgstr "" +msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" -msgstr "" +msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" -msgstr "" +msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}" #: frappe/website/doctype/web_form/web_form.py:172 msgid "You don't have the permissions to access this document" -msgstr "" +msgstr "คุณไม่มีสิทธิ์เข้าถึงเอกสารนี้" #: frappe/templates/emails/new_message.html:1 msgid "You have a new message from: " @@ -29525,96 +29766,96 @@ msgstr "" #: frappe/handler.py:118 msgid "You have been successfully logged out" -msgstr "" +msgstr "คุณออกจากระบบสำเร็จแล้ว" #: frappe/custom/doctype/customize_form/customize_form.py:244 msgid "You have hit the row size limit on database table: {0}" -msgstr "" +msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}" #: frappe/public/js/frappe/list/bulk_operations.js:412 msgid "You have not entered a value. The field will be set to empty." -msgstr "" +msgstr "คุณไม่ได้ป้อนค่า ฟิลด์จะถูกตั้งค่าเป็นว่างเปล่า" #: frappe/templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" -msgstr "" +msgstr "คุณได้รับการกดถูกใจ ❤️ ในโพสต์บล็อกของคุณ" #: frappe/twofactor.py:432 msgid "You have to enable Two Factor Auth from System Settings." -msgstr "" +msgstr "คุณต้องเปิดใช้งานการยืนยันตัวตนสองขั้นตอนจากการตั้งค่าระบบ" #: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." -msgstr "" +msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกในฟอร์มนี้ โปรดบันทึกก่อนดำเนินการต่อ" #: frappe/public/js/frappe/ui/toolbar/navbar.html:50 msgid "You have unseen notifications" -msgstr "" +msgstr "คุณมีการแจ้งเตือนที่ยังไม่ได้ดู" #: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" -msgstr "" +msgstr "คุณมี {0} ที่ยังไม่ได้ดู" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 msgid "You haven't added any Dashboard Charts or Number Cards yet." -msgstr "" +msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ" #: frappe/public/js/frappe/list/list_view.js:498 msgid "You haven't created a {0} yet" -msgstr "" +msgstr "คุณยังไม่ได้สร้าง {0}" #: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." -msgstr "" +msgstr "คุณถึงขีดจำกัดอัตราเนื่องจากคำขอมากเกินไป โปรดลองอีกครั้งในภายหลัง" #: frappe/public/js/frappe/form/footer/form_timeline.js:151 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 msgid "You last edited this" -msgstr "" +msgstr "คุณแก้ไขสิ่งนี้ล่าสุด" #: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." -msgstr "" +msgstr "คุณต้องเพิ่มลิงก์อย่างน้อยหนึ่งลิงก์" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." -msgstr "" +msgstr "คุณต้องเข้าสู่ระบบเพื่อใช้ฟอร์มนี้" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" -msgstr "" +msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." -msgstr "" +msgstr "คุณต้องมีสิทธิ์ '{0}' ใน {1} {2} เพื่อดำเนินการนี้" #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." -msgstr "" +msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อที่จะลบพื้นที่ทำงานสาธารณะ" #: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" -msgstr "" +msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อแก้ไขเอกสารนี้" #: frappe/www/attribution.py:16 msgid "You need to be a system user to access this page." -msgstr "" +msgstr "คุณต้องเป็นผู้ใช้ระบบเพื่อเข้าถึงหน้านี้" #: frappe/website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" -msgstr "" +msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." -msgstr "" +msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง" #: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 msgid "You need to be logged in to access this page" -msgstr "" +msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึงหน้านี้" #: frappe/website/doctype/web_form/web_form.py:161 msgid "You need to be logged in to access this {0}." -msgstr "" +msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึง {0} นี้" #: frappe/public/js/frappe/widgets/links_widget.js:63 msgid "You need to create these first: " @@ -29622,7 +29863,7 @@ msgstr "" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." -msgstr "" +msgstr "คุณต้องเปิดใช้งาน JavaScript เพื่อให้แอปของคุณทำงานได้" #: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" @@ -29630,171 +29871,171 @@ msgstr "" #: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" -msgstr "" +msgstr "คุณต้องติดตั้ง pycups เพื่อใช้คุณสมบัตินี้!" #: frappe/core/doctype/recorder/recorder.js:38 msgid "You need to select indexes you want to add first." -msgstr "" +msgstr "คุณต้องเลือกดัชนีที่คุณต้องการเพิ่มก่อน" #: frappe/email/doctype/email_account/email_account.py:160 msgid "You need to set one IMAP folder for {0}" -msgstr "" +msgstr "คุณต้องตั้งค่าหนึ่งโฟลเดอร์ IMAP สำหรับ {0}" #: frappe/model/rename_doc.py:391 msgid "You need write permission on {0} {1} to merge" -msgstr "" +msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อรวม" #: frappe/model/rename_doc.py:386 msgid "You need write permission on {0} {1} to rename" -msgstr "" +msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อเปลี่ยนชื่อ" #: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" -msgstr "" +msgstr "คุณต้องมีสิทธิ์ {0} เพื่อดึงค่าจาก {1} {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" -msgstr "" +msgstr "คุณลบไฟล์แนบ {0}" #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" -msgstr "" +msgstr "คุณดูพร้อมที่จะไป!" #: frappe/templates/includes/contact.js:20 msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." -msgstr "" +msgstr "คุณดูเหมือนจะเขียนชื่อของคุณแทนอีเมล โปรดป้อนที่อยู่อีเมลที่ถูกต้องเพื่อให้เราสามารถติดต่อกลับได้" #: frappe/public/js/frappe/list/bulk_operations.js:31 msgid "You selected Draft or Cancelled documents" -msgstr "" +msgstr "คุณเลือกเอกสารที่เป็นร่างหรือถูกยกเลิก" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" msgid "You submitted this document" -msgstr "" +msgstr "คุณส่งเอกสารนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 msgctxt "Form timeline" msgid "You submitted this document {0}" -msgstr "" +msgstr "คุณส่งเอกสารนี้ {0}" #: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" -msgstr "" +msgstr "คุณเลิกติดตามเอกสารนี้" #: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" -msgstr "" +msgstr "คุณดูสิ่งนี้" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." -msgstr "" +msgstr "คุณเข้าสู่ระบบในฐานะผู้ใช้อื่นจากแท็บอื่น โปรดรีเฟรชหน้านี้เพื่อใช้งานระบบต่อ" #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." -msgstr "" +msgstr "ไฟล์ CSV ของคุณกำลังถูกสร้างและจะปรากฏในส่วนไฟล์แนบเมื่อพร้อมใช้งาน นอกจากนี้คุณจะได้รับการแจ้งเตือนเมื่อไฟล์พร้อมให้ดาวน์โหลด" #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" -msgstr "" +msgstr "ประเทศของคุณ" #: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" -msgstr "" +msgstr "ภาษาของคุณ" #: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" -msgstr "" +msgstr "ชื่อของคุณ" #: frappe/public/js/frappe/list/bulk_operations.js:132 msgid "Your PDF is ready for download" -msgstr "" +msgstr "PDF ของคุณพร้อมให้ดาวน์โหลดแล้ว" #: frappe/patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" -msgstr "" +msgstr "ทางลัดของคุณ" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 msgid "Your account has been deleted" -msgstr "" +msgstr "บัญชีของคุณถูกลบแล้ว" #: frappe/auth.py:514 msgid "Your account has been locked and will resume after {0} seconds" -msgstr "" +msgstr "บัญชีของคุณถูกล็อกและจะกลับมาใช้งานได้หลังจาก {0} วินาที" #: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" -msgstr "" +msgstr "การมอบหมายของคุณใน {0} {1} ถูกลบโดย {2}" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." -msgstr "" +msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบเสียง" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." -msgstr "" +msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบวิดีโอ" #: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" -msgstr "" +msgstr "คำขอเชื่อมต่อของคุณไปยัง Google Calendar ได้รับการยอมรับเรียบร้อยแล้ว" #: frappe/www/contact.html:35 msgid "Your email address" -msgstr "" +msgstr "ที่อยู่อีเมลของคุณ" #: frappe/public/js/frappe/web_form/web_form.js:428 msgid "Your form has been successfully updated" -msgstr "" +msgstr "ฟอร์มของคุณได้รับการอัปเดตเรียบร้อยแล้ว" #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" -msgstr "" +msgstr "รหัสเข้าสู่ระบบของคุณคือ" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." -msgstr "" +msgstr "รหัสผ่านใหม่ของคุณถูกตั้งค่าเรียบร้อยแล้ว" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." -msgstr "" +msgstr "รหัสผ่านเก่าของคุณไม่ถูกต้อง" #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "" +msgstr "ชื่อและที่อยู่ขององค์กรของคุณสำหรับส่วนท้ายอีเมล" #: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." -msgstr "" +msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." -msgstr "" +msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ" #: frappe/public/js/frappe/ui/toolbar/navbar.html:15 msgid "Your site is undergoing maintenance or being updated." -msgstr "" +msgstr "ไซต์ของคุณกำลังอยู่ในระหว่างการบำรุงรักษาหรือกำลังอัปเดต" #: frappe/templates/emails/verification_code.html:1 msgid "Your verification code is {0}" -msgstr "" +msgstr "รหัสยืนยันของคุณคือ {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" -msgstr "" +msgstr "ศูนย์" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Zero means send records updated at anytime" -msgstr "" +msgstr "ศูนย์หมายถึงส่งระเบียนที่อัปเดตได้ตลอดเวลา" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[การดำเนินการโดย {0}]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -29806,148 +30047,148 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" -msgstr "" +msgstr "`as_iterator` ใช้งานได้เฉพาะกับ `as_list=True` หรือ `as_dict=True`" #: frappe/utils/background_jobs.py:120 msgid "`job_id` paramater is required for deduplication." -msgstr "" +msgstr "ต้องการพารามิเตอร์ `job_id` สำหรับการลบข้อมูลซ้ำ" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 msgid "added rows for {0}" -msgstr "" +msgstr "เพิ่มแถวสำหรับ {0}" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "" +msgstr "หลังจากแทรก" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "amend" -msgstr "" +msgstr "แก้ไข" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" -msgstr "" +msgstr "และ" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "ascending" -msgstr "" +msgstr "เรียงจากน้อยไปมาก" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "blue" -msgstr "" +msgstr "สีน้ำเงิน" #: frappe/public/js/frappe/form/workflow.js:35 msgid "by Role" -msgstr "" +msgstr "ตามบทบาท" #. Label of the profile (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "cProfile Output" -msgstr "" +msgstr "ผลลัพธ์ cProfile" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 msgid "calendar" -msgstr "" +msgstr "ปฏิทิน" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "cancel" -msgstr "" +msgstr "ยกเลิก" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" -msgstr "" +msgstr "ถูกยกเลิก" #: frappe/templates/includes/list/filters.html:19 msgid "clear" -msgstr "" +msgstr "ล้าง" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 msgid "commented" -msgstr "" +msgstr "แสดงความคิดเห็น" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "create" -msgstr "" +msgstr "สร้าง" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "cyan" -msgstr "" +msgstr "สีฟ้า" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "" +msgstr "วัน" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "darkgrey" -msgstr "" +msgstr "สีเทาเข้ม" #: frappe/core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" -msgstr "" +msgstr "แดชบอร์ด" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd-mm-yyyy" -msgstr "" +msgstr "วว-ดด-ปปปป" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd.mm.yyyy" -msgstr "" +msgstr "วว.ดด.ปปปป" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "dd/mm/yyyy" -msgstr "" +msgstr "วว/ดด/ปปปป" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "default" -msgstr "" +msgstr "ค่าเริ่มต้น" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" -msgstr "" +msgstr "เลื่อนออกไป" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "" +msgstr "ลบ" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "descending" -msgstr "" +msgstr "เรียงจากมากไปน้อย" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" -msgstr "" +msgstr "ประเภทเอกสาร..., เช่น ลูกค้า" #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' @@ -29957,36 +30198,36 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." -msgstr "" +msgstr "เช่น (55 + 434) / 4 หรือ =Math.sin(Math.PI/2)..." #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. pop.gmail.com / imap.gmail.com" -msgstr "" +msgstr "เช่น pop.gmail.com / imap.gmail.com" #. Description of the 'Default Incoming' (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "" +msgstr "เช่น replies@yourcomany.com. การตอบกลับทั้งหมดจะมาที่กล่องจดหมายนี้" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "e.g. smtp.gmail.com" -msgstr "" +msgstr "เช่น smtp.gmail.com" #: frappe/custom/doctype/custom_field/custom_field.js:98 msgid "e.g.:" -msgstr "" +msgstr "เช่น:" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "emacs" -msgstr "" +msgstr "อีแมคส์" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -29995,89 +30236,89 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "email" -msgstr "" +msgstr "อีเมล" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "email inbox" -msgstr "" +msgstr "กล่องจดหมายอีเมล" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" -msgstr "" +msgstr "ว่างเปล่า" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "" +msgstr "ส่งออก" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "facebook" -msgstr "" +msgstr "เฟซบุ๊ก" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "failed" -msgstr "" +msgstr "ล้มเหลว" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "" +msgstr "เข้าสู่ระบบอย่างยุติธรรม" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "finished" -msgstr "" +msgstr "เสร็จสิ้น" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "gray" -msgstr "" +msgstr "สีเทา" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "green" -msgstr "" +msgstr "สีเขียว" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "grey" -msgstr "" +msgstr "สีเทา" #: frappe/utils/backups.py:399 msgid "gzip not found in PATH! This is required to take a backup." -msgstr "" +msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" -msgstr "" +msgstr "ฮับ" #. Label of the icon (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "icon" -msgstr "" +msgstr "ไอคอน" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "" +msgstr "นำเข้า" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "in minutes" -msgstr "" +msgstr "ในนาที" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -30085,243 +30326,243 @@ msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:46 msgid "just now" -msgstr "" +msgstr "เมื่อสักครู่" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" -msgstr "" +msgstr "ป้ายกำกับ" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "light-blue" -msgstr "" +msgstr "สีฟ้าอ่อน" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "link" -msgstr "" +msgstr "ลิงก์" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "linkedin" -msgstr "" +msgstr "ลิงก์อิน" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "list" -msgstr "" +msgstr "รายการ" #: frappe/www/third_party_apps.html:43 msgid "logged in" -msgstr "" +msgstr "เข้าสู่ระบบแล้ว" #: frappe/website/doctype/web_form/web_form.js:362 msgid "login_required" -msgstr "" +msgstr "ต้องเข้าสู่ระบบ" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "long" -msgstr "" +msgstr "ยาว" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "" +msgstr "นาที" #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" -msgstr "" +msgstr "รวม {0} เข้ากับ {1}" #: frappe/website/doctype/blog_post/templates/blog_post.html:25 #: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 msgid "min read" -msgstr "" +msgstr "อ่านขั้นต่ำ" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "mm-dd-yyyy" -msgstr "" +msgstr "ดด-วว-ปปปป" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "mm/dd/yyyy" -msgstr "" +msgstr "ดด/วว/ปปปป" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "module" -msgstr "" +msgstr "โมดูล" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 msgid "module name..." -msgstr "" +msgstr "ชื่อโมดูล..." #: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 msgid "new" -msgstr "" +msgstr "ใหม่" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" -msgstr "" +msgstr "ประเภทเอกสารใหม่" #. Label of the no_failed (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "no failed attempts" -msgstr "" +msgstr "ไม่มีความพยายามที่ล้มเหลว" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" -msgstr "" +msgstr "โนนซ์" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json msgid "notified" -msgstr "" +msgstr "แจ้งเตือนแล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" -msgstr "" +msgstr "ตอนนี้" #: frappe/public/js/frappe/form/grid_pagination.js:116 msgid "of" -msgstr "" +msgstr "ของ" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "" +msgstr "ผู้ปกครองเก่า" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "" +msgstr "เมื่อยกเลิก" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "" +msgstr "เมื่อเปลี่ยนแปลง" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "" +msgstr "เมื่อส่ง" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "" +msgstr "เมื่อทิ้ง" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "" +msgstr "เมื่ออัปเดต" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "" +msgstr "เมื่ออัปเดตหลังจากส่ง" #: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 #: frappe/www/login.py:112 msgid "or" -msgstr "" +msgstr "หรือ" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "orange" -msgstr "" +msgstr "สีส้ม" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "page" -msgstr "" +msgstr "หน้า" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "pink" -msgstr "" +msgstr "สีชมพู" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "plain" -msgstr "" +msgstr "ธรรมดา" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "print" -msgstr "" +msgstr "พิมพ์" #. Label of the processlist (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "processlist" -msgstr "" +msgstr "รายการกระบวนการ" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "purple" -msgstr "" +msgstr "สีม่วง" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "query-report" -msgstr "" +msgstr "รายงานคำถาม" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "queued" -msgstr "" +msgstr "อยู่ในคิว" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "" +msgstr "อ่าน" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "red" -msgstr "" +msgstr "สีแดง" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 msgid "removed rows for {0}" -msgstr "" +msgstr "ลบแถวสำหรับ {0}" #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" -msgstr "" +msgstr "เปลี่ยนชื่อจาก {0} เป็น {1}" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "report" -msgstr "" +msgstr "รายงาน" #. Label of the response (HTML) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json msgid "response" -msgstr "" +msgstr "การตอบกลับ" #: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" -msgstr "" +msgstr "กู้คืน {0} เป็น {1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" -msgstr "" +msgstr "วินาที" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' @@ -30332,101 +30573,101 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" -msgstr "" +msgstr "กำหนดเวลา" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "" +msgstr "เลือก" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "share" -msgstr "" +msgstr "แชร์" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "short" -msgstr "" +msgstr "สั้น" #: frappe/public/js/frappe/widgets/number_card_widget.js:298 msgid "since last month" -msgstr "" +msgstr "ตั้งแต่เดือนที่แล้ว" #: frappe/public/js/frappe/widgets/number_card_widget.js:297 msgid "since last week" -msgstr "" +msgstr "ตั้งแต่สัปดาห์ที่แล้ว" #: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since last year" -msgstr "" +msgstr "ตั้งแต่ปีที่แล้ว" #: frappe/public/js/frappe/widgets/number_card_widget.js:296 msgid "since yesterday" -msgstr "" +msgstr "ตั้งแต่เมื่อวาน" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "started" -msgstr "" +msgstr "เริ่มต้นแล้ว" #: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." -msgstr "" +msgstr "กำลังเริ่มการตั้งค่า..." #. Description of the 'Group Object Class' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. group" -msgstr "" +msgstr "ค่าข้อความ เช่น กลุ่ม" #. Description of the 'LDAP Group Member attribute' (Data) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. member" -msgstr "" +msgstr "ค่าข้อความ เช่น สมาชิก" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" -msgstr "" +msgstr "ค่าข้อความ เช่น {0} หรือ uid={0},ou=users,dc=example,dc=com" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "submit" -msgstr "" +msgstr "ส่ง" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" -msgstr "" +msgstr "ชื่อแท็ก เช่น #tag" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" -msgstr "" +msgstr "ข้อความในประเภทเอกสาร" #: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" -msgstr "" +msgstr "ฟอร์มนี้" #: frappe/tests/test_translate.py:174 msgid "this shouldn't break" -msgstr "" +msgstr "สิ่งนี้ไม่ควรเสียหาย" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "twitter" -msgstr "" +msgstr "ทวิตเตอร์" #: frappe/public/js/frappe/change_log.html:7 msgid "updated to {0}" -msgstr "" +msgstr "อัปเดตเป็น {0}" #: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" @@ -30434,38 +30675,38 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:360 msgid "values separated by commas" -msgstr "" +msgstr "ค่าที่คั่นด้วยเครื่องหมายจุลภาค" #. Label of the version_table (HTML) field in DocType 'Audit Trail' #: frappe/core/doctype/audit_trail/audit_trail.json msgid "version_table" -msgstr "" +msgstr "ตารางเวอร์ชัน" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" -msgstr "" +msgstr "ผ่านกฎการมอบหมาย" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "via Auto Repeat" -msgstr "" +msgstr "ผ่านการทำซ้ำอัตโนมัติ" #: frappe/core/doctype/data_import/importer.py:271 #: frappe/core/doctype/data_import/importer.py:292 msgid "via Data Import" -msgstr "" +msgstr "ผ่านการนำเข้าข้อมูล" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "via Google Meet" -msgstr "" +msgstr "ผ่าน Google Meet" #: frappe/email/doctype/notification/notification.py:361 msgid "via Notification" -msgstr "" +msgstr "ผ่านการแจ้งเตือน" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 msgid "via {0}" -msgstr "" +msgstr "ผ่าน {0}" #. Option for the 'Code Editor Type' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -30479,13 +30720,13 @@ msgstr "" #: frappe/templates/includes/oauth_confirmation.html:5 msgid "wants to access the following details from your account" -msgstr "" +msgstr "ต้องการเข้าถึงรายละเอียดต่อไปนี้จากบัญชีของคุณ" #. Description of the 'Popover Element' (Check) field in DocType 'Form Tour #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "when clicked on element it will focus popover if present." -msgstr "" +msgstr "เมื่อคลิกที่องค์ประกอบ จะโฟกัสไปที่ป๊อปโอเวอร์หากมีอยู่" #. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -30494,29 +30735,29 @@ msgstr "" #: frappe/printing/page/print/print.js:622 msgid "wkhtmltopdf 0.12.x (with patched qt)." -msgstr "" +msgstr "wkhtmltopdf 0.12.x (พร้อม qt ที่แก้ไขแล้ว)" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "" +msgstr "เขียน" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "yellow" -msgstr "" +msgstr "สีเหลือง" #: frappe/public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" -msgstr "" +msgstr "เมื่อวาน" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "yyyy-mm-dd" -msgstr "" +msgstr "ปปปป-ดด-วว" #: frappe/desk/doctype/event/event.js:87 #: frappe/public/js/frappe/form/footer/form_timeline.js:547 @@ -30538,7 +30779,7 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:77 msgid "{0} ({1}) (1 row mandatory)" -msgstr "" +msgstr "{0} ({1}) (1 แถวจำเป็น)" #: frappe/public/js/frappe/views/gantt/gantt_view.js:53 msgid "{0} ({1}) - {2}%" @@ -30551,43 +30792,43 @@ msgstr "" #: frappe/public/js/frappe/views/calendar/calendar.js:30 msgid "{0} Calendar" -msgstr "" +msgstr "ปฏิทิน {0}" #: frappe/public/js/frappe/views/reports/report_view.js:570 msgid "{0} Chart" -msgstr "" +msgstr "แผนภูมิ {0}" #: frappe/core/page/dashboard_view/dashboard_view.js:67 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" -msgstr "" +msgstr "แดชบอร์ด {0}" #: frappe/public/js/frappe/form/grid_row.js:470 #: frappe/public/js/frappe/list/list_settings.js:227 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" -msgstr "" +msgstr "ฟิลด์ {0}" #: frappe/integrations/doctype/google_calendar/google_calendar.py:376 msgid "{0} Google Calendar Events synced." -msgstr "" +msgstr "กิจกรรม Google Calendar {0} ซิงค์แล้ว" #: frappe/integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." -msgstr "" +msgstr "รายชื่อ Google {0} ซิงค์แล้ว" #: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" -msgstr "" +msgstr "ชอบ {0}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 #: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 #: frappe/www/list.html:8 msgid "{0} List" -msgstr "" +msgstr "รายการ {0}" #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" @@ -30595,598 +30836,599 @@ msgstr "" #: frappe/public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" -msgstr "" +msgstr "แผนที่ {0}" #: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" -msgstr "" +msgstr "ชื่อ {0}" #: frappe/model/base_document.py:1154 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" -msgstr "" +msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หลังจากส่งจาก {2} เป็น {3}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 #: frappe/public/js/frappe/widgets/chart_widget.js:366 msgid "{0} Report" -msgstr "" +msgstr "รายงาน {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" -msgstr "" +msgstr "รายงาน {0}" #: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" -msgstr "" +msgstr "การตั้งค่า {0}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 #: frappe/public/js/frappe/views/treeview.js:152 msgid "{0} Tree" -msgstr "" +msgstr "ต้นไม้ {0}" #: frappe/public/js/frappe/form/footer/form_timeline.js:128 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 msgid "{0} Web page views" -msgstr "" +msgstr "การดูหน้าเว็บ {0}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 msgid "{0} Workspace" -msgstr "" +msgstr "พื้นที่ทำงาน {0}" #: frappe/public/js/frappe/form/link_selector.js:225 msgid "{0} added" -msgstr "" +msgstr "เพิ่ม {0}" #: frappe/public/js/frappe/form/controls/data.js:204 msgid "{0} already exists. Select another name" -msgstr "" +msgstr "{0} มีอยู่แล้ว เลือกชื่ออื่น" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" -msgstr "" +msgstr "{0} ยกเลิกการสมัครแล้ว" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" -msgstr "" +msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" -msgstr "" +msgstr "{0} และ {1}" #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 msgid "{0} are currently {1}" -msgstr "" +msgstr "{0} ปัจจุบันคือ {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" -msgstr "" +msgstr "ต้องการ {0}" #: frappe/desk/form/assign_to.py:286 msgid "{0} assigned a new task {1} {2} to you" -msgstr "" +msgstr "{0} มอบหมายงานใหม่ {1} {2} ให้คุณ" #: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" -msgstr "" +msgstr "{0} มอบหมาย {1}: {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" msgid "{0} attached {1}" -msgstr "" +msgstr "{0} แนบ {1}" #: frappe/core/doctype/system_settings/system_settings.py:150 msgid "{0} can not be more than {1}" -msgstr "" +msgstr "{0} ต้องไม่เกิน {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" -msgstr "" +msgstr "{0} ยกเลิกเอกสารนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 msgctxt "Form timeline" msgid "{0} cancelled this document {1}" -msgstr "" +msgstr "{0} ยกเลิกเอกสารนี้ {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." -msgstr "" +msgstr "{0} ไม่สามารถแก้ไขได้เนื่องจากยังไม่ได้ยกเลิก โปรดยกเลิกเอกสารก่อนสร้างการแก้ไข" #: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" -msgstr "" +msgstr "{0} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" -msgstr "" +msgstr "{0} เปลี่ยนค่าของ {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" -msgstr "" +msgstr "{0} เปลี่ยนค่าของ {1} {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" -msgstr "" +msgstr "{0} เปลี่ยนค่าของ {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" -msgstr "" +msgstr "{0} เปลี่ยนค่าของ {1} {2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:444 msgctxt "Form timeline" msgid "{0} changed {1} to {2}" -msgstr "" +msgstr "{0} เปลี่ยน {1} เป็น {2}" #: frappe/website/doctype/blog_post/blog_post.py:382 msgid "{0} comments" -msgstr "" +msgstr "{0} ความคิดเห็น" #: frappe/core/doctype/doctype/doctype.py:1605 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." -msgstr "" +msgstr "{0} มีนิพจน์ Fetch From ที่ไม่ถูกต้อง Fetch From ไม่สามารถอ้างอิงตัวเองได้" #: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" -msgstr "" +msgstr "{0} สร้างสำเร็จ" #: frappe/public/js/frappe/form/footer/form_timeline.js:141 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" -msgstr "" +msgstr "{0} สร้างสิ่งนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 msgctxt "Form timeline" msgid "{0} created this document {1}" -msgstr "" +msgstr "{0} สร้างเอกสารนี้ {1}" #: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" -msgstr "" +msgstr "{0} วัน" #: frappe/public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" -msgstr "" +msgstr "{0} วันที่ผ่านมา" #: frappe/website/doctype/website_settings/website_settings.py:96 #: frappe/website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" -msgstr "" +msgstr "{0} ไม่มีอยู่ในแถว {1}" #: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว" + +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." -msgstr "" +msgstr "ไม่สามารถกำหนดรูปแบบ {0} จากค่าที่อยู่ในคอลัมน์นี้ได้ กำหนดค่าเริ่มต้นเป็น {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" -msgstr "" +msgstr "{0} จาก {1} ถึง {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" -msgstr "" +msgstr "{0} จาก {1} ถึง {2} ในแถว #{3}" #: frappe/public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" -msgstr "" +msgstr "{0} ชั่วโมง" #: frappe/core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." -msgstr "" +msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" -msgstr "" +msgstr "{0} ออกจากการสนทนาใน {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" -msgstr "" +msgstr "{0} ชั่วโมงที่ผ่านมา" #: frappe/website/doctype/web_form/templates/web_form.html:148 msgid "{0} if you are not redirected within {1} seconds" -msgstr "" +msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยนเส้นทางภายใน {1} วินาที" #: frappe/website/doctype/website_settings/website_settings.py:102 #: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" -msgstr "" +msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง URL และรายการลูกได้" #: frappe/core/doctype/doctype/doctype.py:934 msgid "{0} is a mandatory field" -msgstr "" +msgstr "{0} เป็นฟิลด์ที่จำเป็น" #: frappe/core/doctype/file/file.py:544 msgid "{0} is a not a valid zip file" -msgstr "" +msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง" #: frappe/core/doctype/doctype/doctype.py:1618 msgid "{0} is an invalid Data field." -msgstr "" +msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถูกต้อง" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 msgid "{0} is an invalid email address in 'Recipients'" -msgstr "" +msgstr "{0} เป็นที่อยู่อีเมลที่ไม่ถูกต้องใน 'ผู้รับ'" #: frappe/public/js/frappe/views/reports/report_view.js:1468 msgid "{0} is between {1} and {2}" -msgstr "" +msgstr "{0} อยู่ระหว่าง {1} และ {2}" #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 #: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 msgid "{0} is currently {1}" -msgstr "" +msgstr "{0} ปัจจุบันคือ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1437 msgid "{0} is equal to {1}" -msgstr "" +msgstr "{0} เท่ากับ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1457 msgid "{0} is greater than or equal to {1}" -msgstr "" +msgstr "{0} มากกว่าหรือเท่ากับ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1447 msgid "{0} is greater than {1}" -msgstr "" +msgstr "{0} มากกว่า {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1462 msgid "{0} is less than or equal to {1}" -msgstr "" +msgstr "{0} น้อยกว่าหรือเท่ากับ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1452 msgid "{0} is less than {1}" -msgstr "" +msgstr "{0} น้อยกว่า {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1487 msgid "{0} is like {1}" -msgstr "" +msgstr "{0} คล้ายกับ {1}" #: frappe/email/doctype/email_account/email_account.py:193 msgid "{0} is mandatory" +msgstr "{0} เป็นสิ่งจำเป็น" + +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" msgstr "" #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" -msgstr "" +msgstr "{0} ไม่ใช่ฟิลด์ของประเภทเอกสาร {1}" #: frappe/www/printview.py:384 msgid "{0} is not a raw printing format." -msgstr "" +msgstr "{0} ไม่ใช่รูปแบบการพิมพ์ดิบ" #: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." -msgstr "" +msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง กำลังเปลี่ยนเส้นทางไปยังปฏิทินเริ่มต้น" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 msgid "{0} is not a valid Cron expression." -msgstr "" +msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง" #: frappe/public/js/frappe/form/controls/dynamic_link.js:27 msgid "{0} is not a valid DocType for Dynamic Link" -msgstr "" +msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" -msgstr "" +msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง" #: frappe/geo/doctype/country/country.py:30 msgid "{0} is not a valid ISO 3166 ALPHA-2 code." -msgstr "" +msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" -msgstr "" +msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" -msgstr "" +msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง" #: frappe/model/workflow.py:189 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." -msgstr "" +msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" -msgstr "" +msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" -msgstr "" +msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" -msgstr "" +msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งในสิ่งต่อไปนี้ {1}" #: frappe/core/doctype/file/file.py:524 msgid "{0} is not a zip file" -msgstr "" +msgstr "{0} ไม่ใช่ไฟล์ zip" #: frappe/public/js/frappe/views/reports/report_view.js:1442 msgid "{0} is not equal to {1}" -msgstr "" +msgstr "{0} ไม่เท่ากับ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is not like {1}" -msgstr "" +msgstr "{0} ไม่คล้ายกับ {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1483 msgid "{0} is not one of {1}" -msgstr "" +msgstr "{0} ไม่ใช่หนึ่งใน {1}" #: frappe/public/js/frappe/views/reports/report_view.js:1493 msgid "{0} is not set" -msgstr "" +msgstr "{0} ไม่ได้ตั้งค่า" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" -msgstr "" +msgstr "{0} เป็นรูปแบบการพิมพ์เริ่มต้นสำหรับประเภทเอกสาร {1} แล้ว" #: frappe/public/js/frappe/views/reports/report_view.js:1476 msgid "{0} is one of {1}" -msgstr "" +msgstr "{0} เป็นหนึ่งใน {1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" -msgstr "" +msgstr "{0} เป็นสิ่งจำเป็น" #: frappe/public/js/frappe/views/reports/report_view.js:1492 msgid "{0} is set" -msgstr "" +msgstr "{0} ถูกตั้งค่า" #: frappe/public/js/frappe/views/reports/report_view.js:1471 msgid "{0} is within {1}" -msgstr "" +msgstr "{0} อยู่ภายใน {1}" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" -msgstr "" +msgstr "{0} รายการที่เลือก" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" -msgstr "" +msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:152 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" -msgstr "" +msgstr "{0} แก้ไขสิ่งนี้ล่าสุด" #: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" -msgstr "" +msgstr "{0} เข้าสู่ระบบแล้ว" #: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" -msgstr "" +msgstr "{0} ออกจากระบบ: {1}" #: frappe/public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "" +msgstr "{0} นาที" #: frappe/desk/notifications.py:408 msgid "{0} mentioned you in a comment in {1} {2}" -msgstr "" +msgstr "{0} กล่าวถึงคุณในความคิดเห็นใน {1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:50 msgid "{0} minutes ago" -msgstr "" +msgstr "{0} นาทีที่ผ่านมา" #: frappe/public/js/frappe/utils/pretty_date.js:68 msgid "{0} months ago" -msgstr "" +msgstr "{0} เดือนที่ผ่านมา" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" -msgstr "" +msgstr "{0} ต้องอยู่หลังจาก {1}" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" -msgstr "" +msgstr "{0} ต้องเริ่มต้นด้วย '{1}'" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" -msgstr "" +msgstr "{0} ต้องเท่ากับ '{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" -msgstr "" +msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" -msgstr "" +msgstr "{0} ต้องเป็นหนึ่งใน {1}" #: frappe/model/base_document.py:876 msgid "{0} must be set first" -msgstr "" +msgstr "{0} ต้องตั้งค่าก่อน" #: frappe/model/base_document.py:729 msgid "{0} must be unique" -msgstr "" +msgstr "{0} ต้องไม่ซ้ำกัน" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" -msgstr "" +msgstr "{0} ต้องเป็น {1} {2}" #: frappe/core/doctype/language/language.py:79 msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." -msgstr "" +msgstr "{0} ต้องเริ่มต้นและสิ้นสุดด้วยตัวอักษร และสามารถมีได้เฉพาะตัวอักษร, ขีดกลาง หรือขีดล่างเท่านั้น" #: frappe/workflow/doctype/workflow/workflow.py:90 msgid "{0} not a valid State" -msgstr "" +msgstr "{0} ไม่ใช่สถานะที่ถูกต้อง" #: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" -msgstr "" +msgstr "{0} ไม่อนุญาตให้เปลี่ยนชื่อ" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" -msgstr "" +msgstr "ไม่พบ {0}" #: frappe/core/doctype/report/report.py:427 #: frappe/public/js/frappe/list/list_view.js:1068 msgid "{0} of {1}" -msgstr "" +msgstr "{0} ของ {1}" #: frappe/public/js/frappe/list/list_view.js:1070 msgid "{0} of {1} ({2} rows with children)" -msgstr "" +msgstr "{0} ของ {1} ({2} แถวที่มีลูก)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." -msgstr "" +msgstr "เฉพาะ {0} เท่านั้น" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" -msgstr "" +msgstr "{0} หรือ {1}" #: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" -msgstr "" +msgstr "ระเบียน {0} ถูกลบ" #: frappe/public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." -msgstr "" +msgstr "ระเบียน {0} จะไม่ถูกลบโดยอัตโนมัติ" #: frappe/public/js/frappe/logtypes.js:29 msgid "{0} records are retained for {1} days." -msgstr "" +msgstr "ระเบียน {0} ถูกเก็บไว้เป็นเวลา {1} วัน" #: frappe/core/doctype/user_permission/user_permission_list.js:179 msgid "{0} records deleted" -msgstr "" +msgstr "ระเบียน {0} ถูกลบ" #: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" -msgstr "" +msgstr "ระเบียน {0} จะถูกส่งออก" #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" -msgstr "" +msgstr "{0} ลบไฟล์แนบ {1}" #: frappe/desk/doctype/todo/todo.py:58 msgid "{0} removed their assignment." -msgstr "" +msgstr "{0} ลบการมอบหมายของพวกเขา" #: frappe/public/js/frappe/roles_editor.js:62 msgid "{0} role does not have permission on any doctype" -msgstr "" +msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" -msgstr "" +msgstr "{0} บันทึกสำเร็จ" #: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" -msgstr "" +msgstr "{0} มอบหมายงานนี้ให้ตัวเอง: {1}" #: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" -msgstr "" +msgstr "{0} แชร์เอกสาร {1} {2} กับคุณ" #: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" -msgstr "" +msgstr "{0} แชร์เอกสารนี้กับทุกคน" #: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" -msgstr "" +msgstr "{0} แชร์เอกสารนี้กับ {1}" #: frappe/core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" -msgstr "" +msgstr "{0} ควรถูกจัดทำดัชนีเพราะถูกอ้างอิงในการเชื่อมต่อแดชบอร์ด" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 msgid "{0} should not be same as {1}" -msgstr "" +msgstr "{0} ไม่ควรเหมือนกับ {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" -msgstr "" +msgstr "{0} ส่งเอกสารนี้" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" msgid "{0} submitted this document {1}" -msgstr "" +msgstr "{0} ส่งเอกสารนี้ {1}" #: frappe/email/doctype/email_group/email_group.py:62 #: frappe/email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" -msgstr "" +msgstr "เพิ่มผู้ติดตาม {0}" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" -msgstr "" +msgstr "{0} เพื่อหยุดรับอีเมลประเภทนี้" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 #: frappe/public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" -msgstr "" +msgstr "{0} ถึง {1}" #: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" -msgstr "" +msgstr "{0} ยกเลิกการแชร์เอกสารนี้กับ {1}" #: frappe/custom/doctype/customize_form/customize_form.py:253 msgid "{0} updated" -msgstr "" +msgstr "{0} อัปเดตแล้ว" #: frappe/public/js/frappe/form/controls/multiselect_list.js:198 msgid "{0} values selected" -msgstr "" +msgstr "เลือกค่า {0} แล้ว" #: frappe/public/js/frappe/form/footer/form_timeline.js:184 msgid "{0} viewed this" -msgstr "" +msgstr "{0} ดูสิ่งนี้" #: frappe/public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "" +msgstr "{0} สัปดาห์" #: frappe/public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" -msgstr "" +msgstr "{0} สัปดาห์ที่ผ่านมา" #: frappe/public/js/frappe/utils/pretty_date.js:39 msgid "{0} y" -msgstr "" +msgstr "{0} ปี" #: frappe/public/js/frappe/utils/pretty_date.js:72 msgid "{0} years ago" -msgstr "" +msgstr "{0} ปีที่ผ่านมา" #: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" -msgstr "" +msgstr "เพิ่ม {0} {1}" #: frappe/public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" -msgstr "" +msgstr "เพิ่ม {0} {1} ในแดชบอร์ด {2}" #: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" -msgstr "" +msgstr "{0} {1} มีอยู่แล้ว" #: frappe/model/base_document.py:987 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" @@ -31194,123 +31436,123 @@ msgstr "" #: frappe/utils/nestedset.py:340 msgid "{0} {1} cannot be a leaf node as it has children" -msgstr "" +msgstr "{0} {1} ไม่สามารถเป็นโหนดใบได้เนื่องจากมีลูก" #: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" -msgstr "" +msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้าหมายใหม่เพื่อรวม" #: frappe/public/js/frappe/form/form.js:951 msgid "{0} {1} is linked with the following submitted documents: {2}" -msgstr "" +msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" -msgstr "" +msgstr "ไม่พบ {0} {1}" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." -msgstr "" +msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน" #: frappe/model/base_document.py:1115 msgid "{0}, Row {1}" -msgstr "" +msgstr "{0}, แถว {1}" #: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 msgid "{0}/{1} complete | Please leave this tab open until completion." -msgstr "" +msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็บนี้ไว้จนกว่าจะเสร็จสิ้น" #: frappe/model/base_document.py:1120 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" -msgstr "" +msgstr "{0}: '{1}' ({3}) จะถูกตัดออก เนื่องจากจำนวนตัวอักษรสูงสุดที่อนุญาตคือ {2}" #: frappe/core/doctype/doctype/doctype.py:1800 msgid "{0}: Cannot set Amend without Cancel" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก" #: frappe/core/doctype/doctype/doctype.py:1818 msgid "{0}: Cannot set Assign Amend if not Submittable" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้" #: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Assign Submit if not Submittable" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้" #: frappe/core/doctype/doctype/doctype.py:1795 msgid "{0}: Cannot set Cancel without Submit" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง" #: frappe/core/doctype/doctype/doctype.py:1802 msgid "{0}: Cannot set Import without Create" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง" #: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน" #: frappe/core/doctype/doctype/doctype.py:1822 msgid "{0}: Cannot set import as {1} is not importable" -msgstr "" +msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้เนื่องจาก {1} ไม่สามารถนำเข้าได้" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" -msgstr "" +msgstr "{0}: ล้มเหลวในการแนบเอกสารที่เกิดซ้ำใหม่ เพื่อเปิดใช้งานการแนบเอกสารในอีเมลแจ้งเตือนการทำซ้ำอัตโนมัติ โปรดเปิดใช้งาน {1} ในการตั้งค่าการพิมพ์" #: frappe/core/doctype/doctype/doctype.py:1426 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" -msgstr "" +msgstr "{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำได้เนื่องจากมีค่าที่ซ้ำกัน" #: frappe/core/doctype/doctype/doctype.py:1334 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" -msgstr "" +msgstr "{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น" #: frappe/core/doctype/doctype/doctype.py:1293 msgid "{0}: Field {1} of type {2} cannot be mandatory" -msgstr "" +msgstr "{0}: ฟิลด์ {1} ประเภท {2} ไม่สามารถบังคับได้" #: frappe/core/doctype/doctype/doctype.py:1281 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" -msgstr "" +msgstr "{0}: ชื่อฟิลด์ {1} ปรากฏหลายครั้งในแถว {2}" #: frappe/core/doctype/doctype/doctype.py:1413 msgid "{0}: Fieldtype {1} for {2} cannot be unique" -msgstr "" +msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถเป็นค่าที่ไม่ซ้ำได้" #: frappe/core/doctype/doctype/doctype.py:1755 msgid "{0}: No basic permissions set" -msgstr "" +msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน" #: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" -msgstr "" +msgstr "{0}: อนุญาตให้มีกฎเพียงข้อเดียวที่มีบทบาท ระดับ และ {1} เดียวกัน" #: frappe/core/doctype/doctype/doctype.py:1315 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" -msgstr "" +msgstr "{0}: ตัวเลือกต้องเป็นประเภทเอกสารที่ถูกต้องสำหรับฟิลด์ {1} ในแถว {2}" #: frappe/core/doctype/doctype/doctype.py:1304 msgid "{0}: Options required for Link or Table type field {1} in row {2}" -msgstr "" +msgstr "{0}: ต้องการตัวเลือกสำหรับฟิลด์ประเภทลิงก์หรือตาราง {1} ในแถว {2}" #: frappe/core/doctype/doctype/doctype.py:1322 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" -msgstr "" +msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกับชื่อประเภทเอกสาร {2} สำหรับฟิลด์ {3}" #: frappe/public/js/frappe/form/workflow.js:45 msgid "{0}: Other permission rules may also apply" -msgstr "" +msgstr "{0}: กฎสิทธิ์อื่น ๆ อาจมีผลบังคับใช้ด้วย" #: frappe/core/doctype/doctype/doctype.py:1784 msgid "{0}: Permission at level 0 must be set before higher levels are set" -msgstr "" +msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า" #: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" -msgstr "" +msgstr "{0}: คุณสามารถเพิ่มขีดจำกัดสำหรับฟิลด์ได้หากจำเป็นผ่าน {1}" #: frappe/core/doctype/doctype/doctype.py:1268 msgid "{0}: fieldname cannot be set to reserved keyword {1}" -msgstr "" +msgstr "{0}: ชื่อฟิลด์ไม่สามารถตั้งค่าเป็นคำสำรอง {1} ได้" #: frappe/contacts/doctype/address/address.js:35 #: frappe/contacts/doctype/contact/contact.js:88 @@ -31319,51 +31561,51 @@ msgstr "" #: frappe/workflow/doctype/workflow_action/workflow_action.py:172 msgid "{0}: {1} is set to state {2}" -msgstr "" +msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" -msgstr "" +msgstr "{0}: {1} เทียบกับ {2}" #: frappe/core/doctype/doctype/doctype.py:1434 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" -msgstr "" +msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถจัดทำดัชนีได้" #: frappe/public/js/frappe/form/quick_entry.js:195 msgid "{1} saved" -msgstr "" +msgstr "{1} ถูกบันทึกแล้ว" #: frappe/public/js/frappe/utils/datatable.js:12 msgid "{count} cell copied" -msgstr "" +msgstr "คัดลอกเซลล์ {count} แล้ว" #: frappe/public/js/frappe/utils/datatable.js:13 msgid "{count} cells copied" -msgstr "" +msgstr "คัดลอกเซลล์ {count} แล้ว" #: frappe/public/js/frappe/utils/datatable.js:16 msgid "{count} row selected" -msgstr "" +msgstr "เลือกแถว {count} แล้ว" #: frappe/public/js/frappe/utils/datatable.js:17 msgid "{count} rows selected" -msgstr "" +msgstr "เลือกแถว {count} แล้ว" #: frappe/core/doctype/doctype/doctype.py:1488 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." -msgstr "" +msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ที่ถูกต้อง ควรเป็น {{field_name}}" #: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" -msgstr "" +msgstr "{} เสร็จสมบูรณ์" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" -msgstr "" +msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" -msgstr "" +msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}" #. Count format of shortcut in the Website Workspace #: frappe/website/workspace/website/website.json @@ -31372,35 +31614,35 @@ msgstr "" #: frappe/core/doctype/log_settings/log_settings.py:54 msgid "{} does not support automated log clearing." -msgstr "" +msgstr "{} ไม่รองรับการล้างบันทึกอัตโนมัติ" #: frappe/core/doctype/audit_trail/audit_trail.py:41 msgid "{} field cannot be empty." -msgstr "" +msgstr "ฟิลด์ {} ไม่สามารถว่างเปล่าได้" #: frappe/email/doctype/email_account/email_account.py:223 #: frappe/email/doctype/email_account/email_account.py:231 msgid "{} has been disabled. It can only be enabled if {} is checked." -msgstr "" +msgstr "{} ถูกปิดใช้งาน สามารถเปิดใช้งานได้เฉพาะเมื่อเลือก {}" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." -msgstr "" +msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง" #: frappe/commands/utils.py:562 msgid "{} not found in PATH! This is required to access the console." -msgstr "" +msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อเข้าถึงคอนโซล" #: frappe/database/db_manager.py:99 msgid "{} not found in PATH! This is required to restore the database." -msgstr "" +msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อกู้คืนฐานข้อมูล" #: frappe/utils/backups.py:466 msgid "{} not found in PATH! This is required to take a backup." -msgstr "" +msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 #: frappe/public/js/frappe/file_uploader/WebLink.vue:4 msgid "← Back to upload files" -msgstr "" +msgstr "← กลับไปที่อัปโหลดไฟล์" diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po index 5a7356b12c..d583e7027f 100644 --- a/frappe/locale/tr.po +++ b/frappe/locale/tr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "{1} satırındaki {0} türü için 'Liste Görünümü' seçeneğine izi msgid "'Recipients' not specified" msgstr "'Alıcılar' belirtilmemiş" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' geçerli bir URL değil" @@ -141,7 +141,7 @@ msgstr "1 Gün" msgid "1 Google Calendar Event synced." msgstr "1 Google Takvim Etkinliği senkronize edildi." -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1 Rapor" @@ -149,7 +149,7 @@ msgstr "1 Rapor" msgid "1 comment" msgstr "1 yorum" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "1 gün önce" @@ -158,17 +158,17 @@ msgid "1 hour" msgstr "1 saat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1 Saat Önce" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1 Dakika Önce" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "1 Ay Önce" @@ -180,37 +180,37 @@ msgstr "1 / 2" msgid "1 record will be exported" msgstr "1 Kayıt Dışa Aktarılacak" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "1 saniye önce" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "1 Hafta Önce" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "1 Yıl Önce" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "2 saat önce" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "2 ay önce" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "2 hafta önce" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "2 yıl önce" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "3 dakika önce" @@ -226,7 +226,7 @@ msgstr "4 Saat" msgid "5 Records" msgstr "5 Kayıt" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "5 Gün Önce" @@ -709,11 +709,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "Merhaba," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "Raporlar & Kayıtlar" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "Uyarı: Bu alan sistem tarafından oluşturulmuştur ve gelecekteki bir güncelleme ile üzerine yazılabilir. Bunun yerine {0} kullanarak değiştirin." @@ -740,6 +735,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Bir DocType'ın adı bir harfle başlamalıdır ve yalnızca harfler, sayılar, boşluklar, alt çizgiler ve tire işaretlerinden oluşabilir" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "Öne çıkan bir gönderinin kapak resmi olmalıdır" @@ -774,6 +774,13 @@ msgstr "Bu para birimi için bir sembol. Örnek: ₺" msgid "A template already exists for field {0} of {1}" msgstr "{1} alanınındaki {0} alanı için bir şablon zaten mevcut" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "Bir kelimeyi tek başına tahmin etmek kolaydır." @@ -882,7 +889,7 @@ msgstr "API Anahtarı yeniden oluşturulamaz." #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "API Logging" -msgstr "" +msgstr "API Günlüğü" #. Label of the api_method (Data) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -892,7 +899,7 @@ msgstr "API Yöntemi" #. Name of a DocType #: frappe/core/doctype/api_request_log/api_request_log.json msgid "API Request Log" -msgstr "" +msgstr "API İstek Günlüğü" #. Label of the api_secret (Password) field in DocType 'User' #. Label of the api_secret (Password) field in DocType 'Email Account' @@ -1018,7 +1025,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1035,7 +1041,7 @@ msgstr "Aksiyon / Rota" msgid "Action Complete" msgstr "Eylem Tamamlandı" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "Eylem Başarısız" @@ -1084,10 +1090,10 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "İşlemler" @@ -1149,8 +1155,8 @@ msgstr "Aktivite Günlüğü" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "Yeni" @@ -1167,7 +1173,7 @@ msgstr "Ekle / Güncelle" msgid "Add A New Rule" msgstr "Yeni Kural Ekle" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dosya Ekle" @@ -1191,7 +1197,7 @@ msgstr "Üste Kenarlık Ekle" msgid "Add Card to Dashboard" msgstr "Kartı Panoya Ekle" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "Gösterge Paneline Grafik Ekle" @@ -1200,8 +1206,8 @@ msgid "Add Child" msgstr "Alt öğe ekle" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1237,7 +1243,7 @@ msgid "Add Gray Background" msgstr "Gri Arka Plan Ekle" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "Grup Ekle" @@ -1262,7 +1268,7 @@ msgstr "Katılımcı Ekle" msgid "Add Query Parameters" msgstr "Sorgu Parametreleri Ekle" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "Rol Ekle" @@ -1272,7 +1278,7 @@ msgstr "Satır Ekle" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "İmza Ekle" @@ -1295,12 +1301,12 @@ msgstr "Abonelere Ekle " msgid "Add Tags" msgstr "Etiket Ekle" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Etiket Ekle" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "Şablon Ekle" @@ -1407,7 +1413,7 @@ msgid "Add tab" msgstr "Sekme Ekle" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "Gösterge Paneline Ekle" @@ -1435,7 +1441,7 @@ msgstr "Yeni {0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Added" -msgstr "Eklendi" +msgstr "" #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' @@ -1562,11 +1568,11 @@ msgstr "Yönetim" msgid "Administrator" msgstr "Yönetici" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "Yönetici Giriş Yaptı" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Yönetici, IP Adresi {2} üzerinden {1} yoluyla {0} adresine erişim sağladı." @@ -1674,6 +1680,14 @@ msgstr "Uyarı" msgid "Alerts and Notifications" msgstr "Uyarılar ve Bildirimler" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1714,7 +1728,6 @@ msgstr "Değer Hizala" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -2045,6 +2058,12 @@ msgstr "Alıntılara İzin Ver" msgid "Allowed Modules" msgstr "İzin Verilen Modüller" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2061,7 +2080,43 @@ msgstr "İzin verilen gömülü alan adları" msgid "Allowing DocType, DocType. Be careful!" msgstr "DocType için izin veriliyor. Dikkatli olun!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "Zaten kayıltı" @@ -2152,7 +2207,7 @@ msgstr "Değiştiriliyor" msgid "Amendment Naming Override" msgstr "Değişiklik Adlandırma Geçersiz Kılma" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "Değişikliğe İzin Verilmiyor" @@ -2160,7 +2215,7 @@ msgstr "Değişikliğe İzin Verilmiyor" msgid "Amendment naming rules updated." msgstr "Değişiklik adlandırma kuralları güncellendi." -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu" @@ -2241,16 +2296,6 @@ msgstr "Sistem Yöneticisi haricinde, Kullanıcı İzinlerini Ayarlama hakkına msgid "App" msgstr "Uygulama" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "Uygulama İstemci Kimliği" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "Uygulama İstemci Gizli Anahtarı" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2264,21 +2309,24 @@ msgstr "Uygulama Logosu" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "Uygulama İsmi" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "Modül için uygulama bulunamadı: {0}" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "{0} Uygulaması yüklü değil" @@ -2343,7 +2391,7 @@ msgstr "Uygulandı" msgid "Apply" msgstr "Uygula" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Arama Kuralı Uygula" @@ -2424,7 +2472,7 @@ msgstr "Arşivlendi" msgid "Archived Columns" msgstr "Arşivlenmiş Sütunlar" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "Atamaları temizlemek istediğinizen emin misiniz?" @@ -2456,7 +2504,7 @@ msgstr "Sekmeyi silmek istediğinizden emin misiniz? Sekmedeki alanlarla birlikt msgid "Are you sure you want to discard the changes?" msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?" @@ -2492,10 +2540,6 @@ msgstr "Tüm özelleştirmeleri sıfırlamak istediğinizden emin misiniz?" msgid "Are you sure you want to save this document?" msgstr "Bu belgeyi kaydetmek istediğinizden emin misiniz?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "Bu bülteni şimdi göndermek istediğinizden emin misiniz?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2528,16 +2572,16 @@ msgstr "Talebiniz doğrultusunda, hesabınız ve {1} e-postasıyla ilişkili {0} msgid "Assign Condition" msgstr "Koşulu Ata" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "Ata" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Ata" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "Kullanıcı Grubuna Ata" @@ -2689,7 +2733,7 @@ msgstr "En az bir Üst Belge Türü alanı zorunludur" msgid "Attach" msgstr "Ekle" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "Yazdırma Dosyasını Ekle" @@ -2749,9 +2793,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "Bağlı Olduğu Ad, bir metin (string) veya tam sayı (integer) olmalıdır." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "Belge Eki" @@ -2778,20 +2820,17 @@ msgid "Attachment Removed" msgstr "Ek Kaldırıldı" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "Belge Ekleri" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "QZ Tray’e Bağlanmaya Çalışılıyor…" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "QZ Tray başlatılmaya çalışılıyor..." @@ -2799,11 +2838,6 @@ msgstr "QZ Tray başlatılmaya çalışılıyor..." msgid "Attribution" msgstr "Özellik" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "Hedef Kitle" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2848,6 +2882,11 @@ msgstr "E-posta Hesabından e-postalar alınırken kimlik doğrulama başarısı msgid "Author" msgstr "Yazar" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -3082,7 +3121,7 @@ msgstr "Profil Resmi" msgid "Average" msgstr "Ortalama" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "{0} Ortalaması" @@ -3187,7 +3226,7 @@ msgstr "B9" msgid "BCC" msgstr "BCC" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "BCC" @@ -3230,7 +3269,7 @@ msgstr "Arkaplan Resmi" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "Arkaplan Görevleri" @@ -3836,7 +3875,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "Bilgi" @@ -3959,10 +3998,8 @@ msgstr "" msgid "Camera" msgstr "Kamera" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4029,7 +4066,7 @@ msgstr "{0} mevcut olmadığı için {0} adresini {1} olarak yeniden adlandıram msgid "Cancel" msgstr "İptal" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "İptal" @@ -4047,11 +4084,7 @@ msgstr "Tümünü İptal Et" msgid "Cancel All Documents" msgstr "Tüm Belgeleri İptal Et" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "Programı İptal Et" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} belge iptal edilsin mi?" @@ -4118,11 +4151,11 @@ msgstr "Göndermeden önce iptal edilemez. Geçişe bakın {0}" msgid "Cannot cancel {0}." msgstr "{0} iptal edilemez." -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Docstatus (Doctype Durumu) 0 değerinden (Taslak) 2 değerine (İptal Edildi) değiştirilemiyor" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Docstatus (Doctype Durumu) 1 değerinden (Gönderildi) 0 değerine (Taslak) değiştirilemiyor" @@ -4150,7 +4183,7 @@ msgstr "Diğer kullanıcılar adına özel çalışma alanı oluşturulamıyor" msgid "Cannot delete Home and Attachments folders" msgstr "Ana Sayfa ve Ekler klasörleri silinemez" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Silme veya iptal etme işlemi yapılamaz. {0} {1} ile {2} {3} {4} ilişkilendirilmiş." @@ -4205,7 +4238,7 @@ msgstr "Standart grafikler düzenlenemez" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Standart bir raporu düzenleyemezsiniz. Lütfen bir kopyasını veya yeni bir rapor oluşturun." -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "İptal edilen belge düzenlenemez" @@ -4242,7 +4275,7 @@ msgstr "Tek bir yazdırma biçimine birden fazla yazıcı ile eşleşme yapılam msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "İptal edilen belgeye bağlantı verilemiyor: {0}" @@ -4287,7 +4320,7 @@ msgstr "{0} güncellenemiyor" msgid "Cannot use sub-query in order by" msgstr "Alt sorguyu şu sırayla kullanamazsınız" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "{0} sıraya/gruplamaya göre kullanılamaz" @@ -4313,7 +4346,7 @@ msgstr "Kart" msgid "Card Break" msgstr "Kart Sonu" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "Kart Etiketi" @@ -4344,10 +4377,6 @@ msgstr "Kategori Açıklaması" msgid "Category Name" msgstr "Kategori Adı" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "Kuruş" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4456,7 +4485,7 @@ msgstr "Grafik Yapılandırması" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "Grafik Adı" @@ -4513,10 +4542,6 @@ msgstr "Kontrol et" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "Kırık bağlantıları kontrol edin" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4540,10 +4565,6 @@ msgstr "Kullanıcıyı kaydetmeden önce bir seri seçmeye zorlamak istiyorsanı msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "Kırık bağlantılar kontrol ediliyor..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "Kontrol ediliyor bekleyin" @@ -4590,6 +4611,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir." +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "Mevcut Kartı Seçin veya Yeni Kart Oluşturun" @@ -4629,15 +4654,19 @@ msgstr "Şehir" msgid "Clear" msgstr "Açık" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "Temizle ve Şablon Ekle" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "Temizle ve Şablon Ekle" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Temizle" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Atamayı Temizle" @@ -4663,7 +4692,7 @@ msgstr "Gün Sayısı" msgid "Clear User Permissions" msgstr "Kullanıcı İzinlerini Temizle" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "E-posta mesajını temizleyin ve şablonu ekleyin" @@ -4679,10 +4708,6 @@ msgstr "İlk Bileşeni eklemek için Özelleştir'e tıklayın." msgid "Click here" msgstr "Buraya tıklayın" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "Doğrulamak için buraya tıklayın" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "Seçmek için bir dosyaya tıklayın." @@ -4762,8 +4787,10 @@ msgid "Client Credentials" msgstr "İstemci Kimlik Bilgileri" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "Client ID" @@ -4779,6 +4806,12 @@ msgstr "İstemci Kimliği" msgid "Client Information" msgstr "İstemci Bilgisi" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4791,13 +4824,32 @@ msgstr "İstemci Komut Dosyası" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "Client Secret" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4882,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Daralt" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tümünü Daralt" @@ -4937,7 +4989,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5024,11 +5076,11 @@ msgstr "Sütunlar" msgid "Columns / Fields" msgstr "Sütunlar / Alanlar" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "Sütun Ayarlaması" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -5187,7 +5239,7 @@ msgstr "Tamamla" msgid "Complete By" msgstr "Tamamlayan" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "Kaydı Tamamla" @@ -5277,6 +5329,12 @@ msgstr "Durum açıklaması" msgid "Conditions" msgstr "Koşullar" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5315,7 +5373,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "Adlandırma serisi, geçerli sayaç gibi belge adlandırmanın nasıl çalıştığına ilişkin çeşitli yönleri yapılandırın." #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Onayla" @@ -5324,7 +5382,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "Onayla" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "Erişimi Onayla" @@ -5337,7 +5395,7 @@ msgstr "Hesabın Silinmesini Onayla" msgid "Confirm New Password" msgstr "Yeni Şifreyi Onayla" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "Şifreyi Onayla" @@ -5346,17 +5404,12 @@ msgstr "Şifreyi Onayla" msgid "Confirm Request" msgstr "Talebi Onayla" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "E-postanızı Onaylayın" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "Onay E-postası Şablonu" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "Onaylandı" @@ -5383,8 +5436,8 @@ msgstr "Bağlı Uyulamalar" msgid "Connected User" msgstr "Bağlı Kullanıcılar" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5476,6 +5529,11 @@ msgstr "İletişim Ayarları" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "Her biri yeni bir satırda veya virgülle ayrılmış \"Satış Sorgusu, Destek Sorgusu\" gibi iletişim seçenekleri." +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kişiler" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "{0} güvenlik düzeltmesi içerir" @@ -5487,8 +5545,6 @@ msgstr "{0} güvenlik düzeltmesi içerir" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5496,8 +5552,7 @@ msgstr "{0} güvenlik düzeltmesi içerir" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5521,10 +5576,8 @@ msgstr "İçerik (Markdown)" msgid "Content Hash" msgstr "Hash Doğrulaması" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5581,7 +5634,7 @@ msgstr "Katkı Durumu" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "Panoya kopyalandı." @@ -5597,7 +5650,7 @@ msgstr "Gömülü Kodu Kopyala" msgid "Copy error to clipboard" msgstr "Hatayı Kopyala" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "Panoya Kopyala" @@ -5622,7 +5675,7 @@ msgstr "Doğru versiyon:" msgid "Could not connect to outgoing email server" msgstr "Giden e-posta sunucusuna bağlanamadı" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "{0} bulunamadı." @@ -5630,6 +5683,10 @@ msgstr "{0} bulunamadı." msgid "Could not map column {0} to field {1}" msgstr "{0} sütunu {1} alanıyla eşleştirilemedi" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "Başlatılamadı: " @@ -5646,7 +5703,7 @@ msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "Sayı" @@ -5685,7 +5742,7 @@ msgstr "Sayaç" msgid "Country" msgstr "Ülke" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "Ülke Kodu Gerekli" @@ -5717,7 +5774,7 @@ msgstr "Alacak" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5731,13 +5788,13 @@ msgstr "Oluştur & Devam Et" msgid "Create Address" msgstr "Adres Oluştur" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "Kart Oluştur" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "Grafik Oluştur" @@ -5816,11 +5873,6 @@ msgstr "Yeni {0} Oluştur" msgid "Create a {0} Account" msgstr "{0} Hesabı Oluşturun" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "Belirli aralıklarla belirli bir abone grubuna e-posta oluşturun ve gönderin." - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "Yazdırma Formatı Oluştur veya Düzenle" @@ -6169,6 +6221,10 @@ msgstr "Özel Çeviri" msgid "Custom field renamed to {0} successfully." msgstr "Özel alan başarıyla {0} olarak yeniden adlandırıldı." +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6202,12 +6258,12 @@ msgstr "{0} için özelleştirmeler şuraya aktarıldı:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Özelleştir" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "Özelleştir" @@ -6226,7 +6282,7 @@ msgstr "Gösterge Paneli Özelleştir" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "Form Özelleştir" @@ -6352,7 +6408,7 @@ msgstr "Koyu Tema" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Gösterge Paneli" @@ -6519,7 +6575,6 @@ msgstr "Veri Tabanı Sürümü" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6583,6 +6638,11 @@ msgstr "Gün" msgid "Day of Week" msgstr "Haftanın günü" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Gün" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6847,15 +6907,16 @@ msgstr "Gecikti" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Sil" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Sil" @@ -6891,7 +6952,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Sekmeyi Sil" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "Sil ve Yeni Oluştur" @@ -6933,12 +6994,12 @@ msgstr "Sekmeyi Sil" msgid "Delete this record to allow sending to this email address" msgstr "Bu kaydı silin ve bu e-posta adresine gönderilmesine izin verin" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "{0} girişi kalıcı olarak silinsin mi?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} öğesini kalıcı olarak sil?" @@ -7162,6 +7223,7 @@ msgstr "Tema" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7345,8 +7407,8 @@ msgstr "Yeni Kayıtlara İzin Verme" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Devre dışı" @@ -7355,7 +7417,7 @@ msgstr "Devre dışı" msgid "Disabled Auto Reply" msgstr "Otomatik Yanıt Devre Dışı" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7513,6 +7575,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7758,7 +7821,7 @@ msgstr "Adlandırma Kuralı Koşulu" msgid "Document Naming Settings" msgstr "Belge Adlandırma Ayarları" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "Belge Kuyruğa Alındı" @@ -7915,7 +7978,7 @@ msgid "Document Types and Permissions" msgstr "Belge Türleri ve İzinler" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "Belge Kilidi Açıldı" @@ -8052,7 +8115,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr " HTML etiketlerini <script> gibi veya sadece < ve > gibi karakterleri kodlamayın, çünkü bunlar bu alanda kasıtlı olarak kullanılabilir" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "Hesabınız yok mu?" @@ -8106,7 +8169,7 @@ msgstr "İndirme linki" msgid "Download PDF" msgstr "PDF İndir" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "Raporu İndir" @@ -8190,7 +8253,7 @@ msgid "Due Date Based On" msgstr "Vade Tarihine göre" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "Kopyala" @@ -8208,7 +8271,7 @@ msgstr "Çoklu İsim" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "Satırı Çoğalt" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" @@ -8238,7 +8301,7 @@ msgstr "Süre" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Dynamic" -msgstr "" +msgstr "Dinamik" #. Label of the dynamic_filters_section (Section Break) field in DocType #. 'Dashboard Chart' @@ -8292,7 +8355,7 @@ msgstr "Dinamik Şablon" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "ESC" -msgstr "" +msgstr "ESC" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -8305,9 +8368,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8319,7 +8382,7 @@ msgstr "" msgid "Edit" msgstr "Düzenle" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Düzenle" @@ -8354,11 +8417,11 @@ msgstr "Özel Bloğu Düzenle" msgid "Edit Custom HTML" msgstr "HTML Kodunu Düzenle" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "DocType Düzenle" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType Düzenle" @@ -8533,10 +8596,9 @@ msgstr "Element Seçici" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8571,7 +8633,7 @@ msgstr "E-posta Hesabı Devre Dışı Bırakıldı." msgid "Email Account Name" msgstr "E-posta Hesap Adı" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "E-posta Hesabı birden çok kez eklendi" @@ -8627,11 +8689,9 @@ msgstr "E-posta Alt Bilgi Adresi" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "E-posta Grubu" @@ -8643,7 +8703,7 @@ msgstr "E-posta Grubu Üyesi" #. Label of the email_header (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Email Header" -msgstr "" +msgstr "E-posta Başlığı" #. Label of the email_id (Data) field in DocType 'Contact Email' #. Label of the email_id (Data) field in DocType 'User Email' @@ -8680,7 +8740,7 @@ msgstr "E-posta Kuyruğu" msgid "Email Queue Recipient" msgstr "E-posta Özeti Alıcısı" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "Çok fazla hata nedeniyle E-posta Kuyruğu temizleme işlemi iptal edildi." @@ -8704,18 +8764,11 @@ msgstr "E-posta Yeniden Deneme Limiti" msgid "Email Rule" msgstr "E-posta Kuralı" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "E-posta Gönderildi" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "E-posta Gönderim Zamanı" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8751,7 +8804,7 @@ msgstr "E-posta Senkronizasyon Seçeneği" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "E-Posta Şablonu" @@ -8783,7 +8836,7 @@ msgstr "E-posta çöp kutusuna taşındı" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Gönderilmez Email {0} (devre dışı / üyelikten)" @@ -8809,7 +8862,7 @@ msgstr "E-postalar Çekildi" msgid "Emails are already being pulled from this account." msgstr "E-postalar zaten bu hesaptan çekiliyor." -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "E-postalar sessize alındı" @@ -8822,10 +8875,18 @@ msgstr "E-postalar bir sonraki olası iş akışı eylemleriyle birlikte gönder msgid "Embed code copied" msgstr "Gömülü kod kopyalandı" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "Boş sütun" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8861,6 +8922,12 @@ msgstr "Belgelerde Otomatik Bağlamayı Etkinleştir" msgid "Enable Comments" msgstr "Yorumları Etkinleştir" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -9020,8 +9087,8 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "Etkin" @@ -9148,7 +9215,7 @@ msgstr "Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını gir msgid "Enter Code displayed in OTP App." msgstr "OTP Uygulamasında görüntülenen Kodu girin." -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "E-Posta alıcılarını girin" @@ -9251,7 +9318,7 @@ msgstr "Hata Günlükleri" msgid "Error Message" msgstr "Hata Mesajı" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "QZ Tray Uygulamasına bağlanırken hata oluştu...

Raw Yazdırma özelliğini kullanmak için QZ Tray uygulamasının yüklü ve çalışır durumda olması gerekir.

QZ Tray'i indirmek ve yüklemek için buraya tıklayın.
Raw Yazdırma hakkında daha fazla bilgi edinmek için buraya tıklayın." @@ -9289,6 +9356,14 @@ msgstr "Hata Bildirimi" msgid "Error in print format on line {0}: {1}" msgstr "{0} satırındaki yazdırma biçiminde hata: {1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "E-posta hesabına bağlanırken hata oluştu {0}" @@ -9454,7 +9529,7 @@ msgstr "" msgid "Executing..." msgstr "Çalıştırılıyor..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "Oluşturma Süresi: {0} sn" @@ -9480,11 +9555,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Genişlet" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Tümünü Genişlet" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "Deneysel" @@ -9537,13 +9616,13 @@ msgstr "QR Kod Resim Sayfasının Sona Erme Süresi" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Dışarı Aktar" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Dışarı Aktar" @@ -9901,8 +9980,8 @@ msgstr "Varsayılan Global Arama belgeleri getiriliyor." #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9973,7 +10052,7 @@ msgstr "Takip Edilecek Alan" msgid "Field type cannot be changed for {0}" msgstr "Alan türü {0} için değiştirilemez" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "{0} alanı {1} üzerinde mevcut değil" @@ -10016,7 +10095,7 @@ msgstr "DocType Alanı '{0}' {3}içinde {2} adında bir {1} ile çakışıyor" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunmalıdır" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Alan ismi 64 karakterle sınırılıdır ({0})" @@ -10032,7 +10111,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -10084,6 +10163,10 @@ msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10249,6 +10332,14 @@ msgstr "Filtre Adı" msgid "Filter Values" msgstr "Filtre Değerleri" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "Filtre..." @@ -10460,7 +10551,7 @@ msgid "Folio" msgstr "Folio" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "Takip Et" @@ -10468,7 +10559,7 @@ msgstr "Takip Et" msgid "Followed by" msgstr "Takip Eden" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "Aşağıdaki Rapor Filtrelerindeki değerler eksik:" @@ -10492,10 +10583,6 @@ msgstr "Aşağıdaki alanlarda eksik değerler bulunuyor" msgid "Following fields have missing values:" msgstr "Aşağıdaki alanlarda eksik değerler bulunmaktadır:" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "E-posta içeriğinde aşağıdaki bağlantılar bozuk: {0}" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10657,7 +10744,7 @@ msgstr "Kullanıcı" msgid "For Value" msgstr "Değer İçin" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Karşılaştırmak için >5, <10 veya =324 kullanın. Örneğin 5-10 arasındaki değerleri göstermek için, 5:10 kullanın." @@ -10913,15 +11000,13 @@ msgid "Friday" msgstr "Cuma" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "itibaren" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "Gönderen" @@ -10937,7 +11022,7 @@ msgstr "Başlama Tarihi" msgid "From Date Field" msgstr "Başlangıç Tarihi Alanı" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "Belge Türü" @@ -10988,7 +11073,7 @@ msgstr "Tam Genişlik" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "Fonksiyon" @@ -10997,10 +11082,14 @@ msgstr "Fonksiyon" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "{0} fonksiyonu beyaz listeye eklenmemiş." +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir" @@ -11062,7 +11151,7 @@ msgstr "Genel" msgid "Generate Keys" msgstr "Anahtar Oluştur" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "Yeni Rapor Oluştur" @@ -11070,8 +11159,8 @@ msgstr "Yeni Rapor Oluştur" msgid "Generate Random Password" msgstr "Rastgele Şifre Oluştur" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "İzleme Bağlantısı Oluştur" @@ -11186,7 +11275,7 @@ msgstr "Genel Kısayollar" msgid "Global Unsubscribe" msgstr "Genel E-posta Aboneliğini İptal Et" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "Git" @@ -11350,8 +11439,6 @@ msgstr "Google Kişiler - Google Kişiler'den kişiler senkronize edilemedi {0}, msgid "Google Contacts Id" msgstr "Google Kişiler Kimliği" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "Google Drive" @@ -11388,6 +11475,7 @@ msgstr "Google Servisleri" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11482,6 +11570,10 @@ msgstr "Türe Göre Gruplandır" msgid "Group By field is required to create a dashboard chart" msgstr "Pano grafiği oluşturmak için Grupla alanı gereklidir" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "Grup Düğümü" @@ -11496,7 +11588,7 @@ msgstr "Grup Nesne Sınıfı" msgid "Group your custom doctypes under modules" msgstr "Özel DocType'larınızı modüller altında gruplandırın" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "{0} ile gruplandırılmış" @@ -11530,7 +11622,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11544,11 +11635,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11777,7 +11867,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "İzleme Bağlantınız" @@ -11813,12 +11903,17 @@ msgstr "Gizli" msgid "Hidden Fields" msgstr "Gizli Alanlar" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "Gizle" @@ -11925,7 +12020,7 @@ msgstr "Kenar Çubuğunu, Menüyü ve Yorumları Gizle" msgid "Hide Standard Menu" msgstr "Standart Menüyü Gizle" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "Etiketleri Gizle" @@ -11980,7 +12075,7 @@ msgstr "Daha yüksek öncelikli kural önce uygulanacaktır" msgid "Highlight" msgstr "Vurgulama" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "İpucu: Parolaya semboller, sayılar ve büyük harfler ekleyin." @@ -12053,20 +12148,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "Şifre sıfırlama bağlantıları oluşturmak için saatlik limit." +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Saat" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "Bu para birimi nasıl biçimlendirilmelidir? Ayarlanmamışsa, sistem varsayılanlarını kullanacaktır" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "Sanırım henüz herhangi bir çalışma alanına erişiminiz yok, ancak sadece kendiniz için bir tane oluşturabilirsiniz. Bir tane oluşturmak için Çalışma Alanı Oluştur düğmesine tıklayın.
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12471,7 +12576,7 @@ msgstr "Resim alanı iliştirilen resim türünde olmalıdır" msgid "Image link '{0}' is not valid" msgstr "Resim bağlantısı '{0}' geçerli değil" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "Resim optimize edildi" @@ -12519,7 +12624,7 @@ msgstr "" msgid "Import" msgstr "İçe Aktar" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "İçe Aktar" @@ -12747,11 +12852,15 @@ msgstr "Uygulamalardan Temayı Dahil Et" msgid "Include Web View Link in Email" msgstr "Web Görünümü Bağlantısını E-postaya Ekle" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "Filtreleri dahil et" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "Girintiyi dahil et" @@ -12818,11 +12927,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre" msgid "Incorrect Verification code" msgstr "Hatalı Doğrulama Kodu" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "Satırlarda yanlış değer var {0}:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "Geçersiz değer: " @@ -12909,7 +13018,7 @@ msgstr "Yukarı Ekle" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "Sonrasına Ekle" @@ -12974,11 +13083,11 @@ msgstr "Talimatlar" msgid "Instructions Emailed" msgstr "Talimatlar E-postayla Gönderildi" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "{0} için Yetersiz İzin Seviyesi" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "{0} için Yetki Verilmemiş" @@ -13100,7 +13209,7 @@ msgstr "Geçersiz" msgid "Invalid \"depends_on\" expression" msgstr "Geçersiz \"depends_on\" ifadesi" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı" @@ -13128,7 +13237,7 @@ msgstr "Geçersiz Koşul: {}" msgid "Invalid Credentials" msgstr "Geçersiz kimlik bilgileri" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "Geçersiz Tarih" @@ -13136,7 +13245,7 @@ msgstr "Geçersiz Tarih" msgid "Invalid DocType" msgstr "Geçersiz DocType" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "Geçersiz DocType: {0}" @@ -13148,6 +13257,11 @@ msgstr "Geçersiz Alan Adı" msgid "Invalid File URL" msgstr "Geçersiz Dosya URL'si" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "{1} türündeki {0} alanı için geçersiz filtre biçimi. Doğru şekilde ayarlamak için alandaki filtre simgesini kullanmayı deneyin" @@ -13160,7 +13274,7 @@ msgstr "Geçersiz Filtre Değeri" msgid "Invalid Home Page" msgstr "Geçersiz Ana Sayfa" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "Geçersiz Bağlantı" @@ -13194,7 +13308,7 @@ msgstr "Geçersiz Seçenek" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "Geçersiz Giden Posta Sunucusu veya Bağlantı Noktası: {0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "Geçersiz Çıktı Formatı" @@ -13206,13 +13320,13 @@ msgstr "Hatalı Geçersiz Kılma" msgid "Invalid Parameters." msgstr "Geçersiz Parametreler." -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Geçersiz Şifre" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "Geçersiz Telefon Numarası" @@ -13256,11 +13370,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "Geçersiz Sütun" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "Geçersiz docstatus" @@ -13272,10 +13414,30 @@ msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı" msgid "Invalid expression set in filter {0} ({1})" msgstr "{0} filtresinde ayarlanmış geçersiz ifade ({1})" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "Geçersiz alan adı {0}" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'" @@ -13284,11 +13446,26 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'" msgid "Invalid file path: {0}" msgstr "Geçersiz dosya yolu: {0}" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "Geçersiz filtre: {0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13310,10 +13487,22 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "Geçersiz istek değişkenleri" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "İçe aktarma için geçersiz şablon dosyası" @@ -13721,8 +13910,8 @@ msgstr "İş çalışmıyor." msgid "Join video conference with {0}" msgstr "{0} ile görüntülü konferansa katılın" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "Alana Git" @@ -13755,11 +13944,11 @@ msgstr "Kanban Panosu Sütunu" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "Kanban Panosu Adı" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban Ayarları" @@ -14047,7 +14236,7 @@ msgstr "Etiket zorunludur" msgid "Landing Page" msgstr "Giriş Sayfası" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "Landscape" @@ -14343,7 +14532,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14471,6 +14660,10 @@ msgstr "Beğeniler" msgid "Limit" msgstr "Limit" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14653,7 +14846,7 @@ msgstr "Bağlantılar" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "Liste" @@ -14683,7 +14876,7 @@ msgstr "Filtreyi Listele" msgid "List Settings" msgstr "Liste Ayarları" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Liste Ayarları" @@ -14734,6 +14927,7 @@ msgid "Load Balancing" msgstr "Yük Dengeleme" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14754,7 +14948,7 @@ msgstr "Daha fazla yükle" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "Yükleniyor" @@ -14966,6 +15160,11 @@ msgstr "Kullanıcı adı ve şifre ile giriş yapılmasına izin verilmiyor." msgid "Login with {0}" msgstr "{0} ile Giriş Yapın" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -15152,7 +15351,7 @@ msgstr "Zorunluluk Bağlılığı" msgid "Mandatory Depends On (JS)" msgstr "Zorunluluk Bağlılığı (JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "Zorunlu bilgi eksik:" @@ -15252,11 +15451,9 @@ msgstr "İstenmeyen olarak İşaretle" msgid "Mark as Unread" msgstr "Okunmadı Olarak İşaretle" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15377,7 +15574,7 @@ msgstr "Gönder, İptal Et, Değiştir Anlamı" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15445,7 +15642,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15458,11 +15654,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15473,16 +15668,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "Mesaj" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "Mesaj (HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "Mesaj (Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15509,7 +15694,7 @@ msgstr "Mesaj Gönderildi" msgid "Message Type" msgstr "Mesaj Türü" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "Mesaj kopyalandı" @@ -15587,6 +15772,12 @@ msgstr "Meta başlık" msgid "Meta title for SEO" msgstr "SEO için meta başlık" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15606,7 +15797,7 @@ msgstr "SEO için meta başlık" msgid "Method" msgstr "Yöntem" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "İzin Verilmeyen Method" @@ -15656,6 +15847,11 @@ msgstr "Minimum Şifre Puanı" msgid "Minor" msgstr "Ara Sürüm" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Süreler" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15695,7 +15891,7 @@ msgstr "Eksik Veri" msgid "Missing Fields" msgstr "Eksik Alanlar" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "Eksik Filtreler Gerekli" @@ -15703,7 +15899,7 @@ msgstr "Eksik Filtreler Gerekli" msgid "Missing Permission" msgstr "Eksik İzin" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "Eksik Değer" @@ -15769,7 +15965,7 @@ msgstr "Değiştiren" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -16051,7 +16247,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "Resim Eki Formatında Olmalıdır" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "Bu rapora erişmek için rapor iznine sahip olmanız gerekir." @@ -16069,7 +16265,7 @@ msgid "Mx" msgstr "Bayan" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16213,12 +16409,12 @@ msgstr "Gezinti Çubuğu Şablonu" msgid "Navbar Template Values" msgstr "Gezinme Çubuğu Şablon Değerleri" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Listede Aşağı Git" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Listede Yukarı git" @@ -16237,10 +16433,14 @@ msgstr "Gezinme Ayarları" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için Çalışma Alanı Yöneticisi rolü gerekli." -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "Negatif Değer" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "İç içe küme hatası. Lütfen Yönetici ile iletişime geçin." @@ -16323,7 +16523,7 @@ msgstr "Yeni Etkinlik" msgid "New Folder" msgstr "Yeni Klasör" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "Yeni Kanban Panosu" @@ -16346,10 +16546,6 @@ msgstr "Web Sitesi İletişim Sayfasından Yeni Mesaj" msgid "New Name" msgstr "Yeni İsim" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "Yeni Bülten" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "Yeni Bildirim" @@ -16362,7 +16558,7 @@ msgstr "Yeni Veri Kartı" msgid "New Onboarding" msgstr "Yeni Modül Tanıtımı" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "Yeni Şifre" @@ -16407,7 +16603,26 @@ msgstr "Yeni İş Akışı Adı" msgid "New Workspace" msgstr "Yeni Çalışma Alanı" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "Yeni şifre eskisiyle aynı olamaz" @@ -16431,7 +16646,7 @@ msgstr "Ayarlanacak yeni değer" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16439,19 +16654,19 @@ msgstr "Ayarlanacak yeni değer" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "Yeni {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "Yeni {0} Oluşturuldu" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "Yeni {0} {1}, {2} Panosuna eklendi." -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "Yeni {0} {1} oluşturuldu" @@ -16463,52 +16678,17 @@ msgstr "Yeni {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "{0} kullanıcısı için rol belirlenmedi." -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "Bülten" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "Bülten Eki" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "Bülten E-posta Grubu" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "Bülten Yöneticisi" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "Bülten zaten gönderildi" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "E-postada webview bağlantısını göndermek için bültenin yayınlanması gerekir" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "Bültenin en az bir alıcısı olmalıdır" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "Bültenler" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16526,11 +16706,11 @@ msgstr "Sonraki" #: frappe/public/js/frappe/ui/filters/filter.js:684 msgid "Next 14 Days" -msgstr "" +msgstr "Önümüzdeki 14 Gün" #: frappe/public/js/frappe/ui/filters/filter.js:688 msgid "Next 30 Days" -msgstr "" +msgstr "Önümüzdeki 30 gün" #: frappe/public/js/frappe/ui/filters/filter.js:704 msgid "Next 6 Months" @@ -16538,7 +16718,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:680 msgid "Next 7 Days" -msgstr "" +msgstr "Önümüzdeki 7 Gün" #. Label of the next_action_email_template (Link) field in DocType 'Workflow #. Document State' @@ -16625,7 +16805,7 @@ msgstr "Sonraki Tıklamada" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Hayır" @@ -16654,7 +16834,7 @@ msgid "No Copy" msgstr "Kopyalanamaz" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16766,11 +16946,11 @@ msgstr "Sonuç Yok" msgid "No Results found" msgstr "Uygun Sonuç Bulunamadı" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "Rol Belirlenmedi" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "Seçim Alanı Bulunamadı" @@ -16798,10 +16978,6 @@ msgstr "Bugün için herhangi bir bildirim yok" msgid "No automatic optimization suggestions available." msgstr "Otomatik optimizasyon önerileri mevcut değil." -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "E-posta içeriğinde kırık bağlantı bulunamadı" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "Belgede Değişiklik Yapılmadı" @@ -16838,7 +17014,7 @@ msgstr "Henüz kişi eklenmedi." msgid "No contacts linked to document" msgstr "Belgeye bağlı kişi yok" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "Verilecek veri yok" @@ -16858,7 +17034,7 @@ msgstr "Kullanıcıyla ilişkilendirilmiş bir e-posta hesabı bulunmamaktadır. msgid "No failed logs" msgstr "Başarısız kayıt yok" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Kanban Sütunu olarak kullanılabilecek alanlar bulunamadı. \"Seçim\" türünde yeni bir Özel Alan eklemek için Form Özelleştirmeyi kullanın." @@ -16917,7 +17093,7 @@ msgstr "Satır Sayısı (Maksimum 500)" msgid "No of Sent SMS" msgstr "Gönderilen SMS sayısı" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "{0} İçin Yetki Yok" @@ -17010,6 +17186,12 @@ msgstr "Negatif Olmayan" msgid "Non-Conforming" msgstr "Uygun Olmayan" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Yok" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "Yok: İş Akışı Sonu" @@ -17024,7 +17206,7 @@ msgstr "Normalleştirilmiş Kopyalar" msgid "Normalized Query" msgstr "Normalleştirilmiş Sorgu" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "İzin verilmedi" @@ -17045,7 +17227,7 @@ msgstr "Aynı Kategoride Değil" msgid "Not Equals" msgstr "Eşit Değil" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "Bulunamadı" @@ -17071,16 +17253,16 @@ msgstr "Herhangi bir kayıtla bağlantılı değil" msgid "Not Nullable" msgstr "Boş Bırakılamaz" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "İzin yok" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "{0} için Okuma izni yok" @@ -17090,8 +17272,8 @@ msgstr "{0} için Okuma izni yok" msgid "Not Published" msgstr "Yayınlanmadı" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -17108,7 +17290,6 @@ msgstr "Görülmedi" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "Gönderilmedi" @@ -17125,7 +17306,7 @@ msgstr "Ayarlanmamış" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "Virgülle Ayrılmış Geçerli Bir CSV Dosyası Değil" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "Geçerli bir Kullanıcı Resmi değil." @@ -17141,7 +17322,7 @@ msgstr "Geçerli bir kullanıcı değil" msgid "Not active" msgstr "Aktif değil" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "{0} için izin verilmiyor: {1}" @@ -17182,7 +17363,7 @@ msgstr "Geliştirici Modunda değil! site_config.json dosyasına ayarlayın veya #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "İzin verilmedi" @@ -17360,7 +17541,7 @@ msgstr "Cevaplamazsa Bildir (Dakika)" msgid "Notify users with a popup when they log in" msgstr "Oturum Açıldığında Kullanıcıları Bilgilendir" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Şimdi" @@ -17503,6 +17684,11 @@ msgstr "OAuth Sağlayıcı Ayarları" msgid "OAuth Scope" msgstr "OAuth Kapsamı" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth etkinleştirildi ancak yetkilendirilmedi. Aynı işlemi yapmak için lütfen \"API Erişimini Yetkilendir\" düğmesini kullanın." @@ -17575,6 +17761,10 @@ msgstr "X Ekseni" msgid "Offset Y" msgstr "Y Ekseni" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "Eski Şifre" @@ -17646,7 +17836,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17722,7 +17912,7 @@ msgstr "Yalnızca Yönetici düzenleyebilir" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "Standart bir raporu yalnızca Yönetici kaydedebilir. Lütfen yeniden adlandırın ve kaydedin." -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "Kaydediciyi yalnızca Yönetici kullanabilir" @@ -17748,7 +17938,7 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d msgid "Only allowed to export customizations in developer mode" msgstr "Özelleştirmelerin yalnızca geliştirici modunda dışa aktarılmasına izin verilir" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17779,7 +17969,7 @@ msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar düzenlenebilir" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Formu Özelleştir'den yalnızca standart DocType'ların özelleştirilmesine izin verilir." -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "Yalnızca Administrator rolü standart bir DocType'ı silebilir." @@ -17787,7 +17977,7 @@ msgstr "Yalnızca Administrator rolü standart bir DocType'ı silebilir." msgid "Only the assignee can complete this to-do." msgstr "Bu yapılacak işi yalnızca atanan kişi tamamlayabilir." -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "Kullanıcı başına yalnızca {0} adresine e-posta ile gönderilen raporlara izin verilir." @@ -17875,7 +18065,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Yeni sekmede aç" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Liste Öğesini Aç" @@ -17920,7 +18110,7 @@ msgstr "Açıldı" msgid "Operation" msgstr "Operasyon" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17930,7 +18120,7 @@ msgstr "" msgid "Optimize" msgstr "Optimize Et" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "Resim optimize ediliyor..." @@ -18019,6 +18209,10 @@ msgstr "Turuncu" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -18031,7 +18225,7 @@ msgstr "Organizasyon Geçmişi" msgid "Org History Heading" msgstr "Organizasyon Geçmişi Başlığı" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "Oryantasyon" @@ -18113,9 +18307,11 @@ msgstr "Sahibi" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" @@ -18410,11 +18606,11 @@ msgstr "Gösterge tablosu grafiği oluşturmak için ana belge türü gereklidir msgid "Parent is the name of the document to which the data will get added to." msgstr "Üst öğe, verilerin ekleneceği belgenin adıdır." -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18474,11 +18670,11 @@ msgstr "Pasif" msgid "Password" msgstr "Şifre" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "Şifre E-postası Gönderildi" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "Şifre Sıfırlama" @@ -18512,11 +18708,11 @@ msgstr "E-posta Hesabında Şifre Eksik" msgid "Password not found for {0} {1} {2}" msgstr "{0} {1} {2} için şifre bulunamadı" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "Şifre ayarlandı" @@ -18524,11 +18720,11 @@ msgstr "Şifre ayarlandı" msgid "Password size exceeded the maximum allowed size" msgstr "Şifre boyutu izin verilen maksimum boyutu aştı" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "Şifre boyutu izin verilen maksimum boyutu aştı." -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Parolalar uyuşmuyor" @@ -18536,10 +18732,6 @@ msgstr "Parolalar uyuşmuyor" msgid "Passwords do not match!" msgstr "Şifreler uyuşmuyor!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "Program planlaması için geçmiş tarihlere izin verilmez.​" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "Yapıştır" @@ -18685,7 +18877,7 @@ msgstr "{0} Kalıcı Olarak Kaydedilecek" msgid "Permanently delete {0}?" msgstr "{0} öğesi kalıcı olarak silinecek." -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "İzin Hatası" @@ -18837,11 +19029,11 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon No." -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "{1} alanına girilen Telefon Numarası {0} geçerli değil." -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18899,7 +19091,7 @@ msgstr "Lütfen özelleştirmek için bu Web Sitesi Temasını çoğaltın." msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "Ldap işlevselliğini kullanmak için lütfen pip aracılığıyla ldap3 kütüphanesini yükleyin." -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "Lütfen Tabloyu Ayarlayın" @@ -18915,7 +19107,7 @@ msgstr "Lütfen e-postanıza bir konu ekleyin" msgid "Please add a valid comment." msgstr "Lütfen geçerli bir yorum ekleyin." -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin" @@ -18947,7 +19139,7 @@ msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanan filtre değerlerini k msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "Doğrulama için lütfen e-postanızı kontrol edin" @@ -19012,7 +19204,7 @@ msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "Pop-up etkinleştirin" @@ -19029,23 +19221,23 @@ msgstr "Devam etmeden önce lütfen {} ayarını etkinleştirin." msgid "Please ensure that your profile has an email address" msgstr "Lütfen profilinizde bir e-posta adresi olduğundan emin olun" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "Lütfen Erişim Token URL'sini girin" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "Lütfen Yetkilendirme URL'sini girin" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "Lütfen geçerli bir URL girin" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "Sosyal medya ile oturum açma etkinleştirilmeden önce lütfen İstemci Kimliğini girin" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -19053,7 +19245,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "Lütfen Yönlendirme URL'sini girin" @@ -19065,7 +19257,7 @@ msgstr "Lütfen geçerli bir e-posta adresi girin." msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "Size geri dönüş yapabilmemiz için lütfen hem e-postanızı hem de mesajınızı girin. Teşekkürler!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "Lütfen şifrenizi girin" @@ -19078,11 +19270,11 @@ msgstr "Lütfen şifreyi giriniz: {0}" msgid "Please enter valid mobile nos" msgstr "Lütfen geçerli bir cep telefonu numarası girin" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "Lütfen yeni şifrenizi girin." -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "Lütfen eski şifrenizi giriniz." @@ -19098,7 +19290,7 @@ msgstr "Yorum göndermek için lütfen üye girişi yapın." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Lütfen Referans İletişim Belgelerinin döngüsel olarak bağlantılı olmadığından emin olun." -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "En son versiyonu almak için lütfen sayfayı yenileyin." @@ -19110,10 +19302,6 @@ msgstr "Lütfen Yazıcı Ayarları'ndan yazıcı eşlemesini kaldırın ve tekra msgid "Please save before attaching." msgstr "Eklemeden önce lütfen kaydedin." -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "Lütfen göndermeden önce Bülteni kaydedin" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "Lütfen atamadan önce belgeyi kaydedin" @@ -19142,11 +19330,11 @@ msgstr "Lütfen önce Varlık Türünü seçin" msgid "Please select Minimum Password Score" msgstr "Lütfen Minimum Şifre Puanını seçin" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "Lütfen X ve Y alanlarını seçin" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "Lütfen {1} alanı için bir ülke kodu seçin." @@ -19162,7 +19350,7 @@ msgstr "Lütfen bir dosya veya url seçin" msgid "Please select a valid csv file with data" msgstr "Lütfen veri içeren geçerli bir csv dosyası seçin" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "Lütfen geçerli bir tarih filtresi seçin" @@ -19170,7 +19358,7 @@ msgstr "Lütfen geçerli bir tarih filtresi seçin" msgid "Please select applicable Doctypes" msgstr "Lütfen geçerli DocType'ları seçin" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Lütfen sıralamak/gruplamak için {0} en az 1 sütun seçin" @@ -19200,11 +19388,11 @@ msgstr "Lütfen E-posta Adresini ayarlayın" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Lütfen Yazıcı Ayarları'nda bu yazdırma biçimi için bir yazıcı eşlemesi ayarlayın" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "Lütfen filtreleri ayarlayın" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "Lütfen Rapor Filtresi tablosunda filtre değerini ayarlayın." @@ -19228,7 +19416,7 @@ msgstr "" msgid "Please setup a message first" msgstr "Lütfen önce bir mesaj ayarlayın" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "Lütfen Ayarlar > E-posta Hesabı bölümünden varsayılan giden E-posta Hesabını ayarlayın" @@ -19240,7 +19428,7 @@ msgstr "" msgid "Please specify" msgstr "Lütfen belirtiniz" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "Lütfen {0} için geçerli bir üst DocType belirtin" @@ -19277,14 +19465,19 @@ msgstr "Devam etmeden önce lütfen {} öğesini güncelleyin." msgid "Please use a valid LDAP search filter" msgstr "Lütfen geçerli bir LDAP arama filtresi kullanın" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "Lütfen E-posta Adresinizi Doğrulayın" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Daha fazla bilgi için lütfen https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key adresini ziyaret edin." +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19330,7 +19523,7 @@ msgstr "Portal Menü Öğesi" msgid "Portal Settings" msgstr "Portal Ayarları" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "Portrait" @@ -19374,6 +19567,10 @@ msgstr "{0} tarafından gönderilen gönderiler" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19433,15 +19630,15 @@ msgstr "" msgid "Prepared Report User" msgstr "Hazır Rapor Kullanıcısı" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "Hazırlanan rapor işleme başarısız oldu" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "Rapor Hazırlama" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "Şablonu e-posta mesajının önüne ekleyin" @@ -19462,8 +19659,6 @@ msgstr "Kaydetmek için Enter tuşuna basın." #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19508,7 +19703,7 @@ msgstr "" msgid "Preview type" msgstr "Önizleme Türü" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "Önizleme:" @@ -19579,16 +19774,16 @@ msgstr "{0} belge türünün birincil anahtarı mevcut değerler olduğundan de #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "Yazdır" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Yazdır" @@ -19643,6 +19838,11 @@ msgstr "Yazdırma Biçimi Hatası" msgid "Print Format Field Template" msgstr "Yazdırma Biçimi Alan Şablonu" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19653,6 +19853,10 @@ msgstr "Yazdırma Biçimi Yardımı" msgid "Print Format Type" msgstr "Yazdırma Formatı Türü" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "Yazdırma Biçimi {0} devre dışı" @@ -19684,11 +19888,11 @@ msgstr "Yazdırmayı Gizle" msgid "Print Hide If No Value" msgstr "Değer Yoksa Yazdırmayı Gizle" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "Yazdırma Dili" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19706,7 +19910,7 @@ msgstr "Yazdırma Sunucusu" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Yazdırma Ayarları" @@ -19816,6 +20020,10 @@ msgstr "Özel" msgid "Private Files (MB)" msgstr "Özel Dosyalar (MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19826,7 +20034,7 @@ msgstr "İpucu: Belge referansını göndermek için Referans: {{ reference_doct msgid "Proceed" msgstr "Devam Et" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "Yine de Devam Et" @@ -19851,7 +20059,7 @@ msgstr "Profil" msgid "Progress" msgstr "İlerleme" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "Proje" @@ -19938,6 +20146,10 @@ msgstr "Herkese Açık" msgid "Public Files (MB)" msgstr "Genel Dosyalar (MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19946,14 +20158,7 @@ msgstr "Genel Dosyalar (MB)" msgid "Publish" msgstr "Yayınla" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "Web Sayfası Olarak Yayınla" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19961,7 +20166,6 @@ msgstr "Web Sayfası Olarak Yayınla" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -20085,7 +20289,7 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "Giriş Doğrulaması için QR Kodu" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -20182,7 +20386,6 @@ msgstr "Kuyruk" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "Sıraya alındı" @@ -20205,19 +20408,11 @@ msgstr "Gönderim için sıraya alındı. İlerlemeyi {0} üzerinden takip edebi msgid "Queued for backup. You will receive an email with the download link" msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-posta alacaksınız." -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "{0} e-postaları Kuyruğa alındı" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "Kuyruk" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "E-postalar sıraya alınıyor..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20307,7 +20502,7 @@ msgstr "Değerlendirme" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20342,7 +20537,7 @@ msgstr "Cvp:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "Ynt: {0}" @@ -20418,7 +20613,7 @@ msgstr "Alıcı Tarafından Okundu" msgid "Read mode" msgstr "Okuma Modu" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "Daha fazlasını öğrenmek için belgeleri okuyun" @@ -20438,7 +20633,7 @@ msgstr "Gerçek Zamanlı (Socket.IO)" msgid "Reason" msgstr "Nedeni" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "Yeniden Oluştur" @@ -20584,12 +20779,12 @@ msgstr "Yönlendirmeler" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "İleri Al" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "Son işlemi geri al" @@ -20803,11 +20998,11 @@ msgid "Referrer" msgstr "Referans Olan" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20846,7 +21041,7 @@ msgstr "Yenileniyor" msgid "Refreshing..." msgstr "Yenileniyor..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "Kayıtlı ancak devre dışı" @@ -20895,7 +21090,7 @@ msgstr "Yeniden Bağlandı" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "Yeniden Yükle" @@ -20926,7 +21121,7 @@ msgstr "Son Seçilen Değeri Hatırla" msgid "Remind At" msgstr "Hatırlatma Zamanı" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "Hatırlatıcı" @@ -21008,7 +21203,7 @@ msgstr "Kaldırıldı" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -21036,7 +21231,7 @@ msgstr "" msgid "Reopen" msgstr "Yeniden aç" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "Tekrar" @@ -21136,6 +21331,8 @@ msgstr "Tümünü Yanıtla" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21151,8 +21348,11 @@ msgstr "Tümünü Yanıtla" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "Rapor" @@ -21221,7 +21421,7 @@ msgstr "Rapor Yöneticisi" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "Rapor İsmi" @@ -21273,11 +21473,11 @@ msgstr "Raporda veri yok, lütfen filtreleri veya Rapor Adını değiştirin" msgid "Report has no numeric fields, please change the Report Name" msgstr "Raporda sayısal alan yok, lütfen Rapor Adını değiştirin" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "Rapor sınırına ulaşıldı" @@ -21285,7 +21485,7 @@ msgstr "Rapor sınırına ulaşıldı" msgid "Report timed out." msgstr "Rapor zaman aşımına uğradı." -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "Rapor başarıyla güncellendi" @@ -21293,7 +21493,7 @@ msgstr "Rapor başarıyla güncellendi" msgid "Report was not saved (there were errors)" msgstr "Rapor Kaydedilemedi (hatalar içeriyor)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "10'dan fazla sütun içeren rapor Yatay modda daha iyi görünür." @@ -21306,7 +21506,7 @@ msgstr "{0} Raporu" msgid "Report {0} deleted" msgstr "{0} Raporu silindi" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "{0} Raporu devre dışı bırakıldı" @@ -21329,7 +21529,7 @@ msgstr "Raporlar" msgid "Reports & Masters" msgstr "Raporlar & Kayıtlar" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "Raporlar zaten Kuyrukta" @@ -21514,6 +21714,31 @@ msgstr "Varsayılanlara Dön" msgid "Reset your password" msgstr "Şifrenizi Sıfırlayın" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21639,10 +21864,8 @@ msgstr "İptal Et" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21745,7 +21968,7 @@ msgstr "Rol İzinleri" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" @@ -21779,7 +22002,7 @@ msgstr "" msgid "Role and Level" msgstr "Rol ve Seviye" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı" @@ -21853,7 +22076,6 @@ msgstr "Yuvarlama Yöntemi" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21867,7 +22089,6 @@ msgstr "Yuvarlama Yöntemi" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21894,7 +22115,7 @@ msgstr "Rota Yönlendirmeleri" msgid "Route: Example \"/app\"" msgstr "Rota: Örnek \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "Satır" @@ -21985,7 +22206,7 @@ msgstr "Kural" msgid "Rule Conditions" msgstr "Kural Koşulları" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "Bu belge türüne ilişkin kural, rol, izin düzeyi ve eğer sahibiyle birleşimi zaten mevcut." @@ -22174,12 +22395,12 @@ msgstr "Cumartesi" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22206,7 +22427,7 @@ msgstr "Farklı Kaydet" msgid "Save Customizations" msgstr "Özelleştirmeleri Kaydet" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "Raporu Kaydet" @@ -22225,7 +22446,7 @@ msgstr "Belgeyi kaydet." #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22270,32 +22491,17 @@ msgstr "QR Kodunu tarayın ve çıkan kodu girin." #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "Planla" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "Bülten Programı" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "Planlanmış Gönderim" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "Gönderimi zamanla" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "Gönderimi daha sonraki bir zamana planlayın" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "Planlandı" @@ -22329,17 +22535,6 @@ msgstr "Planlanmış Görev Türü" msgid "Scheduled Jobs Logs" msgstr "Planlanmış Görev Kayıtları" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "Planlanmış Gönderim" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "Gönderilmek Üzere Planlandı" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "{0} betiği için planlanan yürütme güncellendi" @@ -22408,6 +22603,11 @@ msgstr "Kapsam" msgid "Scopes" msgstr "Kapsamlar" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22551,6 +22751,11 @@ msgstr "Arama..." msgid "Searching ..." msgstr "Arama Yapılıyor..." +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22598,7 +22803,7 @@ msgstr "Güvenlik Ayarları" msgid "See all Activity" msgstr "Tüm Aktiviteleri Göster" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "Tüm geçmiş raporları görün." @@ -22666,8 +22871,8 @@ msgstr "Seçim" msgid "Select All" msgstr "Tümünü Seç" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22683,7 +22888,7 @@ msgid "Select Column" msgstr "Sütun Seç" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "Sütunları Seç" @@ -22733,7 +22938,7 @@ msgstr "Erişimi sınırlamak için hangi Kullanıcı İzinlerinin kullanılaca #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "Alan Seçin" @@ -22804,7 +23009,7 @@ msgid "Select Page" msgstr "Sayfa Seç" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "Baskı Formatını Seçin" @@ -22896,13 +23101,13 @@ msgstr "Yazdırmak için en az 1 kayıt seçin" msgid "Select atleast 2 actions" msgstr "En az 2 eylem seçin" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Liste Öğesini Seç" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Birden Fazla Öğe Seçin" @@ -22940,9 +23145,7 @@ msgstr "{0} Seçimi" msgid "Self approval is not allowed" msgstr "Kendi kendini onaylamaya izin verilmiyor" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "Gönder" @@ -22973,11 +23176,6 @@ msgstr "Uyarı Gönder" msgid "Send Email Alert" msgstr "E-Posta Uyarısı Gönder" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "E-Posta Gönder" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -23025,7 +23223,7 @@ msgstr "Şimdi Gönder" msgid "Send Print as PDF" msgstr "Yazıcıya PDF Olarak Gönder" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "Okundu Bilgisi Gönder" @@ -23035,38 +23233,16 @@ msgstr "Okundu Bilgisi Gönder" msgid "Send System Notification" msgstr "Sistem Bildirimi Gönder" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "Test E-postası Gönder" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "Tüm Atananlara Gönder" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "Abonelikten Ayrılma Bağlantısını Gönder" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "Web Görünümü Bağlantısı Gönder" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "Hoşgeldiniz E-postası Gönder" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "Bir test e-postası gönderin" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "Tekrar Gönder" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -23110,14 +23286,10 @@ msgstr "Sorularınızı bu e-posta adresine gönderin" msgid "Send login link" msgstr "Giriş bağlantısını gönder" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "Bir Kopyasını Bana Gönder" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "Şimdi Gönder" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -23133,19 +23305,15 @@ msgstr "Abonelikten çıkma mesajını e-posta ile gönder" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "Gönderen" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "Gönderen E-postası" @@ -23162,9 +23330,7 @@ msgid "Sender Field should have Email in options" msgstr "Gönderen Alanı seçeneklerinde E-posta olmalıdır" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "Gönderenin Adı" @@ -23184,18 +23350,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "Gönderiliyor" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "E-Posta Gönderiliyor..." - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "Gönderiyor..." - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23203,8 +23360,6 @@ msgstr "Gönderiyor..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "Gönderildi" @@ -23274,7 +23429,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor" msgid "Server Action" msgstr "Sunucu Aksiyonu" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Sunucu Hatası" @@ -23293,7 +23448,7 @@ msgstr "Sunucu IP" msgid "Server Script" msgstr "Sunucu Komut Dosyası" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasından sunucu komut dosyalarını etkinleştirin." @@ -23332,15 +23487,15 @@ msgstr "Oturum Varsayılanı Ayarları" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "Oturum Varsayılanları" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "Oturum Varsayılanları Kaydedildi" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "Oturum Sonlandırıldı" @@ -23372,7 +23527,7 @@ msgstr "Ayarla" msgid "Set Banner from Image" msgstr "Resimden Banner Ayarla" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "Grafiği Ayarla" @@ -23398,7 +23553,7 @@ msgstr "Filtreleri Ayarlayın" msgid "Set Filters for {0}" msgstr "{0} İçin Filtreleri Ayarla" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "Seviye Ayarla" @@ -23594,7 +23749,7 @@ msgstr "Sisteminiz Yapılandırılıyor" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23640,7 +23795,7 @@ msgstr "Kurulum > Kullanıcı" msgid "Setup > User Permissions" msgstr "Kurulum > Kullanıcı İzinleri" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "Otomatik E-Postayı Ayarla" @@ -23729,6 +23884,8 @@ msgstr "Kısa Yollar" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "Göster" @@ -23755,6 +23912,12 @@ msgstr "Mutlak Değerleri Göster" msgid "Show All" msgstr "Tümünü Göster" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "Takvimi Göster" @@ -23835,7 +23998,7 @@ msgstr "Dil Seçiciyi Göster" msgid "Show Line Breaks after Sections" msgstr "Bölümlerden Sonra Satır Sonlarını Göster" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "Bağlantıları Göster" @@ -23872,6 +24035,12 @@ msgstr "Açılır Pencereyi Göster" msgid "Show Processlist" msgstr "İşlem Listesini Göster" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "İlgili Hataları Göster" @@ -23898,8 +24067,14 @@ msgstr "Bölüm Başlıklarını Göster" msgid "Show Sidebar" msgstr "Kenar Çubuğunu Göster" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "Etiketleri Göster" @@ -23928,6 +24103,12 @@ msgstr "Turu Göster" msgid "Show Traceback" msgstr "Geri İzlemeyi Göster" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "Uyarıları Göster" @@ -23981,6 +24162,12 @@ msgstr "Hızlı giriş modu yerine tam formu göster" msgid "Show in Module Section" msgstr "Modül Bölümünde Göster" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -24061,12 +24248,12 @@ msgstr "Kenar Çubuğu ve Yorumlar" msgid "Sign Up and Confirmation" msgstr "Kayıt ve Doğrulama" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "Kaydolma devre dışı bırakıldı" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "Yeni Kayıt" @@ -24152,8 +24339,10 @@ msgstr "Geç" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "Yetkilendirmeyi Geç" @@ -24317,6 +24506,16 @@ msgstr "Socket.IO Aktarım Modu" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24384,7 +24583,7 @@ msgstr "Sıralama alanı {0} geçerli bir alan adı olmalıdır" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24474,7 +24673,7 @@ msgstr "" msgid "Standard" msgstr "Standart" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "Standart DocType silinemez." @@ -24490,7 +24689,7 @@ msgstr "Standart Belirlenmedi" msgid "Standard Permissions" msgstr "Standart İzinler" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "Standart Yazdırma Formatı güncellenemez" @@ -24677,7 +24876,6 @@ msgstr "Zaman Aralığı" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24702,7 +24900,6 @@ msgstr "Zaman Aralığı" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24713,7 +24910,7 @@ msgstr "Zaman Aralığı" msgid "Status" msgstr "Durum" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "Durumlar Güncellendi" @@ -24843,8 +25040,6 @@ msgstr "Alt Alan Adı" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24853,10 +25048,9 @@ msgstr "Alt Alan Adı" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "Konu" @@ -24895,7 +25089,7 @@ msgstr "Gönderim Kuyruğu" msgid "Submit" msgstr "Gönder" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Gönder/İşle" @@ -24953,7 +25147,7 @@ msgstr "Bu adımı tamamlamak için bu belgeyi gönderin." msgid "Submit this document to confirm" msgstr "Onaylamak için bu belgeyi gönderin" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} belge gönderilsin mi?" @@ -25047,7 +25241,7 @@ msgstr "Başarılı mesajı" msgid "Success title" msgstr "Başarılı başlığı" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "Başarılı! Artık Hazırsınız 👍" @@ -25102,7 +25296,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "Önerilen Kullanıcı Adı: {0}" @@ -25115,7 +25309,7 @@ msgstr "Önerilen Kullanıcı Adı: {0}" msgid "Sum" msgstr "Toplam" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "Toplam {0}" @@ -25224,7 +25418,7 @@ msgstr "Senkronize Ediliyor" msgid "Syncing {0} of {1}" msgstr "Senkronize Ediliyor {0}/{1}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "Sözdizimi Hatası" @@ -25402,6 +25596,7 @@ msgstr "Sistem Günlükleri" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25461,6 +25656,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25531,7 +25731,7 @@ msgstr "Tablo Temizlendi" msgid "Table updated" msgstr "Tablo güncellendi" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "Tablo {0} boş olamaz" @@ -25639,7 +25839,7 @@ msgstr "Şablon Uyarıları" msgid "Templates" msgstr "Şablonlar" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "Geçici Olarak Devre Dışı" @@ -25658,10 +25858,6 @@ msgstr "Test İş ID" msgid "Test Spanish" msgstr "İspanyolca Test" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "Test e-postası {0} adresine gönderildi" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "Test_Klasoru" @@ -25729,10 +25925,6 @@ msgstr "E-postanız için teşekkür ederiz" msgid "Thank you for your feedback!" msgstr "Geri bildirim için teşekkürler!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "Güncellemelerimize abone olmak konusundaki ilginiz için teşekkür ederiz" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "Mesajınız için teşekkürler" @@ -25801,7 +25993,7 @@ msgstr "Google Cloud Konsolu'ndan altında elde edilen tarayıcı API anahtarı" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "Değişiklikler geri alındı." @@ -25859,11 +26051,11 @@ msgstr "Aşağıdaki Görev Günleri tekrarlandı: {0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "Aşağıdaki değerler geçersizdir: {0}. Değerler {1} değerlerinden biri olmalıdır" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" msgstr "{0} için aşağıdaki değerler mevcut değil: {1}" @@ -25902,7 +26094,7 @@ msgstr "Bir sonraki tur kullanıcının kaldığı yerden başlayacaktır." msgid "The number of seconds until the request expires" msgstr "İsteğin süresinin dolmasına kadar geçecek saniye sayısı" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." msgstr "Şifrenizin süresi doldu." @@ -25919,15 +26111,15 @@ msgstr "Google Cloud Console'dan altında elde edilen proje numarası" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "Şifre sıfırlama bağlantısının süresi doldu" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "Şifre sıfırlama bağlantısı daha önce kullanılmış veya geçersiz" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Aradığınız kaynak mevcut değil" @@ -25939,7 +26131,7 @@ msgstr "{0} rolü özel bir rol olmalıdır." msgid "The selected document {0} is not a {1}." msgstr "Seçilen belge {0} bir {1} değildir." -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin." @@ -26000,7 +26192,7 @@ msgstr "Sizin için yaklaşan bir etkinlik bulunamadı." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:" @@ -26029,7 +26221,7 @@ msgstr "Şu anda size gösterecek yeni bir şey yok." msgid "There is some problem with the file url: {0}" msgstr "Dosya URL'sinde bir sorun var: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:" @@ -26053,7 +26245,7 @@ msgstr "Hatalar oluştu" msgid "There were errors while creating the document. Please try again." msgstr "Belge oluşturulurken hatalar oluştu. Lütfen tekrar deneyin." -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin." @@ -26067,6 +26259,12 @@ msgstr "Adı ayarlarken bazı hatalar oluştu, lütfen yöneticiyle iletişime g msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "Bu duyurular Navbar'ın altında kapatılabilir bir uyarı içinde görünecektir." +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26092,7 +26290,7 @@ msgstr "Üçüncü Taraf Kimlik Doğrulama" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Bu Para Birimi aktif değil. İşlemlerde kullanmak için etkinleştirin." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "Bu Kanban Panosu özel olacak" @@ -26116,7 +26314,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "Bu eylem geri döndürülemez. Devam etmek istiyor musunuz?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "Bu eylem yalnızca {} için izin verilir" @@ -26143,7 +26341,7 @@ msgstr "Bu dcotype için temizlenecek artık alan yok" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Bu belge başka bir kullanıcı tarafından değiştirildiği için şu anda silinemiyor. Lütfen bir süre sonra tekrar deneyin." @@ -26159,7 +26357,7 @@ msgstr "Bu belgede son PDF'de görünmeyebilecek kaydedilmemiş değişiklikler msgid "This document is already amended, you cannot ammend it again" msgstr "Bu belge zaten değiştirilmiş, tekrar değiştiremezsiniz" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "Bu belge şu anda kilitli ve yürütülmek üzere sıraya alınmış durumda. Lütfen bir süre sonra tekrar deneyin." @@ -26220,7 +26418,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Bu slayt gösterisinin üstüne gelir." -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Bu bir arka plan raporudur. Lütfen uygun filtreleri ayarlayın ve ardından yeni bir tane oluşturun." @@ -26276,15 +26474,7 @@ msgstr "" msgid "This month" msgstr "Bu Ay" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "Bu bültenin {0} adresine gönderilmesi planlanmaktadır." - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "Bu bültenin daha sonraki bir tarihte gönderilmesi planlanmıştı. Şimdi göndermek istediğinizden emin misiniz?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek kadar büyüktür, bunun yerine bu raporu {1} adresinde bulabilirsiniz." @@ -26292,7 +26482,7 @@ msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek k msgid "This report was generated on {0}" msgstr "Bu rapor {0} adresinde oluşturuldu" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "Bu rapor {0} oluşturuldu." @@ -26358,7 +26548,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "Bu işi hemen sonlandırmak tehlikeli olabilir, emin misiniz? " -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26396,7 +26586,6 @@ msgstr "Perşembe" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "Zaman" @@ -26622,10 +26811,8 @@ msgid "Title of the page" msgstr "Sayfa başlığı" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "Kime" @@ -26680,7 +26867,7 @@ msgstr "Belgeden dinamik değerler eklemek için\n\n" "\n\n" "gibi jinja etiketlerini kullanın" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "Daha fazla rapora izin vermek için Sistem Ayarları'ndaki güncelleme sınırını ayarlayın." @@ -26716,7 +26903,7 @@ msgstr "Bu adımı JSON olarak dışa aktarmak için, bunu bir Onboarding belges msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın." @@ -26791,7 +26978,7 @@ msgstr "Izgara Görünümü" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" @@ -26812,6 +26999,12 @@ msgstr "" msgid "Token Cache" msgstr "Anahtar Önbelleği" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26839,7 +27032,7 @@ msgstr "Çok Fazla Seçim Yapıldı" msgid "Too Many Requests" msgstr "Çok Fazla İstek" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı." @@ -26847,7 +27040,7 @@ msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre dışı bırakıldı. Lütfen bir saat sonra tekrar deneyin" @@ -26909,9 +27102,9 @@ msgstr "Sağ Üst" msgid "Topic" msgstr "Konu" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "Toplam" @@ -26937,16 +27130,8 @@ msgstr "Toplam Görüntüler" msgid "Total Outgoing Emails" msgstr "Toplam Giden E-postalar" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "Toplam Alıcılar" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "Toplam Abone Sayısı" @@ -26955,11 +27140,6 @@ msgstr "Toplam Abone Sayısı" msgid "Total Users" msgstr "Toplam Kullanıcı" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "Toplam Görüntüleme" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -27047,7 +27227,7 @@ msgstr "" msgid "Tracking" msgstr "İzleme" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "İzleme bağlantısı oluşturuldu ve panoya kopyalandı" @@ -27094,7 +27274,7 @@ msgstr "Geçişler" msgid "Translatable" msgstr "Çevirilebilir" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -27127,6 +27307,11 @@ msgstr "Çeviri" msgid "Translations" msgstr "Çeviriler" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27349,33 +27534,65 @@ msgstr "Dökümatasyon yardımıcı için URL bağlantısı." msgid "URL must start with http:// or https://" msgstr "URL http:// veya https:// ile başlamalıdır" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "Sayfanın URL'si" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "Slayt gösterisi görüntüsüne tıklandığında gidilecek URL" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM Kaynağı" @@ -27408,7 +27625,7 @@ msgstr "Ekli dosya açılamıyor. CSV olarak mı dışa aktardınız?" msgid "Unable to read file format for {0}" msgstr "{0} için dosya biçimi okunamıyor" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "Eksik bir e-posta hesabı nedeniyle e-posta gönderilemiyor. Lütfen Ayarlar > E-posta Hesabı bölümünden varsayılan E-posta Hesabını ayarlayın" @@ -27425,7 +27642,7 @@ msgstr "{0} için dosya biçimi yazılamıyor" msgid "Unassign Condition" msgstr "Koşulu Kaldır" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27433,16 +27650,20 @@ msgstr "" msgid "Unchanged" msgstr "Değişmedi" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "Geri Al" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "Son işlemi geri al" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "Takibi Bırak" @@ -27465,6 +27686,13 @@ msgstr "İşlenmeyen E-postalar" msgid "Unique" msgstr "Benzersiz" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "Bilinmiyor" @@ -27473,7 +27701,7 @@ msgstr "Bilinmiyor" msgid "Unknown Column: {0}" msgstr "Bilinmeyen Sütun: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "Bilinmeyen Yuvarlama Yöntemi: {}" @@ -27520,7 +27748,7 @@ msgstr "Tüm Seçimi Kaldır" msgid "Unshared" msgstr "Paylaşılmamış" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "Abonelikten Çık" @@ -27540,10 +27768,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "Kaydolmamış" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "Başlıksız Sütun" @@ -27666,7 +27899,7 @@ msgstr "Yeni Bir Sürüme Güncellendi 🎉" msgid "Updated successfully" msgstr "Başarıyla Güncellendi" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "Güncelleniyor" @@ -27944,7 +28177,7 @@ msgstr "Kullanıcı Oluşturamaz" msgid "User Cannot Search" msgstr "Kullanıcı Arama Yapamaz" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "Kullanıcı Değiştirildi" @@ -28050,12 +28283,12 @@ msgstr "Kullanıcı İzinleri" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "Kullanıcı İzinleri" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Kullanıcı İzinleri" @@ -28156,15 +28389,15 @@ msgstr "{0} e-posta adresine sahip kullanıcı mevcut değil" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "E-posta adresi: {0} olan kullanıcı sistemde mevcut değil. Lütfen 'Sistem Yöneticisi'nden kullanıcıyı sizin için oluşturmasını isteyin." -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "Kullanıcı {0} silinemez" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "Kullanıcı {0} devre dışı bırakılamaz" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "Kullanıcı {0} yeniden adlandırılamaz" @@ -28185,7 +28418,7 @@ msgstr "Kullanıcı {0} bir Çalışma Alanı oluşturma iznine sahip değil." msgid "User {0} has requested for data deletion" msgstr "{0} isimli Kullanıcı veri silme talebinde bulundu" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "{0}, {1} olarak kullanıyor" @@ -28214,7 +28447,7 @@ msgstr "" msgid "Username" msgstr "Kullanıcı Adı" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "Kullanıcı adı {0} zaten var" @@ -28354,15 +28587,15 @@ msgstr "Değer Değişti" msgid "Value To Be Set" msgstr "Ayarlanacak Değer" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "{0} Değeri Değiştirilemez" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "Değer negatif olamaz" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "{0} için değer negatif olamaz : {1}" @@ -28388,6 +28621,12 @@ msgstr "Bu alandaki değer, Yapılacaklar'da son tarih olarak ayarlanacaktır" msgid "Value must be one of {0}" msgstr "{0} değerlerinden biri olmalıdır" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28401,7 +28640,7 @@ msgstr "Değer çok büyük" msgid "Value {0} missing for {1}" msgstr "{1} için {0} değeri eksik" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "Değer {0} geçerli süre biçiminde olmalıdır: d h m s" @@ -28481,7 +28720,7 @@ msgstr "Göster" msgid "View All" msgstr "Tümünü Göster" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "Denetim İzini Görüntüle" @@ -28725,7 +28964,7 @@ msgstr "Web Sayfası" msgid "Web Page Block" msgstr "Web Sayfası Bloğu" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "Web Sayfası URL'si" @@ -28768,6 +29007,7 @@ msgstr "Web Görünümü" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28826,7 +29066,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28834,9 +29073,7 @@ msgid "Website" msgstr "Website" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "Web Sitesi Analitiği" @@ -29036,11 +29273,11 @@ msgstr "Hoş Geldiniz Bağlantısı" msgid "Welcome Workspace" msgstr "Çalışma Alanına Hoşgeldiniz" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "Hoşgeldiniz e-postası gönderildi" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "Hoşgeldiniz {0}" @@ -29126,7 +29363,7 @@ msgstr "Yalnızca bölüm başlıkları etkinleştirilmişse gösterilir" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "Antetli Kağıt ile" @@ -29267,12 +29504,12 @@ msgstr "İş akışı başarıyla güncellendi" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Çalışma Alanı" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "Çalışma Alanı {0} mevcut değil" @@ -29394,7 +29631,7 @@ msgstr "Y Ekseni Alanları" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "Y Alanı" @@ -29455,7 +29692,7 @@ msgstr "Sarı" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Evet" @@ -29495,11 +29732,11 @@ msgstr "Başka bir kullanıcı gibi davranıyorsunuz." msgid "You are not allowed to access this resource" msgstr "Bu kaynağa erişim izniniz yok" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29522,7 +29759,7 @@ msgstr "Raporu düzenlemenize izin verilmiyor." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor" @@ -29530,11 +29767,11 @@ msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor" msgid "You are not allowed to print this report" msgstr "Bu raporu yazdırmanıza izin verilmiyor" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "Bu belge ile ilişkili e-posta göndermenize izin verilmiyor" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "Bu Web Form Belgesini güncelleme izniniz yok" @@ -29550,7 +29787,7 @@ msgstr "Giriş yapmadan bu sayfaya erişmenize izin verilmiyor." msgid "You are not permitted to access this page." msgstr "Bu sayfaya erişim yetkiniz bulunmamaktadır." -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29558,7 +29795,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Şu anda bu belgeyi takip ediyorsunuz. Günlük güncellemeleri e-posta yoluyla alacaksınız. Bunu Kullanıcı Ayarları'ndan değiştirebilirsiniz." -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Sadece siparişi güncellemenize izin verilir, uygulama ekleme veya kaldırma işlemi yapamazsınız." @@ -29603,7 +29840,7 @@ msgstr "Saklama ayalarlarını {0} konumundan değiştirebilirsiniz." msgid "You can continue with the onboarding after exploring this page" msgstr "Bu sayfayı inceledikten sonra tanıtıma devam edebilirsiniz" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "Bu {0} öğesini silmek yerine devre dışı bırakabilirsiniz." @@ -29645,7 +29882,7 @@ msgstr "Aşağıdakilerden birini seçebilirsiniz," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bir değer ayarlayabilirsiniz." -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz." @@ -29722,11 +29959,15 @@ msgstr "{} için Okuma veya Seçme İzniniz yok" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Bu kaynağa erişmek için yeterli izniniz yok. Erişim için lütfen yöneticinizle iletişime geçin." -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "İşlemi tamamlamak için yeterli izniniz yok" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29734,19 +29975,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok." -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "Rapora erişiminiz yok: {0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "{0} isimli DocType erişimi için izniniz yok." -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "{0} Raporunu almak için izniniz yok." @@ -29811,15 +30052,15 @@ msgstr "Düzenlediniz" msgid "You must add atleast one link." msgstr "En az bir bağlantı eklemelisiniz." -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "Bu formu kullanabilmek için giriş yapmalısınız." -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "Bu formu göndermek için giriş yapmalısınız" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29839,7 +30080,7 @@ msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmekted msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Standart Web Formlarını düzenlemeniz için geliştirici modunda olmanız gerekiyor" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetkilerine sahip olmanız gerekir." @@ -29922,7 +30163,7 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız" msgid "You viewed this" msgstr "Bunu görüntülediniz" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Başka bir sekmeden başka bir kullanıcı olarak oturum açtınız. Sistemi kullanmaya devam etmek için bu sayfayı yenileyin." @@ -29963,11 +30204,11 @@ msgstr "Hesabınız kilitlendi ve {0} saniye sonra yeniden erişilebilir olacak" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "{0} {1} üzerindeki atama {2} tarafından kaldırıldı" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "Tarayıcınız ses öğesini desteklemiyor." -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "Tarayıcınız video öğesini desteklemiyor." @@ -29987,11 +30228,11 @@ msgstr "Formunuz başarıyla güncellendi" msgid "Your login id is" msgstr "Giriş kimliğiniz" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "Yeni şifreniz başarıyla ayarlandı." -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "Eski şifreniz hatalı." @@ -30005,7 +30246,7 @@ msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bilgileriniz varsa, lütfen bu e-postayı yanıtlayın." -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın." @@ -30017,7 +30258,7 @@ msgstr "Siteniz bakımda veya güncelleniyor." msgid "Your verification code is {0}" msgstr "Doğrulama kodunuz {0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "Sıfır" @@ -30041,7 +30282,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -30064,7 +30305,7 @@ msgstr "" msgid "amend" msgstr "değiştir" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "ve" @@ -30121,8 +30362,8 @@ msgstr "oluştur" msgid "cyan" msgstr "açık Mavi" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "g" @@ -30236,7 +30477,7 @@ msgstr "e-posta" msgid "email inbox" msgstr "e-posta gelen kutusu" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "boş" @@ -30288,8 +30529,8 @@ msgstr "gri" msgid "gzip not found in PATH! This is required to take a backup." msgstr "gzip PATH içinde bulunamadı! Yedek almak için bu gereklidir." -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "s" @@ -30322,7 +30563,7 @@ msgstr "eposta@ornek.com.tr" msgid "just now" msgstr "Şimdi" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "etiket" @@ -30362,8 +30603,8 @@ msgstr "" msgid "long" msgstr "uzun" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "d" @@ -30552,8 +30793,8 @@ msgstr "yanıt" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "s" @@ -30846,7 +31087,7 @@ msgstr "" msgid "{0} Report" msgstr "{0} Raporu" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0} Raporları" @@ -30887,7 +31128,7 @@ msgstr "{0} zaten aboneliği iptal etti" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0}, zaten {1} {2} için abonelikten çıkmış." -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0} ve {1}" @@ -30895,7 +31136,7 @@ msgstr "{0} ve {1}" msgid "{0} are currently {1}" msgstr "{0} şu anda {1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "{0} gereklidir" @@ -30925,7 +31166,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0} bu belgeyi iptal etti {1}" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0} iptal edilmediği için düzeltilemez. Lütfen bir düzeltme yapmadan önce belgeyi iptal edin." @@ -30993,7 +31234,11 @@ msgstr "{1} satırında {0} mevcut değil" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} alanı {1} içinde benzersiz olarak ayarlanamaz, çünkü benzersiz olmayan mevcut değerler var" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "{0} biçimi bu sütundaki değerlerden belirlenemedi. Varsayılan {1}." @@ -31013,11 +31258,7 @@ msgstr "{0} s" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0} başarıyla E-posta Grubuna eklendi." - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "{0} hesabı {1} {2} ile ilgili aboneliği sonlandırıldı." @@ -31087,6 +31328,10 @@ msgstr "{0} {1} gibi" msgid "{0} is mandatory" msgstr "{0} yaşam alanı" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -31108,7 +31353,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} Dinamik Bağlantı için geçerli bir DocType değil" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "{0} geçerli bir E-Posta Adresi değil." @@ -31116,11 +31361,11 @@ msgstr "{0} geçerli bir E-Posta Adresi değil." msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} geçerli bir ISO 3166 ALPHA-2 kodu değil." -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0} geçerli bir İsim değil" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0} geçerli bir Telefon Numarası değil" @@ -31128,15 +31373,15 @@ msgstr "{0} geçerli bir Telefon Numarası değil" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} geçerli bir İş Akışı Durumu değil. Lütfen İş Akışınızı güncelleyin ve tekrar deneyin." -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0}, {1} için geçerli bir üst DocType değildir." -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0}, {1} için geçerli bir üst alan değil" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden biri olmalıdır {1}" @@ -31160,7 +31405,7 @@ msgstr "" msgid "{0} is not set" msgstr "{0} ayarlanmamış" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "{0} artık {1} belge türü için varsayılan yazdırma biçimidir" @@ -31170,7 +31415,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} içerir" @@ -31183,11 +31429,11 @@ msgstr "{0} ayarlandı" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "{0} Kayıt Seçildi" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31220,23 +31466,23 @@ msgstr "{0} dakika önce" msgid "{0} months ago" msgstr "{0} ay önce" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0} '{1}' ile başlamalıdır" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0} '{1}' değerine eşit olmalıdır" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0} hiçbiri {1} olmamalıdır" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31248,7 +31494,7 @@ msgstr "{0} önce ayarlanmalıdır" msgid "{0} must be unique" msgstr "{0} benzersiz olmalıdır" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31277,16 +31523,12 @@ msgstr "{0}/{1} Kayıt Listeleniyor" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "{0} / {1} gönderildi" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "Sadece {0}." -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0} veya {1}" @@ -31323,11 +31565,11 @@ msgstr "{0} atamalarını kaldırdı." msgid "{0} role does not have permission on any doctype" msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok." -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0} satır #{1}: " -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "{0} başarıyla kaydedildi" @@ -31369,7 +31611,7 @@ msgstr "{0} {1} bu dökümanı gönderdi." msgid "{0} subscribers added" msgstr "{0} aboneler eklendi" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "Bu tür e-postaları almaya devam etmek istemiyorsanız {0}" @@ -31439,11 +31681,11 @@ msgstr "{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "{0} {1} bulunamadı." -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Gönderilen kayıt silinemez. Önce {2} İptal {3} işlemini gerçekleştirin." @@ -31556,7 +31798,7 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ile {2}" @@ -31592,11 +31834,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Tamamlandı" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "{} Muhtemelen geçersiz python kodu.
{}" @@ -31618,7 +31860,7 @@ msgstr "{} alanı boş olamaz." msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{} devre dışı bırakılmıştır. Yalnızca {} işaretliyse etkinleştirilebilir." -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{} geçerli bir tarih dizesi değil." diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po index ffa74f3f7b..58a5454180 100644 --- a/frappe/locale/vi.po +++ b/frappe/locale/vi.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:41\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "" msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "1 comment" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "" @@ -157,17 +157,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" msgstr "" @@ -179,37 +179,37 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "" @@ -225,7 +225,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "" @@ -524,11 +524,6 @@ msgstr "" msgid "Hi," msgstr "" -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "" @@ -555,6 +550,11 @@ msgstr "" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "" @@ -589,6 +589,13 @@ msgstr "" msgid "A template already exists for field {0} of {1}" msgstr "" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." msgstr "" @@ -833,7 +840,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -850,7 +856,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "" @@ -899,10 +905,10 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" msgstr "" @@ -964,8 +970,8 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "" @@ -982,7 +988,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1006,7 +1012,7 @@ msgstr "" msgid "Add Card to Dashboard" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" msgstr "" @@ -1015,8 +1021,8 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1052,7 +1058,7 @@ msgid "Add Gray Background" msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" msgstr "" @@ -1077,7 +1083,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "" @@ -1087,7 +1093,7 @@ msgstr "" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "" @@ -1110,12 +1116,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" msgstr "" @@ -1222,7 +1228,7 @@ msgid "Add tab" msgstr "" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "" @@ -1377,11 +1383,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1489,6 +1495,14 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" + #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -1529,7 +1543,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1859,6 +1872,12 @@ msgstr "" msgid "Allowed Modules" msgstr "" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1875,7 +1894,43 @@ msgstr "" msgid "Allowing DocType, DocType. Be careful!" msgstr "" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "" @@ -1966,7 +2021,7 @@ msgstr "" msgid "Amendment Naming Override" msgstr "" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "" @@ -1974,7 +2029,7 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2055,16 +2110,6 @@ msgstr "" msgid "App" msgstr "" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2078,21 +2123,24 @@ msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" msgstr "" +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" msgstr "" @@ -2157,7 +2205,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2238,7 +2286,7 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2270,7 +2318,7 @@ msgstr "" msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2306,10 +2354,6 @@ msgstr "" msgid "Are you sure you want to save this document?" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" @@ -2342,16 +2386,16 @@ msgstr "" msgid "Assign Condition" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "" @@ -2503,7 +2547,7 @@ msgstr "" msgid "Attach" msgstr "" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" msgstr "" @@ -2563,9 +2607,7 @@ msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "" @@ -2592,20 +2634,17 @@ msgid "Attachment Removed" msgstr "" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2613,11 +2652,6 @@ msgstr "" msgid "Attribution" msgstr "" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2662,6 +2696,11 @@ msgstr "" msgid "Author" msgstr "" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2896,7 +2935,7 @@ msgstr "" msgid "Average" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" msgstr "" @@ -3001,7 +3040,7 @@ msgstr "" msgid "BCC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" msgstr "" @@ -3044,7 +3083,7 @@ msgstr "" #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" msgstr "" @@ -3649,7 +3688,7 @@ msgstr "" msgid "CC" msgstr "" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "" @@ -3772,10 +3811,8 @@ msgstr "" msgid "Camera" msgstr "" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3842,7 +3879,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3860,11 +3897,7 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" @@ -3931,11 +3964,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3963,7 +3996,7 @@ msgstr "" msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4018,7 +4051,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" msgstr "" @@ -4055,7 +4088,7 @@ msgstr "" msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,7 +4133,7 @@ msgstr "" msgid "Cannot use sub-query in order by" msgstr "" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4126,7 +4159,7 @@ msgstr "" msgid "Card Break" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" msgstr "" @@ -4157,10 +4190,6 @@ msgstr "" msgid "Category Name" msgstr "" -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "" - #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json @@ -4268,7 +4297,7 @@ msgstr "" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "" @@ -4325,10 +4354,6 @@ msgstr "" msgid "Check Request URL" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." msgstr "" @@ -4352,10 +4377,6 @@ msgstr "" msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "" - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" msgstr "" @@ -4402,6 +4423,10 @@ msgstr "" msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" msgstr "" @@ -4441,15 +4466,19 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" msgstr "" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4475,7 +4504,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" msgstr "" @@ -4491,10 +4520,6 @@ msgstr "" msgid "Click here" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "" @@ -4574,8 +4599,10 @@ msgid "Client Credentials" msgstr "" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "" @@ -4591,6 +4618,12 @@ msgstr "" msgid "Client Information" msgstr "" +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + #. Label of a Link in the Build Workspace #. Name of a DocType #. Label of the client_script (Code) field in DocType 'DocType Layout' @@ -4603,13 +4636,32 @@ msgstr "" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" @@ -4694,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4749,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4836,11 +4888,11 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" msgstr "" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" msgstr "" @@ -4999,7 +5051,7 @@ msgstr "" msgid "Complete By" msgstr "" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "" @@ -5089,6 +5141,12 @@ msgstr "" msgid "Conditions" msgstr "" +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -5125,7 +5183,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5134,7 +5192,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "" @@ -5147,7 +5205,7 @@ msgstr "" msgid "Confirm New Password" msgstr "" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "" @@ -5156,17 +5214,12 @@ msgstr "" msgid "Confirm Request" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "" - #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" msgstr "" @@ -5193,8 +5246,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" msgstr "" @@ -5286,6 +5339,11 @@ msgstr "" msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." msgstr "" +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" msgstr "" @@ -5297,8 +5355,6 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5306,8 +5362,7 @@ msgstr "" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5331,10 +5386,8 @@ msgstr "" msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5391,7 +5444,7 @@ msgstr "" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." msgstr "" @@ -5407,7 +5460,7 @@ msgstr "" msgid "Copy error to clipboard" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "" @@ -5432,7 +5485,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" msgstr "" @@ -5440,6 +5493,10 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "" @@ -5456,7 +5513,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "" @@ -5495,7 +5552,7 @@ msgstr "" msgid "Country" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "" @@ -5527,7 +5584,7 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5541,13 +5598,13 @@ msgstr "" msgid "Create Address" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "" @@ -5626,11 +5683,6 @@ msgstr "" msgid "Create a {0} Account" msgstr "" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" msgstr "" @@ -5979,6 +6031,10 @@ msgstr "" msgid "Custom field renamed to {0} successfully." msgstr "" +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json @@ -6012,12 +6068,12 @@ msgstr "" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6036,7 +6092,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" msgstr "" @@ -6162,7 +6218,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6329,7 +6385,6 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6393,6 +6448,11 @@ msgstr "" msgid "Day of Week" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" @@ -6657,15 +6717,16 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" @@ -6701,7 +6762,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "" @@ -6743,12 +6804,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6972,6 +7033,7 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json @@ -7155,8 +7217,8 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7165,7 +7227,7 @@ msgstr "" msgid "Disabled Auto Reply" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 @@ -7323,6 +7385,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7568,7 +7631,7 @@ msgstr "" msgid "Document Naming Settings" msgstr "" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" msgstr "" @@ -7725,7 +7788,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "" @@ -7862,7 +7925,7 @@ msgid "Don't encode HTML tags like <script> or just characters like < o msgstr "" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "" @@ -7916,7 +7979,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "" @@ -8000,7 +8063,7 @@ msgid "Due Date Based On" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" msgstr "" @@ -8115,9 +8178,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8129,7 +8192,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8164,11 +8227,11 @@ msgstr "" msgid "Edit Custom HTML" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8343,10 +8406,9 @@ msgstr "" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json @@ -8381,7 +8443,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" msgstr "" @@ -8437,11 +8499,9 @@ msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "" @@ -8490,7 +8550,7 @@ msgstr "" msgid "Email Queue Recipient" msgstr "" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "" @@ -8514,18 +8574,11 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" msgstr "" -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "" - #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType #. 'Customize Form' @@ -8561,7 +8614,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "" @@ -8593,7 +8646,7 @@ msgstr "" msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8619,7 +8672,7 @@ msgstr "" msgid "Emails are already being pulled from this account." msgstr "" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" msgstr "" @@ -8632,10 +8685,18 @@ msgstr "" msgid "Embed code copied" msgstr "" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" msgstr "" +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" + #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' #. Label of the enable (Check) field in DocType 'Google Settings' @@ -8671,6 +8732,12 @@ msgstr "" msgid "Enable Comments" msgstr "" +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Enable Email Notification" @@ -8830,8 +8897,8 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "" @@ -8958,7 +9025,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" msgstr "" @@ -9061,7 +9128,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "" @@ -9099,6 +9166,14 @@ msgstr "" msgid "Error in print format on line {0}: {1}" msgstr "" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "" @@ -9264,7 +9339,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" msgstr "" @@ -9290,11 +9365,15 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" msgstr "" @@ -9347,13 +9426,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9711,8 +9790,8 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9783,7 +9862,7 @@ msgstr "" msgid "Field type cannot be changed for {0}" msgstr "" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "" @@ -9826,7 +9905,7 @@ msgstr "" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9842,7 +9921,7 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" @@ -9894,6 +9973,10 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" @@ -10059,6 +10142,14 @@ msgstr "" msgid "Filter Values" msgstr "" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." msgstr "" @@ -10270,7 +10361,7 @@ msgid "Folio" msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:106 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Follow" msgstr "" @@ -10278,7 +10369,7 @@ msgstr "" msgid "Followed by" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:130 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 msgid "Following Report Filters have missing values:" msgstr "" @@ -10302,10 +10393,6 @@ msgstr "" msgid "Following fields have missing values:" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:30 -msgid "Following links are broken in the email content: {0}" -msgstr "" - #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" @@ -10466,7 +10553,7 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10722,15 +10809,13 @@ msgid "Friday" msgstr "" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "" @@ -10746,7 +10831,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" msgstr "" @@ -10797,7 +10882,7 @@ msgstr "" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "" @@ -10806,10 +10891,14 @@ msgstr "" msgid "Function Based On" msgstr "" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." msgstr "" +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" msgstr "" @@ -10871,7 +10960,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "" @@ -10879,8 +10968,8 @@ msgstr "" msgid "Generate Random Password" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "" @@ -10995,7 +11084,7 @@ msgstr "" msgid "Global Unsubscribe" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" msgstr "" @@ -11159,8 +11248,6 @@ msgstr "" msgid "Google Contacts Id" msgstr "" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "" @@ -11197,6 +11284,7 @@ msgstr "" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" @@ -11291,6 +11379,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "" @@ -11305,7 +11397,7 @@ msgstr "" msgid "Group your custom doctypes under modules" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}" msgstr "" @@ -11339,7 +11431,6 @@ msgstr "" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11353,11 +11444,10 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11586,7 +11676,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "" @@ -11622,12 +11712,17 @@ msgstr "" msgid "Hidden Fields" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "" @@ -11734,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "" @@ -11789,7 +11884,7 @@ msgstr "" msgid "Highlight" msgstr "" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" msgstr "" @@ -11862,20 +11957,30 @@ msgstr "" msgid "Hourly rate limit for generating password reset links" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" msgstr "" +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12280,7 +12385,7 @@ msgstr "" msgid "Image link '{0}' is not valid" msgstr "" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "" @@ -12328,7 +12433,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12556,11 +12661,15 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" msgstr "" @@ -12627,11 +12736,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "" @@ -12718,7 +12827,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" msgstr "" @@ -12783,11 +12892,11 @@ msgstr "" msgid "Instructions Emailed" msgstr "" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" msgstr "" @@ -12909,7 +13018,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" @@ -12937,7 +13046,7 @@ msgstr "" msgid "Invalid Credentials" msgstr "" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "" @@ -12945,7 +13054,7 @@ msgstr "" msgid "Invalid DocType" msgstr "" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "" @@ -12957,6 +13066,11 @@ msgstr "" msgid "Invalid File URL" msgstr "" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" msgstr "" @@ -12969,7 +13083,7 @@ msgstr "" msgid "Invalid Home Page" msgstr "" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" msgstr "" @@ -13003,7 +13117,7 @@ msgstr "" msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" msgstr "" @@ -13015,13 +13129,13 @@ msgstr "" msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "" @@ -13065,11 +13179,39 @@ msgstr "" msgid "Invalid aggregate function" msgstr "" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "" @@ -13081,10 +13223,30 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" msgstr "" +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" + #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13093,11 +13255,26 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:189 +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13119,10 +13296,22 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "" @@ -13530,8 +13719,8 @@ msgstr "" msgid "Join video conference with {0}" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" msgstr "" @@ -13564,11 +13753,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13856,7 +14045,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" msgstr "" @@ -14152,7 +14341,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14280,6 +14469,10 @@ msgstr "" msgid "Limit" msgstr "" +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" @@ -14462,7 +14655,7 @@ msgstr "" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "" @@ -14492,7 +14685,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14543,6 +14736,7 @@ msgid "Load Balancing" msgstr "" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14563,7 +14757,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" msgstr "" @@ -14775,6 +14969,11 @@ msgstr "" msgid "Login with {0}" msgstr "" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 @@ -14961,7 +15160,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" msgstr "" @@ -15061,11 +15260,9 @@ msgstr "" msgid "Mark as Unread" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15186,7 +15383,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15254,7 +15451,6 @@ msgstr "" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15267,11 +15463,10 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" @@ -15282,16 +15477,6 @@ msgctxt "Default title of the message dialog" msgid "Message" msgstr "" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15318,7 +15503,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" msgstr "" @@ -15396,6 +15581,12 @@ msgstr "" msgid "Meta title for SEO" msgstr "" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15415,7 +15606,7 @@ msgstr "" msgid "Method" msgstr "" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" msgstr "" @@ -15465,6 +15656,11 @@ msgstr "" msgid "Minor" msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15504,7 +15700,7 @@ msgstr "" msgid "Missing Fields" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" msgstr "" @@ -15512,7 +15708,7 @@ msgstr "" msgid "Missing Permission" msgstr "" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "" @@ -15578,7 +15774,7 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15860,7 +16056,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." msgstr "" @@ -15878,7 +16074,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16020,12 +16216,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16044,10 +16240,14 @@ msgstr "" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." msgstr "" @@ -16130,7 +16330,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" msgstr "" @@ -16153,10 +16353,6 @@ msgstr "" msgid "New Name" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "" @@ -16169,7 +16365,7 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "" @@ -16214,7 +16410,26 @@ msgstr "" msgid "New Workspace" msgstr "" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "" @@ -16238,7 +16453,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16246,19 +16461,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "" @@ -16270,52 +16485,17 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." msgstr "" -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "" - #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "" - #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 #: frappe/public/js/frappe/web_form/web_form.js:91 @@ -16432,7 +16612,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16461,7 +16641,7 @@ msgid "No Copy" msgstr "" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16573,11 +16753,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" msgstr "" @@ -16605,10 +16785,6 @@ msgstr "" msgid "No automatic optimization suggestions available." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" msgstr "" @@ -16645,7 +16821,7 @@ msgstr "" msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" msgstr "" @@ -16665,7 +16841,7 @@ msgstr "" msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16724,7 +16900,7 @@ msgstr "" msgid "No of Sent SMS" msgstr "" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" msgstr "" @@ -16817,6 +16993,12 @@ msgstr "" msgid "Non-Conforming" msgstr "" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "" @@ -16831,7 +17013,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -16852,7 +17034,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -16878,16 +17060,16 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "" @@ -16897,8 +17079,8 @@ msgstr "" msgid "Not Published" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 @@ -16915,7 +17097,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "" @@ -16932,7 +17113,7 @@ msgstr "" msgid "Not a valid Comma Separated Value (CSV File)" msgstr "" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." msgstr "" @@ -16948,7 +17129,7 @@ msgstr "" msgid "Not active" msgstr "" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" msgstr "" @@ -16989,7 +17170,7 @@ msgstr "" #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" @@ -17167,7 +17348,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17310,6 +17491,11 @@ msgstr "" msgid "OAuth Scope" msgstr "" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "" @@ -17382,6 +17568,10 @@ msgstr "" msgid "Offset Y" msgstr "" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "" @@ -17453,7 +17643,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" msgstr "" @@ -17529,7 +17719,7 @@ msgstr "" msgid "Only Administrator can save a standard report. Please rename and save." msgstr "" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" msgstr "" @@ -17555,7 +17745,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "" @@ -17586,7 +17776,7 @@ msgstr "" msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17594,7 +17784,7 @@ msgstr "" msgid "Only the assignee can complete this to-do." msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "" @@ -17682,7 +17872,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17727,7 +17917,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" msgstr "" @@ -17737,7 +17927,7 @@ msgstr "" msgid "Optimize" msgstr "" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "" @@ -17826,6 +18016,10 @@ msgstr "" msgid "Order" msgstr "" +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" + #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -17838,7 +18032,7 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "" @@ -17920,9 +18114,11 @@ msgstr "" msgid "PATCH" msgstr "" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "" @@ -18217,11 +18413,11 @@ msgstr "" msgid "Parent is the name of the document to which the data will get added to." msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "" @@ -18281,11 +18477,11 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "" @@ -18319,11 +18515,11 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "" @@ -18331,11 +18527,11 @@ msgstr "" msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "" @@ -18343,10 +18539,6 @@ msgstr "" msgid "Passwords do not match!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "" @@ -18492,7 +18684,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "" @@ -18644,11 +18836,11 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" @@ -18706,7 +18898,7 @@ msgstr "" msgid "Please Install the ldap3 library via pip to use ldap functionality." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "" @@ -18722,7 +18914,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18754,7 +18946,7 @@ msgstr "" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" msgstr "" @@ -18819,7 +19011,7 @@ msgstr "" #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" msgstr "" @@ -18836,23 +19028,23 @@ msgstr "" msgid "Please ensure that your profile has an email address" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" msgstr "" @@ -18860,7 +19052,7 @@ msgstr "" msgid "Please enter OpenID Configuration URL" msgstr "" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" msgstr "" @@ -18872,7 +19064,7 @@ msgstr "" msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "" @@ -18885,11 +19077,11 @@ msgstr "" msgid "Please enter valid mobile nos" msgstr "" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "" @@ -18905,7 +19097,7 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." msgstr "" @@ -18917,10 +19109,6 @@ msgstr "" msgid "Please save before attaching." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" msgstr "" @@ -18949,11 +19137,11 @@ msgstr "" msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "" @@ -18969,7 +19157,7 @@ msgstr "" msgid "Please select a valid csv file with data" msgstr "" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "" @@ -18977,7 +19165,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19007,11 +19195,11 @@ msgstr "" msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" @@ -19035,7 +19223,7 @@ msgstr "" msgid "Please setup a message first" msgstr "" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "" @@ -19047,7 +19235,7 @@ msgstr "" msgid "Please specify" msgstr "" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "" @@ -19084,14 +19272,19 @@ msgstr "" msgid "Please use a valid LDAP search filter" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19137,7 +19330,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" msgstr "" @@ -19181,6 +19374,10 @@ msgstr "" msgid "Posts filed under {0}" msgstr "" +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' #. Label of the precision (Select) field in DocType 'Customize Form Field' @@ -19240,15 +19437,15 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" msgstr "" @@ -19269,8 +19466,6 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19315,7 +19510,7 @@ msgstr "" msgid "Preview type" msgstr "" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "" @@ -19386,16 +19581,16 @@ msgstr "" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19450,6 +19645,11 @@ msgstr "" msgid "Print Format Field Template" msgstr "" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19460,6 +19660,10 @@ msgstr "" msgid "Print Format Type" msgstr "" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "" @@ -19491,11 +19695,11 @@ msgstr "" msgid "Print Hide If No Value" msgstr "" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" msgstr "" @@ -19513,7 +19717,7 @@ msgstr "" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19623,6 +19827,10 @@ msgstr "" msgid "Private Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -19633,7 +19841,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "" @@ -19658,7 +19866,7 @@ msgstr "" msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "" @@ -19745,6 +19953,10 @@ msgstr "" msgid "Public Files (MB)" msgstr "" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19753,14 +19965,7 @@ msgstr "" msgid "Publish" msgstr "" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19768,7 +19973,6 @@ msgstr "" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19892,7 +20096,7 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "" @@ -19989,7 +20193,6 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" msgstr "" @@ -20012,19 +20215,11 @@ msgstr "" msgid "Queued for backup. You will receive an email with the download link" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "" - #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "" - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "" @@ -20114,7 +20309,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" msgstr "" @@ -20149,7 +20344,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "" @@ -20225,7 +20420,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "" @@ -20245,7 +20440,7 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" msgstr "" @@ -20391,12 +20586,12 @@ msgstr "" msgid "Redis cache server not running. Please contact Administrator / Tech support" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" msgstr "" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "" @@ -20610,11 +20805,11 @@ msgid "Referrer" msgstr "" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20653,7 +20848,7 @@ msgstr "" msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" msgstr "" @@ -20702,7 +20897,7 @@ msgstr "" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" msgstr "" @@ -20733,7 +20928,7 @@ msgstr "" msgid "Remind At" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "" @@ -20815,7 +21010,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" @@ -20843,7 +21038,7 @@ msgstr "" msgid "Reopen" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "" @@ -20943,6 +21138,8 @@ msgstr "" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -20958,8 +21155,11 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "" @@ -21028,7 +21228,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "" @@ -21080,11 +21280,11 @@ msgstr "" msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "" @@ -21092,7 +21292,7 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" msgstr "" @@ -21100,7 +21300,7 @@ msgstr "" msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" @@ -21113,7 +21313,7 @@ msgstr "" msgid "Report {0} deleted" msgstr "" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" msgstr "" @@ -21136,7 +21336,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "" @@ -21321,6 +21521,31 @@ msgstr "" msgid "Reset your password" msgstr "" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21446,10 +21671,8 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21552,7 +21775,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21586,7 +21809,7 @@ msgstr "" msgid "Role and Level" msgstr "" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "" @@ -21660,7 +21883,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21674,7 +21896,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21701,7 +21922,7 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "" @@ -21792,7 +22013,7 @@ msgstr "" msgid "Rule Conditions" msgstr "" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "" @@ -21981,12 +22202,12 @@ msgstr "" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22013,7 +22234,7 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" msgstr "" @@ -22032,7 +22253,7 @@ msgstr "" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22077,32 +22298,17 @@ msgstr "" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" msgstr "" @@ -22136,17 +22342,6 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "" - #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22215,6 +22410,11 @@ msgstr "" msgid "Scopes" msgstr "" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22358,6 +22558,11 @@ msgstr "" msgid "Searching ..." msgstr "" +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json @@ -22405,7 +22610,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." msgstr "" @@ -22473,8 +22678,8 @@ msgstr "" msgid "Select All" msgstr "" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22490,7 +22695,7 @@ msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "" @@ -22540,7 +22745,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "" @@ -22611,7 +22816,7 @@ msgid "Select Page" msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "" @@ -22703,13 +22908,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22747,9 +22952,7 @@ msgstr "" msgid "Self approval is not allowed" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "" @@ -22780,11 +22983,6 @@ msgstr "" msgid "Send Email Alert" msgstr "" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22832,7 +23030,7 @@ msgstr "" msgid "Send Print as PDF" msgstr "" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" msgstr "" @@ -22842,38 +23040,16 @@ msgstr "" msgid "Send System Notification" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" msgstr "" -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "" - #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "" - #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" @@ -22917,14 +23093,10 @@ msgstr "" msgid "Send login link" msgstr "" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "" - #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" @@ -22940,19 +23112,15 @@ msgstr "" #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" msgstr "" @@ -22969,9 +23137,7 @@ msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "" @@ -22991,18 +23157,9 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "" - #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23010,8 +23167,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "" @@ -23081,7 +23236,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23100,7 +23255,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23139,15 +23294,15 @@ msgstr "" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "" @@ -23179,7 +23334,7 @@ msgstr "" msgid "Set Banner from Image" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "" @@ -23205,7 +23360,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "" @@ -23377,7 +23532,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23423,7 +23578,7 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" msgstr "" @@ -23512,6 +23667,8 @@ msgstr "" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "" @@ -23538,6 +23695,12 @@ msgstr "" msgid "Show All" msgstr "" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "" @@ -23618,7 +23781,7 @@ msgstr "" msgid "Show Line Breaks after Sections" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "" @@ -23655,6 +23818,12 @@ msgstr "" msgid "Show Processlist" msgstr "" +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" msgstr "" @@ -23681,8 +23850,14 @@ msgstr "" msgid "Show Sidebar" msgstr "" +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "" @@ -23711,6 +23886,12 @@ msgstr "" msgid "Show Traceback" msgstr "" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" msgstr "" @@ -23764,6 +23945,12 @@ msgstr "" msgid "Show in Module Section" msgstr "" +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" @@ -23844,12 +24031,12 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" msgstr "" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "" @@ -23935,8 +24122,10 @@ msgstr "" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "" @@ -24100,6 +24289,16 @@ msgstr "" msgid "Soft-Bounced" msgstr "" +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." msgstr "" @@ -24167,7 +24366,7 @@ msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24257,7 +24456,7 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "" @@ -24273,7 +24472,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24460,7 +24659,6 @@ msgstr "" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24485,7 +24683,6 @@ msgstr "" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24496,7 +24693,7 @@ msgstr "" msgid "Status" msgstr "" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "" @@ -24626,8 +24823,6 @@ msgstr "" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24636,10 +24831,9 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "" @@ -24678,7 +24872,7 @@ msgstr "" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24736,7 +24930,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24830,7 +25024,7 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" msgstr "" @@ -24885,7 +25079,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "" @@ -24898,7 +25092,7 @@ msgstr "" msgid "Sum" msgstr "" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" msgstr "" @@ -25007,7 +25201,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "" @@ -25185,6 +25379,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25244,6 +25439,11 @@ msgctxt "Number system" msgid "T" msgstr "" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25314,7 +25514,7 @@ msgstr "" msgid "Table updated" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "" @@ -25422,7 +25622,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" msgstr "" @@ -25441,10 +25641,6 @@ msgstr "" msgid "Test Spanish" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" msgstr "" @@ -25510,10 +25706,6 @@ msgstr "" msgid "Thank you for your feedback!" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" msgstr "" @@ -25578,7 +25770,7 @@ msgid "The browser API key obtained from the Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25714,7 +25906,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25775,7 +25967,7 @@ msgstr "" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "" @@ -25804,7 +25996,7 @@ msgstr "" msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -25828,7 +26020,7 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." msgstr "" @@ -25842,6 +26034,12 @@ msgstr "" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -25867,7 +26065,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" msgstr "" @@ -25891,7 +26089,7 @@ msgstr "" msgid "This action is irreversible. Do you wish to continue?" msgstr "" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "" @@ -25918,7 +26116,7 @@ msgstr "" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -25934,7 +26132,7 @@ msgstr "" msgid "This document is already amended, you cannot ammend it again" msgstr "" -#: frappe/model/document.py:473 +#: frappe/model/document.py:475 msgid "This document is currently locked and queued for execution. Please try again after some time." msgstr "" @@ -25995,7 +26193,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26051,15 +26249,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26067,7 +26257,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." msgstr "" @@ -26133,7 +26323,7 @@ msgstr "" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" msgstr "" @@ -26171,7 +26361,6 @@ msgstr "" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "" @@ -26397,10 +26586,8 @@ msgid "Title of the page" msgstr "" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" msgstr "" @@ -26448,7 +26635,7 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "" @@ -26484,7 +26671,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." msgstr "" @@ -26559,7 +26746,7 @@ msgstr "" msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1819 +#: frappe/public/js/frappe/list/list_view.js:1817 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26580,6 +26767,12 @@ msgstr "" msgid "Token Cache" msgstr "" +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + #. Label of the token_type (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Token Type" @@ -26607,7 +26800,7 @@ msgstr "" msgid "Too Many Requests" msgstr "" -#: frappe/database/database.py:474 +#: frappe/database/database.py:473 msgid "Too many changes to database in single action." msgstr "" @@ -26615,7 +26808,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1030 +#: frappe/core/doctype/user/user.py:1034 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26677,9 +26870,9 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:533 +#: frappe/desk/query_report.py:546 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1322 +#: frappe/public/js/frappe/views/reports/query_report.js:1323 #: frappe/public/js/frappe/views/reports/report_view.js:1551 msgid "Total" msgstr "" @@ -26705,16 +26898,8 @@ msgstr "" msgid "Total Outgoing Emails" msgstr "" -#. Label of the total_recipients (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Recipients" -msgstr "" - #. Label of the total_subscribers (Int) field in DocType 'Email Group' -#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter -#. Email Group' #: frappe/email/doctype/email_group/email_group.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Total Subscribers" msgstr "" @@ -26723,11 +26908,6 @@ msgstr "" msgid "Total Users" msgstr "" -#. Label of the total_views (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Total Views" -msgstr "" - #. Label of the total_working_time (Duration) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Total Working Time" @@ -26813,7 +26993,7 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "" @@ -26860,7 +27040,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "" @@ -26893,6 +27073,11 @@ msgstr "" msgid "Translations" msgstr "" +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" @@ -27114,33 +27299,65 @@ msgstr "" msgid "URL must start with http:// or https://" msgstr "" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "" @@ -27173,7 +27390,7 @@ msgstr "" msgid "Unable to read file format for {0}" msgstr "" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "" @@ -27190,7 +27407,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "" @@ -27198,16 +27415,20 @@ msgstr "" msgid "Unchanged" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "" @@ -27230,6 +27451,13 @@ msgstr "" msgid "Unique" msgstr "" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "" @@ -27238,7 +27466,7 @@ msgstr "" msgid "Unknown Column: {0}" msgstr "" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "" @@ -27285,7 +27513,7 @@ msgstr "" msgid "Unshared" msgstr "" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "" @@ -27305,10 +27533,15 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "" @@ -27431,7 +27664,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" msgstr "" @@ -27709,7 +27942,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" msgstr "" @@ -27815,12 +28048,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -27921,15 +28154,15 @@ msgstr "" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" msgstr "" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" msgstr "" @@ -27950,7 +28183,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" msgstr "" @@ -27979,7 +28212,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "" @@ -28119,15 +28352,15 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "" @@ -28153,6 +28386,12 @@ msgstr "" msgid "Value must be one of {0}" msgstr "" +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" @@ -28166,7 +28405,7 @@ msgstr "" msgid "Value {0} missing for {1}" msgstr "" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "" @@ -28246,7 +28485,7 @@ msgstr "" msgid "View All" msgstr "" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "" @@ -28490,7 +28729,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "" @@ -28533,6 +28772,7 @@ msgstr "" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json @@ -28591,7 +28831,6 @@ msgstr "" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28599,9 +28838,7 @@ msgid "Website" msgstr "" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "" @@ -28801,11 +29038,11 @@ msgstr "" msgid "Welcome Workspace" msgstr "" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" msgstr "" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" msgstr "" @@ -28891,7 +29128,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" msgstr "" @@ -29032,12 +29269,12 @@ msgstr "" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "" @@ -29159,7 +29396,7 @@ msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" msgstr "" @@ -29220,7 +29457,7 @@ msgstr "" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29260,11 +29497,11 @@ msgstr "" msgid "You are not allowed to access this resource" msgstr "" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" msgstr "" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" msgstr "" @@ -29287,7 +29524,7 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" @@ -29295,11 +29532,11 @@ msgstr "" msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29315,7 +29552,7 @@ msgstr "" msgid "You are not permitted to access this page." msgstr "" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" @@ -29323,7 +29560,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29368,7 +29605,7 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." msgstr "" @@ -29410,7 +29647,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." msgstr "" @@ -29487,11 +29724,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29499,19 +29740,19 @@ msgstr "" msgid "You do not have permissions to cancel all linked documents." msgstr "" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" msgstr "" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" msgstr "" @@ -29576,15 +29817,15 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" msgstr "" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "" @@ -29604,7 +29845,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29687,7 +29928,7 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" @@ -29728,11 +29969,11 @@ msgstr "" msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "" @@ -29752,11 +29993,11 @@ msgstr "" msgid "Your login id is" msgstr "" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "" @@ -29770,7 +30011,7 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." msgstr "" @@ -29782,7 +30023,7 @@ msgstr "" msgid "Your verification code is {0}" msgstr "" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "" @@ -29806,7 +30047,7 @@ msgstr "" msgid "_report" msgstr "" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "" @@ -29829,7 +30070,7 @@ msgstr "" msgid "amend" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "" @@ -29886,8 +30127,8 @@ msgstr "" msgid "cyan" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "" @@ -30001,7 +30242,7 @@ msgstr "" msgid "email inbox" msgstr "" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "" @@ -30053,8 +30294,8 @@ msgstr "" msgid "gzip not found in PATH! This is required to take a backup." msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" @@ -30087,7 +30328,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "" @@ -30127,8 +30368,8 @@ msgstr "" msgid "long" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "" @@ -30317,8 +30558,8 @@ msgstr "" msgid "restored {0} as {1}" msgstr "" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "" @@ -30611,7 +30852,7 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "" @@ -30652,7 +30893,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "" @@ -30660,7 +30901,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "" @@ -30690,7 +30931,7 @@ msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "" @@ -30758,7 +30999,11 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "" @@ -30778,11 +31023,7 @@ msgstr "" msgid "{0} has already assigned default value for {1}." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" msgstr "" @@ -30852,6 +31093,10 @@ msgstr "" msgid "{0} is mandatory" msgstr "" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "" @@ -30873,7 +31118,7 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" msgstr "" @@ -30881,11 +31126,11 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "" @@ -30893,15 +31138,15 @@ msgstr "" msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" @@ -30925,7 +31170,7 @@ msgstr "" msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" msgstr "" @@ -30935,7 +31180,8 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "" @@ -30948,11 +31194,11 @@ msgstr "" msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -30985,23 +31231,23 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" @@ -31013,7 +31259,7 @@ msgstr "" msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "" @@ -31042,16 +31288,12 @@ msgstr "" msgid "{0} of {1} ({2} rows with children)" msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "" @@ -31088,11 +31330,11 @@ msgstr "" msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" msgstr "" @@ -31134,7 +31376,7 @@ msgstr "" msgid "{0} subscribers added" msgstr "" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" msgstr "" @@ -31204,11 +31446,11 @@ msgstr "" msgid "{0} {1} is linked with the following submitted documents: {2}" msgstr "" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" @@ -31321,7 +31563,7 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "" @@ -31357,11 +31599,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31383,7 +31625,7 @@ msgstr "" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "" diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po index b47c542771..674e5bbe47 100644 --- a/frappe/locale/zh.po +++ b/frappe/locale/zh.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-06-22 09:34+0000\n" -"PO-Revision-Date: 2025-06-22 16:40\n" +"POT-Creation-Date: 2025-07-20 09:35+0000\n" +"PO-Revision-Date: 2025-07-21 21:50\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -36,13 +36,13 @@ msgstr "“公司历史”" #: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" -msgstr "“上级”表示本条记录必须依赖添加的父表" +msgstr "“parent”表示本条记录必须依赖添加的父表" #. Description of the 'Team Members Heading' (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "“团队成员”或“管理层”" +msgstr "“团队成员”或“管理”" #: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." @@ -68,7 +68,7 @@ msgstr "© Frappe科技有限公司及贡献者" #. Label of the head_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "<head> HTML" -msgstr "<head> HTML" +msgstr "<HEAD> HTML" #: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" @@ -76,7 +76,7 @@ msgstr "字段类型{1}的字段{0}不允许启用'全局搜索'" #: frappe/core/doctype/doctype/doctype.py:1354 msgid "'In Global Search' not allowed for type {0} in row {1}" -msgstr "第{1}行类型{0}不允许启用'全局搜索'" +msgstr "行{1}中的类型{0}不允许“全局搜索”" #: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" @@ -84,13 +84,13 @@ msgstr "字段类型{1}的字段{0}不允许显示在'列表视图'" #: frappe/custom/doctype/customize_form/customize_form.py:362 msgid "'In List View' not allowed for type {0} in row {1}" -msgstr "第{1}行类型{0}不允许显示在'列表视图'" +msgstr "行{1}中的类型{0}不允许选择“在列表视图中显示”" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 msgid "'Recipients' not specified" -msgstr "未指定'收件人'" +msgstr "'收件人'未指定" -#: frappe/utils/__init__.py:255 +#: frappe/utils/__init__.py:256 msgid "'{0}' is not a valid URL" msgstr "'{0}' 不是有效的URL" @@ -104,12 +104,12 @@ msgstr "(必填项)" #: frappe/model/rename_doc.py:704 msgid "** Failed: {0} to {1}: {2}" -msgstr "** 失败: {0} 到 {1}: {2}" +msgstr "**失败:{0} {1}:{2}" #: frappe/public/js/frappe/list/list_settings.js:135 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" -msgstr "+ 添加/移除字段" +msgstr "添加/移除字段" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' @@ -120,7 +120,7 @@ msgstr "0 - 草稿; 1 - 已提交; 2 - 已取消" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "0为最高优先级" +msgstr "0是最高的" #: frappe/public/js/frappe/form/grid_row.js:876 msgid "1 = True & 0 = False" @@ -141,7 +141,7 @@ msgstr "1天" msgid "1 Google Calendar Event synced." msgstr "已同步1个Google日历事件" -#: frappe/public/js/frappe/views/reports/query_report.js:953 +#: frappe/public/js/frappe/views/reports/query_report.js:954 msgid "1 Report" msgstr "1个报表" @@ -149,7 +149,7 @@ msgstr "1个报表" msgid "1 comment" msgstr "1条评论" -#: frappe/tests/test_utils.py:711 +#: frappe/tests/test_utils.py:716 msgid "1 day ago" msgstr "1天前" @@ -158,19 +158,19 @@ msgid "1 hour" msgstr "1小时" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:709 +#: frappe/tests/test_utils.py:714 msgid "1 hour ago" msgstr "1小时前" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:707 +#: frappe/tests/test_utils.py:712 msgid "1 minute ago" msgstr "1分钟前" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:720 msgid "1 month ago" -msgstr "1个月前" +msgstr "一个月前" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" @@ -178,45 +178,45 @@ msgstr "第1项/共2项" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" -msgstr "将导出1条记录" +msgstr "将导出一笔记录" -#: frappe/tests/test_utils.py:706 +#: frappe/tests/test_utils.py:711 msgid "1 second ago" msgstr "1秒前" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:718 msgid "1 week ago" -msgstr "1周前" +msgstr "一周前" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:722 msgid "1 year ago" -msgstr "1年前" +msgstr "一年前" -#: frappe/tests/test_utils.py:710 +#: frappe/tests/test_utils.py:715 msgid "2 hours ago" msgstr "2小时前" -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:721 msgid "2 months ago" msgstr "2个月前" -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:719 msgid "2 weeks ago" msgstr "2周前" -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:723 msgid "2 years ago" msgstr "2年前" -#: frappe/tests/test_utils.py:708 +#: frappe/tests/test_utils.py:713 msgid "3 minutes ago" msgstr "3分钟前" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "30分钟" +msgstr "半小时" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" @@ -224,15 +224,15 @@ msgstr "4小时" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" -msgstr "5条记录" +msgstr "5笔记录" -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:717 msgid "5 days ago" msgstr "5天前" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" -msgstr "; 条件中不允许使用" +msgstr "不满足条件" #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' @@ -244,7 +244,7 @@ msgstr "<" #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "<=" -msgstr "<=" +msgstr "小于等于" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" @@ -253,7 +253,7 @@ msgstr "{0} 不是有效的URL" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" -msgstr "
请不要更新它,否则会弄乱您的表单。使用自定义表单视图和自定义字段来设置属性!
" +msgstr "
请不要直接更新这个表单里的内容,可能会导致系统瘫痪!请使用定制表单和自定义字段功能让系统自动产生此表单的数据!
" #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' @@ -578,17 +578,17 @@ msgid "
Message Example
\n\n" "<li>Amount: {{ doc.grand_total }}\n" "</ul>\n" "" -msgstr "
信息示例
\n\n" +msgstr "
消息范例
\n\n" "
<h3>订单逾期</h3>\n\n"
-"<p>交易 {{ doc.name }} 已超过到期日。请采取必要行动。</p>\n\n"
-"<!-- 显示最后评论 -->\n"
+"<p>交易 {{ doc.name }} 已逾期. 请采取必要行动.</p>\n\n"
+"<!-- 显示最新备注信息 -->\n"
 "{% if comments %}\n"
-"最后评论: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"最新备注: {{ comments[-1].comment }}  {{ comments[-1].by }}\n"
 "{% endif %}\n\n"
 "<h4>详情</h4>\n\n"
 "<ul>\n"
-"<li>客户: {{ doc.customer }}\n"
-"<li>金额: {{ doc.grand_total }}\n"
+"<li>客户: {{ doc.customer }}\n"
+"<li>金额: {{ doc.grand_total }}\n"
 "</ul>\n"
 "
" @@ -597,7 +597,7 @@ msgstr "
信息示例
\n\n" msgid "

Condition Examples:

\n" "
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" "
" -msgstr "

条件示例:

\n" +msgstr "

条件范例:

\n" "
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" "
" @@ -709,11 +709,6 @@ msgstr "
doc.grand_total > 0
\n\n" msgid "Hi," msgstr "你好," -#. Header text in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json -msgid "Reports & Masters" -msgstr "an class=\"h4\">报告 & 大师
" - #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." msgstr "警告: 本字段为系统生成,可能被后续更新覆盖。请使用{0}进行修改。" @@ -740,6 +735,11 @@ msgstr ">=" msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "文档类型名称应以字母开头,只能包含字母、数字、空格、下划线和连字符" +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + #: frappe/website/doctype/blog_post/blog_post.py:92 msgid "A featured post must have a cover image" msgstr "推荐文章必须包含封面图片" @@ -755,11 +755,11 @@ msgstr "同名文件{}已存在" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project" -msgstr "用户授权后客户端应用可访问的资源列表。
例如:项目" +msgstr "资源的列表,它的客户端应用程序必须将用户允许后访问。
如项目" #: frappe/templates/emails/new_user.html:5 msgid "A new account has been created for you at {0}" -msgstr "已在{0}为您创建新账户" +msgstr "已为您创建新账户{0}" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." @@ -768,15 +768,22 @@ msgstr "已通过自动重复{2}为您创建周期性{0} {1}。" #. Description of the 'Symbol' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "A symbol for this currency. For e.g. $" -msgstr "货币符号,例如:$" +msgstr "货币符号。例如$" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 msgid "A template already exists for field {0} of {1}" msgstr "字段{1}.{0}的模板已存在" +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + #: frappe/utils/password_strength.py:169 msgid "A word by itself is easy to guess." -msgstr "单独单词容易被猜中。" +msgstr "很容易猜到的一个字" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -876,7 +883,7 @@ msgstr "与中继服务器交互的API密钥和密钥。当从本站点安装的 #. Description of the 'API Key' (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "API Key cannot be regenerated" -msgstr "API密钥无法重新生成" +msgstr "无法重新生成API密钥" #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' @@ -902,7 +909,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" -msgstr "API密钥" +msgstr "API密码" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' @@ -931,7 +938,7 @@ msgstr "关于我们设置" #. Name of a DocType #: frappe/website/doctype/about_us_team_member/about_us_team_member.json msgid "About Us Team Member" -msgstr "团队成员信息" +msgstr "关于我们 团队成员" #: frappe/core/doctype/data_import/data_import.js:27 msgid "About {0} minute remaining" @@ -956,7 +963,7 @@ msgstr "访问控制" #: frappe/core/doctype/access_log/access_log.json #: frappe/core/workspace/users/users.json msgid "Access Log" -msgstr "访问日志" +msgstr "访问记录" #. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' #. Label of the access_token (Password) field in DocType 'Token Cache' @@ -978,20 +985,20 @@ msgstr "禁止从此IP地址访问" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Account" -msgstr "账户" +msgstr "科目" #. Label of the account_deletion_settings_section (Section Break) field in #. DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Account Deletion Settings" -msgstr "账户删除设置" +msgstr "账号删除设置" #. Name of a role #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Accounts Manager" -msgstr "账户经理" +msgstr "会计经理" #. Name of a role #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -999,7 +1006,7 @@ msgstr "账户经理" #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Accounts User" -msgstr "账户用户" +msgstr "会计" #: frappe/public/js/frappe/form/dashboard.js:510 msgid "Accurate count can not be fetched, click here to view all documents" @@ -1018,7 +1025,6 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/email_group/email_group.js:34 #: frappe/email/doctype/email_group/email_group.js:63 -#: frappe/email/doctype/email_group/email_group.js:72 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 @@ -1028,14 +1034,14 @@ msgstr "操作" #. Label of the action (Small Text) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action / Route" -msgstr "操作/路由" +msgstr "操作 / 网址路径" #: frappe/public/js/frappe/widgets/onboarding_widget.js:305 #: frappe/public/js/frappe/widgets/onboarding_widget.js:376 msgid "Action Complete" msgstr "操作完成" -#: frappe/model/document.py:1871 +#: frappe/model/document.py:1881 msgid "Action Failed" msgstr "操作失败" @@ -1047,7 +1053,7 @@ msgstr "操作标签" #. Label of the action_timeout (Int) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "Action Timeout (Seconds)" -msgstr "操作超时(秒)" +msgstr "操作超时(秒)" #. Label of the action_type (Select) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json @@ -1084,12 +1090,12 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}" #: frappe/custom/doctype/customize_form/customize_form.js:283 #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/public/js/frappe/ui/page.html:57 -#: frappe/public/js/frappe/views/reports/query_report.js:190 -#: frappe/public/js/frappe/views/reports/query_report.js:203 -#: frappe/public/js/frappe/views/reports/query_report.js:213 -#: frappe/public/js/frappe/views/reports/query_report.js:840 +#: frappe/public/js/frappe/views/reports/query_report.js:191 +#: frappe/public/js/frappe/views/reports/query_report.js:204 +#: frappe/public/js/frappe/views/reports/query_report.js:214 +#: frappe/public/js/frappe/views/reports/query_report.js:841 msgid "Actions" -msgstr "操作列表" +msgstr "操作" #. Label of the activate (Check) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json @@ -1118,13 +1124,13 @@ msgstr "Active Directory" #. Label of the active_domains (Table) field in DocType 'Domain Settings' #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Active Domains" -msgstr "活跃域名" +msgstr "已启用的行业" #. Label of the active_sessions (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json #: frappe/www/third_party_apps.html:34 msgid "Active Sessions" -msgstr "活跃会话" +msgstr "活动会话" #. Group in User's connections #: frappe/core/doctype/user/user.json @@ -1140,7 +1146,7 @@ msgstr "活动" #: frappe/core/workspace/build/build.json #: frappe/core/workspace/users/users.json msgid "Activity Log" -msgstr "活动日志" +msgstr "用户操作日志" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 @@ -1149,15 +1155,15 @@ msgstr "活动日志" #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 -#: frappe/public/js/frappe/views/reports/query_report.js:265 -#: frappe/public/js/frappe/views/reports/query_report.js:293 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" msgstr "添加" #: frappe/public/js/frappe/form/grid_row.js:438 msgid "Add / Remove Columns" -msgstr "添加/删除列" +msgstr "添加/移除列" #: frappe/core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" @@ -1165,9 +1171,9 @@ msgstr "添加/更新" #: frappe/core/page/permission_manager/permission_manager.js:442 msgid "Add A New Rule" -msgstr "添加新规则" +msgstr "创建新规则" -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "添加附件" @@ -1189,19 +1195,19 @@ msgstr "添加上方边框" #: frappe/desk/doctype/number_card/number_card.js:36 msgid "Add Card to Dashboard" -msgstr "添加卡片到仪表板" +msgstr "添加到仪表板" -#: frappe/public/js/frappe/views/reports/query_report.js:209 +#: frappe/public/js/frappe/views/reports/query_report.js:210 msgid "Add Chart to Dashboard" -msgstr "添加图表到仪表板" +msgstr "添加图表至数据面板" #: frappe/public/js/frappe/views/treeview.js:301 msgid "Add Child" msgstr "添加子项" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1771 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:1821 +#: frappe/public/js/frappe/views/reports/query_report.js:1824 #: frappe/public/js/frappe/views/reports/report_view.js:355 #: frappe/public/js/frappe/views/reports/report_view.js:380 #: frappe/public/js/print_format_builder/Field.vue:112 @@ -1210,7 +1216,7 @@ msgstr "添加列" #: frappe/core/doctype/communication/communication.js:127 msgid "Add Contact" -msgstr "添加联系人" +msgstr "增加联系人" #: frappe/desk/doctype/event/event.js:38 msgid "Add Contacts" @@ -1229,7 +1235,7 @@ msgstr "添加自定义标签" #: frappe/public/js/frappe/widgets/widget_dialog.js:188 #: frappe/public/js/frappe/widgets/widget_dialog.js:716 msgid "Add Filters" -msgstr "添加过滤器" +msgstr "添加过滤条件" #. Label of the add_shade (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -1237,9 +1243,9 @@ msgid "Add Gray Background" msgstr "添加灰色背景" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 -#: frappe/public/js/frappe/ui/group_by/group_by.js:427 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" -msgstr "添加组" +msgstr "添加分组" #: frappe/core/doctype/recorder/recorder.js:30 msgid "Add Indexes" @@ -1247,11 +1253,11 @@ msgstr "添加索引" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add Multiple" -msgstr "批量添加" +msgstr "添加多行" #: frappe/core/page/permission_manager/permission_manager.js:445 msgid "Add New Permission Rule" -msgstr "添加新权限规则" +msgstr "新建权限规则" #: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 msgid "Add Participants" @@ -1262,17 +1268,17 @@ msgstr "添加参与者" msgid "Add Query Parameters" msgstr "添加查询参数" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:812 msgid "Add Roles" msgstr "添加角色" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add Row" -msgstr "添加行" +msgstr "添加一行" #. Label of the add_signature (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json -#: frappe/public/js/frappe/views/communication.js:130 +#: frappe/public/js/frappe/views/communication.js:133 msgid "Add Signature" msgstr "添加签名" @@ -1295,19 +1301,19 @@ msgstr "添加订阅者" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/list/list_view.js:2004 +#: frappe/public/js/frappe/list/list_view.js:2002 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/views/communication.js:427 +#: frappe/public/js/frappe/views/communication.js:430 msgid "Add Template" -msgstr "添加模板" +msgstr "新建模板" #. Label of the add_total_row (Check) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Add Total Row" -msgstr "添加合计行" +msgstr "添加总计行" #. Label of the add_translate_data (Check) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -1321,7 +1327,7 @@ msgstr "添加退订链接" #: frappe/core/doctype/user_permission/user_permission_list.js:6 msgid "Add User Permissions" -msgstr "添加用户权限" +msgstr "添加用户权限限制" #. Label of the add_video_conferencing (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -1330,11 +1336,11 @@ msgstr "添加视频会议" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Add a Filter" -msgstr "添加过滤器" +msgstr "添加筛选" #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "Add a New Role" -msgstr "添加新角色" +msgstr "创建新角色" #: frappe/public/js/frappe/form/form_tour.js:211 msgid "Add a Row" @@ -1348,7 +1354,7 @@ msgstr "添加评论" #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 #: frappe/public/js/form_builder/components/Tabs.vue:192 msgid "Add a new section" -msgstr "添加新章节" +msgstr "添加新分区" #: frappe/public/js/frappe/form/form.js:193 msgid "Add a row above the current row" @@ -1373,7 +1379,7 @@ msgstr "添加{0}图表" #: frappe/public/js/form_builder/components/Section.vue:271 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 msgid "Add column" -msgstr "添加列" +msgstr "添加栏" #: frappe/public/js/form_builder/components/AddFieldButton.vue:9 #: frappe/public/js/form_builder/components/AddFieldButton.vue:48 @@ -1383,7 +1389,7 @@ msgstr "添加字段" #: frappe/public/js/form_builder/components/Sidebar.vue:49 #: frappe/public/js/form_builder/components/Tabs.vue:153 msgid "Add new tab" -msgstr "添加新标签页" +msgstr "添加新页签" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 msgid "Add page break" @@ -1391,7 +1397,7 @@ msgstr "添加分页符" #: frappe/custom/doctype/client_script/client_script.js:16 msgid "Add script for Child Table" -msgstr "为子表添加脚本" +msgstr "添加子表的脚本" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 msgid "Add section above" @@ -1399,21 +1405,21 @@ msgstr "在上方添加章节" #: frappe/public/js/form_builder/components/Section.vue:265 msgid "Add section below" -msgstr "在下方添加章节" +msgstr "添加段" #: frappe/public/js/form_builder/components/Sidebar.vue:52 #: frappe/public/js/form_builder/components/Tabs.vue:157 msgid "Add tab" -msgstr "添加标签页" +msgstr "添加页签" #: frappe/public/js/frappe/utils/dashboard_utils.js:263 -#: frappe/public/js/frappe/views/reports/query_report.js:251 +#: frappe/public/js/frappe/views/reports/query_report.js:252 msgid "Add to Dashboard" msgstr "添加到仪表板" #: frappe/public/js/frappe/form/sidebar/assign_to.js:99 msgid "Add to ToDo" -msgstr "添加到待办事项" +msgstr "新增待办" #: frappe/website/doctype/website_slideshow/website_slideshow.js:32 msgid "Add to table" @@ -1435,13 +1441,13 @@ msgstr "添加{0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Added" -msgstr "已添加" +msgstr "添加了" #. Description of the '<head> HTML' (Code) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "在网页<head>部分添加HTML,主要用于网站验证和SEO优化" +msgstr "在<head>在头部分区已添加HTML网页,主要用于网站的验证和搜索引擎优化" #: frappe/core/doctype/log_settings/log_settings.py:81 msgid "Added default log doctypes: {}" @@ -1450,7 +1456,7 @@ msgstr "已添加默认日志文档类型: {}" #: frappe/public/js/frappe/form/link_selector.js:180 #: frappe/public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" -msgstr "已添加{0} ({1})" +msgstr "已添加{0}({1})" #. Label of the additional_permissions (Section Break) field in DocType 'Custom #. DocPerm' @@ -1462,7 +1468,7 @@ msgstr "已添加{0} ({1})" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Additional Permissions" -msgstr "附加权限" +msgstr "额外权限" #. Name of a DocType #. Label of the address (Link) field in DocType 'Contact' @@ -1480,14 +1486,14 @@ msgstr "地址" #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "地址行1" +msgstr "详细地址1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 2" -msgstr "地址行2" +msgstr "详细地址2" #. Name of a DocType #: frappe/contacts/doctype/address_template/address_template.json @@ -1499,11 +1505,11 @@ msgstr "地址模板" #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Title" -msgstr "地址标题" +msgstr "地址名称" #: frappe/contacts/doctype/address/address.py:72 msgid "Address Title is mandatory." -msgstr "地址标题为必填项。" +msgstr "地址名称是必填项。" #. Label of the address_type (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -1514,16 +1520,16 @@ msgstr "地址类型" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Address and other legal information you may want to put in the footer." -msgstr "页脚需要展示的地址和其他法律信息。" +msgstr "地址和其他法律信息最好放进页脚。" #: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" -msgstr "地址簿" +msgstr "地址" #. Name of a report #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json msgid "Addresses And Contacts" -msgstr "地址与联系人" +msgstr "地址和联系方式" #. Description of a DocType #: frappe/custom/doctype/client_script/client_script.json @@ -1533,7 +1539,7 @@ msgstr "为文档类型添加自定义客户端脚本" #. Description of a DocType #: frappe/custom/doctype/custom_field/custom_field.json msgid "Adds a custom field to a DocType" -msgstr "为文档类型添加自定义字段" +msgstr "为单据类型添加一个自定义字段" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 msgid "Administration" @@ -1560,15 +1566,15 @@ msgstr "系统管理" #: frappe/desk/doctype/system_console/system_console.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Administrator" -msgstr "系统管理员" +msgstr "管理员" -#: frappe/core/doctype/user/user.py:1213 +#: frappe/core/doctype/user/user.py:1217 msgid "Administrator Logged In" -msgstr "管理员已登录" +msgstr "管理员登录" -#: frappe/core/doctype/user/user.py:1207 +#: frappe/core/doctype/user/user.py:1211 msgid "Administrator accessed {0} on {1} via IP Address {2}." -msgstr "管理员通过IP地址{2}在{1}访问了{0}。" +msgstr "管理员访问{0}在{1}通过IP地址{2}。" #: frappe/desk/form/document_follow.py:52 msgid "Administrator can't follow" @@ -1620,12 +1626,12 @@ msgstr "废弃后" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Insert" -msgstr "插入后" +msgstr "创建后" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Rename" -msgstr "重命名后" +msgstr "修改单据编号(名称)后" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -1635,7 +1641,7 @@ msgstr "保存后" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Save (Submitted Document)" -msgstr "保存后(已提交文档)" +msgstr "保存后(已提交)" #. Label of the section_break_5 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1658,7 +1664,7 @@ msgstr "创建数字卡片需要聚合字段" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Aggregate Function Based On" -msgstr "基于以下聚合函数" +msgstr "统计字段" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 msgid "Aggregate Function field is required to create a dashboard chart" @@ -1672,7 +1678,15 @@ msgstr "警报" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Alerts and Notifications" -msgstr "警报与通知" +msgstr "预警与通知" + +#: frappe/database/query.py:1608 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1533 +msgid "Alias must be a string" +msgstr "" #. Label of the align (Select) field in DocType 'Letter Head' #. Label of the footer_align (Select) field in DocType 'Letter Head' @@ -1692,7 +1706,7 @@ msgstr "右对齐" #: frappe/printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" -msgstr "数值对齐" +msgstr "对齐方式" #. Name of a role #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -1714,7 +1728,6 @@ msgstr "数值对齐" #: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json -#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/website/doctype/website_settings/website_settings.json msgid "All" @@ -1730,7 +1743,7 @@ msgstr "全天" #: frappe/website/doctype/website_slideshow/website_slideshow.py:43 msgid "All Images attached to Website Slideshow should be public" -msgstr "网站幻灯片关联的图片必须设为公开" +msgstr "所有连接到网站幻灯片的图片应该是公开的" #: frappe/public/js/frappe/data_import/data_exporter.js:29 msgid "All Records" @@ -1742,25 +1755,25 @@ msgstr "所有提交" #: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." -msgstr "所有自定义内容将被移除,请确认。" +msgstr "所有定制都将被删除,请确认" #: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." -msgstr "提交评论需填写所有必填字段。" +msgstr "所有字段都必须提交评论。" #. Description of the 'Document States' (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" -msgstr "所有可能的工作流程状态和工作流程角色。文档状态选项:0 表示 \"已保存\",1 表示 \"已提交\",2 表示 \"已取消\"。" +msgstr "工作流所有状态与角色,单据状态0 表示\"已保存\",1表示\"已提交\",2表示\"已取消\"" #: frappe/utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." -msgstr "全大写字母与全小写字母同样易被猜中。" +msgstr "全大写几乎一样容易猜到全部小写。" #. Label of the allocated_to (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Allocated To" -msgstr "分配给" +msgstr "执行人" #. Label of the allow (Link) field in DocType 'User Permission' #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' @@ -1786,7 +1799,7 @@ msgstr "允许自动重复" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow Bulk Edit" -msgstr "允许批量编辑" +msgstr "允许批量修改" #. Label of the allow_edit (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -1805,7 +1818,7 @@ msgstr "允许访问Google日历" #: frappe/integrations/doctype/google_contacts/google_contacts.py:40 msgid "Allow Google Contacts Access" -msgstr "允许访问Google联系人" +msgstr "允许Google通讯录访问" #. Label of the allow_guest (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -1833,12 +1846,12 @@ msgstr "允许访客上传文件" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Import (via Data Import Tool)" -msgstr "允许导入(通过数据导入工具)" +msgstr "允许导入(数据导入工具)" #. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Login After Fail" -msgstr "失败后允许登录" +msgstr "登录失败后暂时禁止登录时长" #. Label of the allow_login_using_mobile_number (Check) field in DocType #. 'System Settings' @@ -1861,30 +1874,30 @@ msgstr "允许模块" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Older Web View Links (Insecure)" -msgstr "允许旧版Web视图链接(不安全)" +msgstr "允许通过登录链接(不安全)" #. Label of the allow_print_for_cancelled (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Cancelled" -msgstr "允许打印已取消文档" +msgstr "允许打印已取消的单据" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' #: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" -msgstr "允许打印草稿文档" +msgstr "允许在草稿状态下打印" #. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web #. Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Allow Read On All Link Options" -msgstr "允许所有链接选项的读取权限" +msgstr "允许读取所有链接选项" #. Label of the allow_rename (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Rename" -msgstr "允许重命名" +msgstr "允许修改单据编号(名称)" #. Label of the roles_permission (Section Break) field in DocType 'Role #. Permission for Page and Report' @@ -1899,18 +1912,18 @@ msgstr "允许角色" #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "允许自我审批" +msgstr "允许自已批准" #. Label of the enable_telemetry (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Sending Usage Data for Improving Applications" -msgstr "允许发送使用数据以改进应用" +msgstr "允许发送用于系统改进的使用情况数据" #. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "允许文档创建者自我审批" +msgstr "允许单据创建者审批单据" #. Label of the allow_comments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1927,7 +1940,7 @@ msgstr "允许删除" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow document creation via Email" -msgstr "允许通过邮件创建文档" +msgstr "允许基于收到的邮件创建单据" #. Label of the allow_edit (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1945,7 +1958,7 @@ msgstr "即使文档类型已设置工作流程,也允许编辑。\n\n" #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow events in timeline" -msgstr "允许时间轴事件" +msgstr "在表单下方的日志记录区启用事件追踪功能" #. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' #. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' @@ -1955,7 +1968,7 @@ msgstr "允许时间轴事件" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow in Quick Entry" -msgstr "允许快速录入" +msgstr "包含在快速录入弹窗中" #. Label of the allow_incomplete (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1974,19 +1987,19 @@ msgstr "允许多次提交" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow on Submit" -msgstr "提交时允许" +msgstr "允许提交后修改" #. Label of the deny_multiple_sessions (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow only one session per user" -msgstr "每个用户仅允许一个会话" +msgstr "允许每个用户只有一个会话" #. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow page break inside tables" -msgstr "允许表格内部分页" +msgstr "允许列表中有分页符" #. Label of the allow_print (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -2001,7 +2014,7 @@ msgstr "" #. Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "必填字段未填时仍允许保存" +msgstr "必填字段未填完整允许保存" #: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" @@ -2010,23 +2023,23 @@ msgstr "允许发送使用数据以改进应用程序" #. Description of the 'Login After' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only after this hour (0-24)" -msgstr "仅允许在此时间后登录(0-24)" +msgstr "仅允许用户在此时后登录(0-24时)" #. Description of the 'Login Before' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only before this hour (0-24)" -msgstr "仅允许在此时间前登录(0-24)" +msgstr "仅允许用户在此时前登录(0-24时)" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow users to log in without a password, using a login link sent to their email" -msgstr "允许用户通过邮件发送的登录链接免密登录" +msgstr "允许用户点击邮件中的链接不输密码登录系统" #. Label of the allowed (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allowed" -msgstr "允许的" +msgstr "角色(允许审批)" #. Label of the allowed_file_extensions (Small Text) field in DocType 'System #. Settings' @@ -2037,7 +2050,7 @@ msgstr "允许的文件扩展名" #. Label of the allowed_in_mentions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "允许在提及中使用" +msgstr "允许提及" #. Label of the allowed_modules_section (Section Break) field in DocType 'User #. Type' @@ -2045,6 +2058,12 @@ msgstr "允许在提及中使用" msgid "Allowed Modules" msgstr "允许的模块" +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + #. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2059,9 +2078,45 @@ msgstr "允许的嵌入域名" #: frappe/public/js/frappe/form/form.js:1256 msgid "Allowing DocType, DocType. Be careful!" -msgstr "允许文档类型,文档类型。请谨慎操作!" +msgstr "修改核心单据类型:DocType 。请格外小心!" -#: frappe/core/doctype/user/user.py:1023 +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference:
RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1027 msgid "Already Registered" msgstr "已注册" @@ -2071,7 +2126,7 @@ msgstr "已在以下用户待办列表中:{0}" #: frappe/public/js/frappe/views/reports/report_view.js:902 msgid "Also adding the dependent currency field {0}" -msgstr "同时添加依赖货币字段{0}" +msgstr "还要添加从属货币字段{0}" #: frappe/public/js/frappe/views/reports/report_view.js:915 msgid "Also adding the status dependency field {0}" @@ -2080,7 +2135,7 @@ msgstr "同时添加状态依赖字段{0}" #. Label of the login_id (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" -msgstr "备用电子邮件地址" +msgstr "别的邮箱账号" #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -2090,19 +2145,19 @@ msgstr "始终密送地址" #. Label of the add_draft_heading (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "打印草稿文档时始终添加“草稿”标题" +msgstr "打印草稿状态单据时添加“草稿”标题" #. Label of the always_use_account_email_id_as_sender (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" -msgstr "始终使用此电子邮件地址作为发件人地址" +msgstr "使用此邮箱作为发件人邮箱" #. Label of the always_use_account_name_as_sender_name (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" -msgstr "始终使用此名称作为发件人名称" +msgstr "使用此用户名作为发件人" #. Label of the amend (Check) field in DocType 'Custom DocPerm' #. Label of the amend (Check) field in DocType 'DocPerm' @@ -2120,18 +2175,18 @@ msgstr "修订" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" -msgstr "修订计数器" +msgstr "修订次数后缀" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" -msgstr "修订后的文档命名设置" +msgstr "修订单据命名设置" #. Label of the amended_documents_section (Section Break) field in DocType #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" -msgstr "修订后的文档" +msgstr "修订后单据" #. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download @@ -2139,7 +2194,7 @@ msgstr "修订后的文档" #: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" -msgstr "修订自" +msgstr "修订自(上一版单据编号)" #: frappe/public/js/frappe/form/save.js:12 msgctxt "Freeze message while amending a document" @@ -2150,9 +2205,9 @@ msgstr "修订中" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "修订命名覆盖" +msgstr "修改后单据编号方式重定义" -#: frappe/model/document.py:549 +#: frappe/model/document.py:551 msgid "Amendment Not Allowed" msgstr "不允许修订" @@ -2160,14 +2215,14 @@ msgstr "不允许修订" msgid "Amendment naming rules updated." msgstr "修订命名规则已更新。" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "设置会话默认值时发生错误" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr "扩展名为.ico的图标文件。应为16x16像素。使用网站图标生成器生成。[favicon-generator.org]" +msgstr "一个图标文件扩展名为.ico。应为16×16像素。使用图标生成器生成。 [favicon-generator.org]" #: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." @@ -2177,11 +2232,11 @@ msgstr "授权{}时发生意外错误。" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "分析" +msgstr "统计分析" #: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" -msgstr "上级节点" +msgstr "祖先" #. Label of the announcement_widget (Text Editor) field in DocType 'Navbar #. Settings' @@ -2198,7 +2253,7 @@ msgstr "公告" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Annual" -msgstr "年度" +msgstr "全年" #. Label of the anonymization_matrix (Code) field in DocType 'Personal Data #. Deletion Request' @@ -2213,20 +2268,20 @@ msgstr "匿名响应" #: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." -msgstr "另一个事务正在阻塞当前操作,请稍后重试。" +msgstr "另一个交易正在进行中。请稍后再试。" #: frappe/model/rename_doc.py:379 msgid "Another {0} with name {1} exists, select another name" -msgstr "已存在名为{1}的{0},请选择其他名称" +msgstr "具有相同名称{1}的{0}已存在,请更名。" #. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." -msgstr "可使用任何基于字符串的打印机语言。编写原始命令需要了解打印机厂商提供的原生语言。请参考打印机厂商提供的开发手册了解如何编写原生命令。这些命令在服务器端使用Jinja模板语言渲染。" +msgstr "可以使用任何基于字符串的打印机语言。编写原始命令需要了解打印机制造商提供的打印机本机语言。请参阅打印机制造商提供的开发人员手册,了解如何编写本机命令。这些命令使用Jinja模板语言在服务器端呈现。" #: frappe/core/page/permission_manager/permission_manager_help.html:36 msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." -msgstr "除系统管理员外,具有设置用户权限角色的用户可为该文档类型设置其他用户的权限。" +msgstr "除系统管理员外,有“设置权限”的角色可以为其他用户设置某单据类型的权限。" #. Label of the app_tab (Tab Break) field in DocType 'System Settings' #. Label of the app_section (Section Break) field in DocType 'User' @@ -2241,16 +2296,6 @@ msgstr "除系统管理员外,具有设置用户权限角色的用户可为该 msgid "App" msgstr "应用" -#. Label of the client_id (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client ID" -msgstr "应用客户端ID" - -#. Label of the client_secret (Data) field in DocType 'OAuth Client' -#: frappe/integrations/doctype/oauth_client/oauth_client.json -msgid "App Client Secret" -msgstr "应用客户端密钥" - #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" @@ -2260,27 +2305,30 @@ msgstr "应用ID" #: frappe/public/js/frappe/ui/toolbar/navbar.html:8 #: frappe/website/doctype/website_settings/website_settings.json msgid "App Logo" -msgstr "应用徽标" +msgstr "应用图标" #. Label of the app_name (Select) field in DocType 'Module Def' #. Label of the app_name (Data) field in DocType 'Changelog Feed' -#. Label of the app_name (Data) field in DocType 'OAuth Client' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json -#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" -msgstr "应用名称" +msgstr "应用程序名称" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" #: frappe/modules/utils.py:280 msgid "App not found for module: {0}" msgstr "未找到模块{0}对应的应用" -#: frappe/__init__.py:1465 +#: frappe/__init__.py:1113 msgid "App {0} is not installed" -msgstr "应用{0}未安装" +msgstr "未安装应用程序{0}" #. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email #. Account' @@ -2289,18 +2337,18 @@ msgstr "应用{0}未安装" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Append Emails to Sent Folder" -msgstr "将邮件附加到已发送文件夹" +msgstr "添加邮件到已发送" #. Label of the append_to (Link) field in DocType 'Email Account' #. Label of the append_to (Link) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "Append To" -msgstr "附加到" +msgstr "追加到" #: frappe/email/doctype/email_account/email_account.py:202 msgid "Append To can be one of {0}" -msgstr "附加到可以是以下之一:{0}" +msgstr "追加到可以是一个{0}" #. Description of the 'Append To' (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -2309,7 +2357,7 @@ msgstr "作为针对此 DocType 的通信附件(必须包含字段:“发件 #: frappe/core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" -msgstr "适用文档类型" +msgstr "适用单据类型" #. Label of the applicable_for (Link) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json @@ -2343,36 +2391,36 @@ msgstr "应用于" msgid "Apply" msgstr "应用" -#: frappe/public/js/frappe/list/list_view.js:1989 +#: frappe/public/js/frappe/list/list_view.js:1987 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "应用分配规则" #: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" -msgstr "应用筛选器" +msgstr "应用筛选" #. Label of the apply_strict_user_permissions (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Apply Strict User Permissions" -msgstr "应用严格用户权限" +msgstr "启用加严用户权限限制" #. Label of the view (Select) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Apply To" -msgstr "应用到" +msgstr "适用于" #. Label of the apply_to_all_doctypes (Check) field in DocType 'User #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "应用到所有文档类型" +msgstr "适用所有单据类型" #. Label of the apply_user_permission_on (Link) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" -msgstr "应用用户权限于" +msgstr "用户权限限制字段(链接单据类型)" #. Label of the apply_document_permissions (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -2385,15 +2433,15 @@ msgstr "应用文档权限" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Apply this rule if the User is the Owner" -msgstr "如果用户是所有者则应用此规则" +msgstr "用户是制单人则应用此规则" #: frappe/core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" -msgstr "应用到所有文档类型" +msgstr "适用所有单据类型" #: frappe/model/workflow.py:266 msgid "Applying: {0}" -msgstr "正在应用:{0}" +msgstr "申请:{0}" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" @@ -2413,29 +2461,29 @@ msgstr "阿拉伯语" #: frappe/public/js/frappe/views/kanban/kanban_column.html:14 msgid "Archive" -msgstr "归档" +msgstr "档案" #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Archived" -msgstr "已归档" +msgstr "已存档" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 msgid "Archived Columns" msgstr "归档列" -#: frappe/public/js/frappe/list/list_view.js:1968 +#: frappe/public/js/frappe/list/list_view.js:1966 msgid "Are you sure you want to clear the assignments?" msgstr "确定要清除分配吗?" #: frappe/public/js/frappe/form/grid.js:294 msgid "Are you sure you want to delete all rows?" -msgstr "确定要删除所有行吗?" +msgstr "确定删除所有行?" #: frappe/public/js/frappe/form/controls/attach.js:38 #: frappe/public/js/frappe/form/sidebar/attachments.js:135 msgid "Are you sure you want to delete the attachment?" -msgstr "确定要删除附件吗?" +msgstr "您确定要删除附件?" #: frappe/public/js/form_builder/components/Section.vue:197 msgctxt "Confirmation dialog message" @@ -2456,7 +2504,7 @@ msgstr "确定要删除标签页吗?该标签页中的所有节及字段将移 msgid "Are you sure you want to discard the changes?" msgstr "确定要放弃更改吗?" -#: frappe/public/js/frappe/views/reports/query_report.js:967 +#: frappe/public/js/frappe/views/reports/query_report.js:968 msgid "Are you sure you want to generate a new report?" msgstr "确定要生成新报告吗?" @@ -2470,19 +2518,19 @@ msgstr "确定要继续吗?" #: frappe/core/doctype/rq_job/rq_job_list.js:25 msgid "Are you sure you want to re-enable scheduler?" -msgstr "确定要重新启用调度程序吗?" +msgstr "确定启动后台任务?" #: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" -msgstr "确定要重新关联此沟通记录到{0}吗?" +msgstr "您确定要重新链接该通信{0}?" #: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" -msgstr "确定要移除所有失败作业吗?" +msgstr "确定删除所有运行出错的任务?" #: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" -msgstr "确定要移除{0}筛选器吗?" +msgstr "你确定要删除过滤条件 {0}?" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" @@ -2492,14 +2540,10 @@ msgstr "确定要重置所有自定义设置吗?" msgid "Are you sure you want to save this document?" msgstr "确定要保存此文档吗?" -#: frappe/email/doctype/newsletter/newsletter.js:60 -msgid "Are you sure you want to send this newsletter now?" -msgstr "确定要立即发送此新闻稿吗?" - #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 #: frappe/core/doctype/user_permission/user_permission_list.js:165 msgid "Are you sure?" -msgstr "确定吗?" +msgstr "你确定吗?" #. Label of the arguments (Code) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -2509,11 +2553,11 @@ msgstr "参数" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "Arial字体" +msgstr "宋体" #: frappe/core/page/permission_manager/permission_manager_help.html:11 msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." -msgstr "最佳实践是不要将相同的权限规则分配给不同角色,而应为同一用户设置多个角色。" +msgstr "一种最佳的做法是,不要给不同的角色分派同样的权限规则,而是向同一用户分派多个角色。" #: frappe/desk/form/assign_to.py:107 msgid "As document sharing is disabled, please give them the required permissions before assigning." @@ -2526,18 +2570,18 @@ msgstr "根据您的要求,已永久删除您在{0}上与电子邮件{1}关联 #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" -msgstr "分配条件" +msgstr "分派条件" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:190 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" -msgstr "分配给" +msgstr "执行人" -#: frappe/public/js/frappe/list/list_view.js:1950 +#: frappe/public/js/frappe/list/list_view.js:1948 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "分配给" -#: frappe/public/js/frappe/form/sidebar/assign_to.js:181 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" msgstr "分配给用户组" @@ -2545,7 +2589,7 @@ msgstr "分配给用户组" #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign To Users" -msgstr "分配给用户" +msgstr "指派给用户" #: frappe/public/js/frappe/form/sidebar/assign_to.js:260 msgid "Assign a user" @@ -2553,15 +2597,15 @@ msgstr "分配用户" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 msgid "Assign one by one, in sequence" -msgstr "逐个按顺序分配" +msgstr "按顺序逐个用户分派" #: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" -msgstr "分配给我" +msgstr "自己认领" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" -msgstr "分配给任务最少的人" +msgstr "指派给待办最少的用户" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 msgid "Assign to the user set in this field" @@ -2570,17 +2614,17 @@ msgstr "分配给此字段设置的用户" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assigned" -msgstr "已分配" +msgstr "分派" #. Label of the assigned_by (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 msgid "Assigned By" -msgstr "分配人" +msgstr "发起人" #. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Assigned By Full Name" -msgstr "分配人全名" +msgstr "发起人姓名" #: frappe/model/meta.py:62 #: frappe/public/js/frappe/form/templates/form_sidebar.html:49 @@ -2589,31 +2633,31 @@ msgstr "分配人全名" #: frappe/public/js/frappe/model/model.js:136 #: frappe/public/js/frappe/views/interaction.js:82 msgid "Assigned To" -msgstr "分配给" +msgstr "创建待办" #: frappe/desk/report/todo/todo.py:40 msgid "Assigned To/Owner" -msgstr "分配给/所有者" +msgstr "执行人/发起人" #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." -msgstr "正在分配..." +msgstr "分派中..." #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "分配" +msgstr "分派" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "分配完成" +msgstr "分派已完成" #. Label of the sb (Section Break) field in DocType 'Assignment Rule' #. Label of the assignment_days (Table) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Days" -msgstr "分配天数" +msgstr "分派日" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -2623,7 +2667,7 @@ msgstr "分配天数" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json msgid "Assignment Rule" -msgstr "分配规则" +msgstr "分派规则" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json @@ -2633,7 +2677,7 @@ msgstr "分配规则日" #. Name of a DocType #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json msgid "Assignment Rule User" -msgstr "分配规则用户" +msgstr "分派规则用户" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 msgid "Assignment Rule is not allowed on document type {0}" @@ -2643,7 +2687,7 @@ msgstr "文档类型{0}不允许分配规则" #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Rules" -msgstr "分配规则" +msgstr "分派规则" #: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" @@ -2651,7 +2695,7 @@ msgstr "{0}上的分配更新" #: frappe/desk/form/assign_to.py:78 msgid "Assignment for {0} {1}" -msgstr "{0} {1}的分配" +msgstr "{0} {1}的分派" #: frappe/desk/doctype/todo/todo.py:62 msgid "Assignment of {0} removed by {1}" @@ -2662,7 +2706,7 @@ msgstr "{1}移除了{0}的分配" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:255 msgid "Assignments" -msgstr "分配" +msgstr "任务分派" #: frappe/public/js/frappe/form/grid_row.js:680 msgid "At least one column is required to show in the grid." @@ -2687,11 +2731,11 @@ msgstr "父文档类型必须至少有一个字段" #: frappe/public/js/frappe/form/controls/attach.js:5 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" -msgstr "附加" +msgstr "添加文件" -#: frappe/public/js/frappe/views/communication.js:152 +#: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" -msgstr "附加文档打印" +msgstr "添加打印输出作为附件" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -2704,25 +2748,25 @@ msgstr "附加文档打印" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Attach Image" -msgstr "附加图像" +msgstr "添加图片" #. Label of the attach_package (Attach) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json msgid "Attach Package" -msgstr "附加软件包" +msgstr "添加包" #. Label of the attach_print (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "附加打印" +msgstr "添加打印输出(PDF)作为附件" #: frappe/public/js/frappe/file_uploader/WebLink.vue:10 msgid "Attach a web link" -msgstr "附加网页链接" +msgstr "添加一个网址" #: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." -msgstr "附加文件/URL并添加至表格。" +msgstr "添加文件/网址并添加到表格中。" #. Label of the attached_file (Code) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -2732,26 +2776,24 @@ msgstr "附加文件" #. Label of the attached_to_doctype (Link) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To DocType" -msgstr "附加到文档类型" +msgstr "关联单据类型" #. Label of the attached_to_field (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "附加到字段" +msgstr "关联的字段" #. Label of the attached_to_name (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "附加到名称" +msgstr "关联单据名" #: frappe/core/doctype/file/file.py:142 msgid "Attached To Name must be a string or an integer" msgstr "附加到名称必须是字符串或整数" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' -#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json msgid "Attachment" msgstr "附件" @@ -2760,7 +2802,7 @@ msgstr "附件" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Attachment Limit (MB)" -msgstr "附件限制(MB)" +msgstr "附件大小限制(MB)" #: frappe/core/doctype/file/file.py:324 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 @@ -2775,35 +2817,27 @@ msgstr "附件链接" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "附件已移除" +msgstr "附件已删除" #. Label of the attachments (Code) field in DocType 'Email Queue' -#. Label of the attachments (Table) field in DocType 'Newsletter' #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/email/doctype/newsletter/templates/newsletter.html:47 #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 #: frappe/website/doctype/web_form/templates/web_form.html:106 msgid "Attachments" msgstr "附件" -#: frappe/public/js/frappe/form/print_utils.js:91 +#: frappe/public/js/frappe/form/print_utils.js:104 msgid "Attempting Connection to QZ Tray..." -msgstr "正在尝试连接QZ Tray..." +msgstr "尝试连接QZ托盘......" -#: frappe/public/js/frappe/form/print_utils.js:107 +#: frappe/public/js/frappe/form/print_utils.js:120 msgid "Attempting to launch QZ Tray..." -msgstr "正在尝试启动QZ Tray..." +msgstr "试图推出QZ Tray ......" #: frappe/www/attribution.html:9 msgid "Attribution" msgstr "归属" -#. Label of the email_group (Table) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Audience" -msgstr "受众" - #. Name of a report #: frappe/custom/report/audit_system_hooks/audit_system_hooks.json msgid "Audit System Hooks" @@ -2812,12 +2846,12 @@ msgstr "审计系统钩子" #. Name of a DocType #: frappe/core/doctype/audit_trail/audit_trail.json msgid "Audit Trail" -msgstr "审计跟踪" +msgstr "审计轨迹" #. Label of the auth_url_data (Code) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Auth URL Data" -msgstr "认证URL数据" +msgstr "身份验证URL数据" #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -2848,6 +2882,11 @@ msgstr "从电子邮件账户{0}接收邮件时认证失败。" msgid "Author" msgstr "作者" +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' #. Label of the authorization_code (Password) field in DocType 'Google @@ -2892,7 +2931,7 @@ msgstr "授权Google日历访问" #. 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Authorize Google Contacts Access" -msgstr "授权Google联系人访问" +msgstr "授权Google通讯录访问权限" #. Label of the authorize_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -2902,7 +2941,7 @@ msgstr "授权URL" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Authorized" -msgstr "已授权" +msgstr "合法" #: frappe/www/attribution.html:20 msgid "Authors" @@ -2923,14 +2962,14 @@ msgstr "自动" #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Auto Email Report" -msgstr "自动邮件报告" +msgstr "自动发邮件-报表" #. Label of the autoname (Data) field in DocType 'DocType' #. Label of the autoname (Data) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Auto Name" -msgstr "自动命名" +msgstr "自动编号" #. Name of a DocType #. Label of a Link in the Tools Workspace @@ -2974,36 +3013,36 @@ msgstr "自动回复" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Auto Reply Message" -msgstr "自动回复消息" +msgstr "自动回复留言" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 msgid "Auto assignment failed: {0}" -msgstr "自动分配失败:{0}" +msgstr "自动分派失败:{0}" #. Label of the follow_assigned_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that are assigned to you" -msgstr "自动关注分配给您的文档" +msgstr "自动关注分派给你的单据" #. Label of the follow_shared_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that are shared with you" -msgstr "自动关注与您共享的文档" +msgstr "自动关注分享给你的单据" #. Label of the follow_liked_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you Like" -msgstr "自动关注您点赞的文档" +msgstr "自动关注你喜欢的单据" #. Label of the follow_commented_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you comment on" -msgstr "自动关注您评论的文档" +msgstr "自动关注你评论的单据" #. Label of the follow_created_documents (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Auto follow documents that you create" -msgstr "自动关注您创建的文档" +msgstr "自动关注你创建的单据" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." @@ -3021,12 +3060,12 @@ msgstr "自动完成" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Autoincrement" -msgstr "自动递增" +msgstr "自增" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Automate processes and extend standard functionality using scripts and background jobs" -msgstr "使用脚本和后台作业自动化流程并扩展标准功能" +msgstr "使用脚本与后台任务自动化流程以及扩展标准功能" #. Option for the 'Communication Type' (Select) field in DocType #. 'Communication' @@ -3042,16 +3081,16 @@ msgstr "自动" #: frappe/email/doctype/email_account/email_account.py:772 msgid "Automatic Linking can be activated only for one Email Account." -msgstr "自动链接仅能在一个电子邮件账户上激活。" +msgstr "只能为一个电子邮箱帐号激活自动链接。" #: frappe/email/doctype/email_account/email_account.py:766 msgid "Automatic Linking can be activated only if Incoming is enabled." -msgstr "仅当启用接收功能时才能激活自动链接。" +msgstr "仅当勾选“收邮件”时,才能激活自动链接。" #. Description of a DocType #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Automatically Assign Documents to Users" -msgstr "自动分配文档给用户" +msgstr "自动为用户分派单据" #: frappe/public/js/frappe/list/list_view.js:128 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." @@ -3060,7 +3099,7 @@ msgstr "已自动应用最近数据筛选器。您可以在列表视图设置中 #. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Automatically delete account within (hours)" -msgstr "在(小时)内自动删除账户" +msgstr "自动删除账号时限(小时)" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -3080,27 +3119,27 @@ msgstr "头像" #: frappe/public/js/frappe/form/controls/password.js:88 #: frappe/public/js/frappe/ui/group_by/group_by.js:21 msgid "Average" -msgstr "平均" +msgstr "平均值" -#: frappe/public/js/frappe/ui/group_by/group_by.js:342 +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 msgid "Average of {0}" -msgstr "{0}的平均值" +msgstr "平均值{0}" #: frappe/utils/password_strength.py:130 msgid "Avoid dates and years that are associated with you." -msgstr "避免使用与您相关的日期和年份。" +msgstr "避免日期和与你相关的年。" #: frappe/utils/password_strength.py:124 msgid "Avoid recent years." -msgstr "避免使用近年份。" +msgstr "避免最近几年。" #: frappe/utils/password_strength.py:117 msgid "Avoid sequences like abc or 6543 as they are easy to guess" -msgstr "避免使用如abc或6543等容易被猜到的序列" +msgstr "避免像ABC或6543的序列,因为它们容易被猜中" #: frappe/utils/password_strength.py:124 msgid "Avoid years that are associated with you." -msgstr "避免使用与您相关的年份。" +msgstr "避免了与你相关的年。" #. Label of the awaiting_password (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json @@ -3110,7 +3149,7 @@ msgstr "等待密码" #. Label of the awaiting_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Awaiting password" -msgstr "等待密码" +msgstr "稍后提供密码" #: frappe/public/js/frappe/widgets/onboarding_widget.js:195 msgid "Awesome Work" @@ -3185,12 +3224,12 @@ msgstr "B9" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "BCC" -msgstr "密送" +msgstr "暗送" -#: frappe/public/js/frappe/views/communication.js:85 +#: frappe/public/js/frappe/views/communication.js:87 msgctxt "Email Recipients" msgid "BCC" -msgstr "密送" +msgstr "暗送" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 #: frappe/public/js/frappe/widgets/onboarding_widget.js:181 @@ -3199,7 +3238,7 @@ msgstr "返回" #: frappe/templates/pages/integrations/gcalendar-success.html:13 msgid "Back to Desk" -msgstr "返回工作台" +msgstr "返回主页(桌面)" #: frappe/www/404.html:26 msgid "Back to Home" @@ -3207,7 +3246,7 @@ msgstr "返回首页" #: frappe/www/login.html:201 frappe/www/login.html:232 msgid "Back to Login" -msgstr "返回登录" +msgstr "返回登录界面" #. Label of the background_color (Color) field in DocType 'Number Card' #. Label of the background_color (Color) field in DocType 'Social Link @@ -3223,16 +3262,16 @@ msgstr "背景颜色" #. Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Background Image" -msgstr "背景图像" +msgstr "背景图片" #. Label of a Link in the Build Workspace #. Label of the background_jobs_section (Section Break) field in DocType #. 'System Health Report' #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report/system_health_report.json -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" -msgstr "后台作业" +msgstr "后台任务" #. Label of the background_jobs_check (Data) field in DocType 'System Health #. Report' @@ -3243,7 +3282,7 @@ msgstr "后台作业检查" #. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Background Jobs Queue" -msgstr "后台作业队列" +msgstr "后台任务队列" #: frappe/public/js/frappe/list/bulk_operations.js:87 msgid "Background Print (required for >25 documents)" @@ -3256,15 +3295,15 @@ msgstr "后台打印(超过25个文档时需要)" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Workers" -msgstr "后台工作进程" +msgstr "后台进程" #: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" -msgstr "备份加密密钥" +msgstr "备份秘钥" #: frappe/desk/page/backups/backups.py:98 msgid "Backup job is already queued. You will receive an email with the download link" -msgstr "备份作业已排队,您将收到包含下载链接的电子邮件" +msgstr "备份作业已经排队。您将收到一封包含下载链接的电子邮件" #. Label of the backups_tab (Tab Break) field in DocType 'System Settings' #. Label of the backups_section (Section Break) field in DocType 'System Health @@ -3286,7 +3325,7 @@ msgstr "错误的Cron表达式" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Banker's Rounding" -msgstr "银行家舍入法" +msgstr "银行圆整" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -3313,12 +3352,12 @@ msgstr "横幅图像" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner is above the Top Menu Bar." -msgstr "横幅位于顶部菜单栏上方。" +msgstr "横幅在顶部菜单上方显示。" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Bar" -msgstr "条形图" +msgstr "柱状图" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -3327,19 +3366,19 @@ msgstr "条形图" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Barcode" -msgstr "条形码" +msgstr "条码" #. Label of the base_dn (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Base Distinguished Name (DN)" -msgstr "基础可识别名称(DN)" +msgstr "基本专有名称(DN)" #. Label of the base_url (Data) field in DocType 'Geolocation Settings' #. Label of the base_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Base URL" -msgstr "基础URL" +msgstr "基本网址" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json @@ -3361,7 +3400,7 @@ msgstr "基于用户权限" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Basic" -msgstr "基础" +msgstr "基本工资" #. Label of the section_break_3 (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -3391,7 +3430,7 @@ msgstr "放弃前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Insert" -msgstr "插入前" +msgstr "创建前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -3401,7 +3440,7 @@ msgstr "打印前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Rename" -msgstr "重命名前" +msgstr "修改单据编号(名称)前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -3411,7 +3450,7 @@ msgstr "保存前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Save (Submitted Document)" -msgstr "保存前(已提交文档)" +msgstr "保存前(已提交)" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -3421,38 +3460,38 @@ msgstr "提交前" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Validate" -msgstr "验证前" +msgstr "校验前" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Beginner" -msgstr "初级" +msgstr "初学者" #: frappe/public/js/frappe/form/link_selector.js:29 msgid "Beginning with" -msgstr "开始于" +msgstr "以此开头" #. Label of the beta (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Beta" -msgstr "测试版" +msgstr "Beta版" #: frappe/utils/password_strength.py:73 msgid "Better add a few more letters or another word" -msgstr "建议添加更多字母或另一个单词" +msgstr "最好加几个字母或一个字" #: frappe/public/js/frappe/ui/filters/filter.js:27 msgid "Between" -msgstr "介于" +msgstr "自" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Billing" -msgstr "计费" +msgstr "发票" #: frappe/public/js/frappe/form/templates/contact_list.html:27 msgid "Billing Contact" -msgstr "账单联系人" +msgstr "发票联系人" #. Label of the binary_logging (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3466,7 +3505,7 @@ msgstr "二进制日志记录" #: frappe/website/doctype/about_us_team_member/about_us_team_member.json #: frappe/website/doctype/blogger/blogger.json msgid "Bio" -msgstr "简介" +msgstr "个人简介" #. Label of the birth_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -3480,19 +3519,19 @@ msgstr "空白模板" #. Name of a DocType #: frappe/core/doctype/block_module/block_module.json msgid "Block Module" -msgstr "屏蔽模块" +msgstr "锁定模块" #. Label of the block_modules (Table) field in DocType 'Module Profile' #. Label of the block_modules (Table) field in DocType 'User' #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json msgid "Block Modules" -msgstr "屏蔽模块" +msgstr "锁定模块" #. Label of the blocked (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Blocked" -msgstr "已屏蔽" +msgstr "锁定" #. Label of a Card Break in the Website Workspace #: frappe/website/doctype/blog_post/blog_post.py:245 @@ -3515,12 +3554,12 @@ msgstr "博客分类" #. Label of the blog_intro (Small Text) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Blog Intro" -msgstr "博客简介" +msgstr "博客介绍" #. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Blog Introduction" -msgstr "博客导言" +msgstr "博客介绍" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -3550,7 +3589,7 @@ msgstr "博客标题" #: frappe/website/doctype/blogger/blogger.json #: frappe/website/workspace/website/website.json msgid "Blogger" -msgstr "博主" +msgstr "博客作者" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' @@ -3566,21 +3605,21 @@ msgstr "蓝色" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Bold" -msgstr "粗体" +msgstr "粗体字显示" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "机器人" +msgstr "聊天机器人" #: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" -msgstr "需要文档类型和名称" +msgstr "单据类型和名称是必须项" #: frappe/templates/includes/login/login.js:24 #: frappe/templates/includes/login/login.js:96 msgid "Both login and password required" -msgstr "需要登录名和密码" +msgstr "登录名和密码必填" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -3594,13 +3633,13 @@ msgstr "底部" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 msgid "Bottom Center" -msgstr "底部居中" +msgstr "底部中间" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 msgid "Bottom Left" -msgstr "左下" +msgstr "底部左侧" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -3608,7 +3647,7 @@ msgstr "左下" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 msgid "Bottom Right" -msgstr "右下" +msgstr "底部右侧" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -3628,12 +3667,12 @@ msgstr "品牌HTML" #. Label of the banner_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand Image" -msgstr "品牌图片" +msgstr "品牌形象" #. Label of the brand_logo (Attach Image) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Brand Logo" -msgstr "品牌标志" +msgstr "品牌图标" #. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -3669,13 +3708,13 @@ msgstr "浏览器版本" #: frappe/public/js/frappe/desk.js:19 msgid "Browser not supported" -msgstr "不支持的浏览器" +msgstr "浏览器不支持" #. Label of the brute_force_security (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Brute Force Security" -msgstr "暴力破解安全设置" +msgstr "密码安全强化措施" #. Label of the bufferpool_size (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3690,7 +3729,7 @@ msgstr "构建" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" -msgstr "创建自定义报告、打印格式和仪表板。构建个性化工作空间以便导航" +msgstr "创建自定义报表,打印格式,图表。创建个性化工作区便捷访问各个功能" #: frappe/workflow/doctype/workflow/workflow_list.js:18 msgid "Build {0}" @@ -3711,7 +3750,7 @@ msgstr "批量删除" #: frappe/public/js/frappe/list/bulk_operations.js:321 msgid "Bulk Edit" -msgstr "批量编辑" +msgstr "批量修改" #: frappe/public/js/frappe/form/grid.js:1188 msgid "Bulk Edit {0}" @@ -3727,7 +3766,7 @@ msgstr "批量操作成功" #: frappe/public/js/frappe/list/bulk_operations.js:131 msgid "Bulk PDF Export" -msgstr "批量PDF导出" +msgstr "批量导出PDF" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -3781,7 +3820,7 @@ msgstr "按钮阴影" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By \"Naming Series\" field" -msgstr "按“命名系列”字段" +msgstr "单据编号模板" #: frappe/website/doctype/web_page/web_page.js:111 #: frappe/website/doctype/web_page/web_page.js:118 @@ -3793,14 +3832,14 @@ msgstr "默认使用标题作为元标题,在此处添加值将覆盖默认设 #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By fieldname" -msgstr "按字段名" +msgstr "字段" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "By script" -msgstr "通过脚本" +msgstr "脚本代码" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'User' @@ -3812,13 +3851,13 @@ msgstr "若启用双因素认证则绕过受限IP地址检查" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "对从受限IP地址登录的用户绕过双因素认证" +msgstr "为受限IP地址登录的用户绕过双重验证" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" -msgstr "若启用双因素认证则绕过受限IP地址检查" +msgstr "绕过受限制的IP地址检查如果双因素验证启用" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -3836,7 +3875,7 @@ msgstr "已取消" msgid "CC" msgstr "抄送" -#: frappe/public/js/frappe/views/communication.js:76 +#: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" msgstr "抄送" @@ -3926,17 +3965,17 @@ msgstr "日历视图" #: frappe/contacts/doctype/contact/contact.js:55 #: frappe/desk/doctype/event/event.json msgid "Call" -msgstr "调用" +msgstr "电话" #. Label of the call_to_action (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action" -msgstr "行动号召" +msgstr "行动召唤" #. Label of the call_to_action_url (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "行动号召URL" +msgstr "行动召唤网址" #. Label of the cta_section (Section Break) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json @@ -3959,14 +3998,12 @@ msgstr "回调标题" msgid "Camera" msgstr "摄像头" -#. Label of the campaign (Link) field in DocType 'Newsletter' #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1726 +#: frappe/public/js/frappe/utils/utils.js:1729 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "活动" +msgstr "促销活动" #. Label of the campaign_description (Small Text) field in DocType 'UTM #. Campaign' @@ -3977,12 +4014,12 @@ msgstr "活动描述(可选)" #: frappe/public/js/frappe/form/templates/set_sharing.html:4 #: frappe/public/js/frappe/form/templates/set_sharing.html:50 msgid "Can Read" -msgstr "可读" +msgstr "可以读" #: frappe/public/js/frappe/form/templates/set_sharing.html:7 #: frappe/public/js/frappe/form/templates/set_sharing.html:53 msgid "Can Share" -msgstr "可共享" +msgstr "可以分享" #: frappe/public/js/frappe/form/templates/set_sharing.html:6 #: frappe/public/js/frappe/form/templates/set_sharing.html:52 @@ -3992,7 +4029,7 @@ msgstr "可提交" #: frappe/public/js/frappe/form/templates/set_sharing.html:5 #: frappe/public/js/frappe/form/templates/set_sharing.html:51 msgid "Can Write" -msgstr "可写" +msgstr "可以写" #: frappe/custom/doctype/custom_field/custom_field.py:410 msgid "Can not rename as column {0} is already present on DocType." @@ -4000,13 +4037,13 @@ msgstr "无法重命名,因为列{0}已存在于文档类型中。" #: frappe/core/doctype/doctype/doctype.py:1163 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" -msgstr "仅当文档类型无数据时才能更改自动递增命名规则" +msgstr "仅在单据类型无数据时修改自增编号" #. Description of the 'Apply User Permission On' (Link) field in DocType 'User #. Type' #: frappe/core/doctype/user_type/user_type.json msgid "Can only list down the document types which has been linked to the User document type." -msgstr "只能列出已链接到用户文档类型的文档类型。" +msgstr "仅限访问关联了用户(链接字段)的单据类型" #: frappe/desk/form/document_follow.py:48 msgid "Can't follow since changes are not tracked." @@ -4029,7 +4066,7 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" msgid "Cancel" msgstr "取消" -#: frappe/public/js/frappe/list/list_view.js:2059 +#: frappe/public/js/frappe/list/list_view.js:2057 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "取消" @@ -4045,13 +4082,9 @@ msgstr "全部取消" #: frappe/public/js/frappe/form/form.js:966 msgid "Cancel All Documents" -msgstr "取消所有文档" +msgstr "取消所有单据" -#: frappe/email/doctype/newsletter/newsletter.js:132 -msgid "Cancel Scheduling" -msgstr "取消调度" - -#: frappe/public/js/frappe/list/list_view.js:2064 +#: frappe/public/js/frappe/list/list_view.js:2062 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "确定要取消{0}个文档吗?" @@ -4071,7 +4104,7 @@ msgstr "已取消" #: frappe/core/doctype/deleted_document/deleted_document.py:52 msgid "Cancelled Document restored as Draft" -msgstr "已取消文档恢复为草稿" +msgstr "已取消的单据已恢复为草稿" #: frappe/public/js/frappe/form/save.js:13 msgctxt "Freeze message while cancelling a document" @@ -4080,11 +4113,11 @@ msgstr "正在取消" #: frappe/desk/form/linked_with.py:381 msgid "Cancelling documents" -msgstr "正在取消文档" +msgstr "取消单据" #: frappe/desk/doctype/bulk_update/bulk_update.py:91 msgid "Cancelling {0}" -msgstr "正在取消{0}" +msgstr "取消{0}" #: frappe/core/doctype/prepared_report/prepared_report.py:265 msgid "Cannot Download Report due to insufficient permissions" @@ -4096,11 +4129,11 @@ msgstr "无法获取值" #: frappe/core/page/permission_manager/permission_manager.py:156 msgid "Cannot Remove" -msgstr "无法移除" +msgstr "无法删除" #: frappe/model/base_document.py:1161 msgid "Cannot Update After Submit" -msgstr "提交后无法更新" +msgstr "不允许提交后修改" #: frappe/core/doctype/file/file.py:621 msgid "Cannot access file path {0}" @@ -4112,17 +4145,17 @@ msgstr "从{0}状态转换到{1}状态时,提交前无法取消" #: frappe/workflow/doctype/workflow/workflow.py:109 msgid "Cannot cancel before submitting. See Transition {0}" -msgstr "提交前无法取消。请查看转换{0}" +msgstr "提交前不能取消,详情参考状态转换{0}" #: frappe/public/js/frappe/list/bulk_operations.js:294 msgid "Cannot cancel {0}." msgstr "无法取消{0}。" -#: frappe/model/document.py:1011 +#: frappe/model/document.py:1013 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "无法将文档状态从0(草稿)更改为2(已取消)" -#: frappe/model/document.py:1025 +#: frappe/model/document.py:1027 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "无法将文档状态从1(已提交)更改为0(草稿)" @@ -4132,15 +4165,15 @@ msgstr "无法更改已取消文档的状态({0}状态)" #: frappe/workflow/doctype/workflow/workflow.py:98 msgid "Cannot change state of Cancelled Document. Transition row {0}" -msgstr "无法更改已取消文档的状态。转换行{0}" +msgstr "不能改变已取消单据的状态。状态转换第{0}行" #: frappe/core/doctype/doctype/doctype.py:1153 msgid "Cannot change to/from autoincrement autoname in Customize Form" -msgstr "在自定义表单中无法更改自动递增命名规则" +msgstr "定制表单不支持修改自增编号" #: frappe/core/doctype/communication/communication.py:169 msgid "Cannot create a {0} against a child document: {1}" -msgstr "无法针对子文档{1}创建{0}" +msgstr "无法创建{0}子单据:{1}" #: frappe/desk/doctype/workspace/workspace.py:272 msgid "Cannot create private workspace of other users" @@ -4148,11 +4181,11 @@ msgstr "无法创建其他用户的私有工作空间" #: frappe/core/doctype/file/file.py:153 msgid "Cannot delete Home and Attachments folders" -msgstr "无法删除主页和附件文件夹" +msgstr "无法删除主文件和附件文件夹" -#: frappe/model/delete_doc.py:378 +#: frappe/model/delete_doc.py:379 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" -msgstr "无法删除或取消,因为{0} {1}与{2} {3} {4}存在关联" +msgstr "由于{0} {1}与{2} {3} {4}关联,无法删除或取消" #: frappe/custom/doctype/customize_form/customize_form.js:369 msgid "Cannot delete standard action. You can hide it if you want" @@ -4171,7 +4204,7 @@ msgstr "无法删除标准字段{0}。您可以隐藏它。" #: frappe/public/js/form_builder/components/Section.vue:190 #: frappe/public/js/form_builder/components/Tabs.vue:56 msgid "Cannot delete standard field. You can hide it if you want" -msgstr "无法删除标准字段。您可以隐藏它" +msgstr "标准字段只能隐藏,不能删除" #: frappe/custom/doctype/customize_form/customize_form.js:347 msgid "Cannot delete standard link. You can hide it if you want" @@ -4187,7 +4220,7 @@ msgstr "无法删除{0}" #: frappe/utils/nestedset.py:299 msgid "Cannot delete {0} as it has child nodes" -msgstr "无法删除{0},因为存在子节点" +msgstr "无法删除{0} ,因为它有子节点" #: frappe/desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" @@ -4195,7 +4228,7 @@ msgstr "无法编辑标准仪表板" #: frappe/email/doctype/notification/notification.py:192 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" -msgstr "无法编辑标准通知。如需编辑请禁用并复制" +msgstr "无法编辑标准通知。要进行编辑,请勾选禁用然后复制它" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 msgid "Cannot edit Standard charts" @@ -4203,11 +4236,11 @@ msgstr "无法编辑标准图表" #: frappe/core/doctype/report/report.py:72 msgid "Cannot edit a standard report. Please duplicate and create a new report" -msgstr "无法编辑标准报告。请复制并创建新报告" +msgstr "不能编辑标准的报表。请复制并创建一个新的报表" -#: frappe/model/document.py:1031 +#: frappe/model/document.py:1033 msgid "Cannot edit cancelled document" -msgstr "无法编辑已取消文档" +msgstr "无法编辑已取消单据" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" @@ -4220,7 +4253,7 @@ msgstr "无法编辑标准数字卡筛选器" #: frappe/client.py:166 msgid "Cannot edit standard fields" -msgstr "无法编辑标准字段" +msgstr "不能编辑标准字段" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 msgid "Cannot enable {0} for a non-submittable doctype" @@ -4242,25 +4275,25 @@ msgstr "不能将多个打印机映射到单个打印格式。" msgid "Cannot import table with more than 5000 rows." msgstr "无法导入超过5000行的表格。" -#: frappe/model/document.py:1099 +#: frappe/model/document.py:1101 msgid "Cannot link cancelled document: {0}" -msgstr "无法链接已取消文档:{0}" +msgstr "不能链接到已取消单据{0}" #: frappe/model/mapper.py:175 msgid "Cannot map because following condition fails:" -msgstr "无法映射,因为以下条件失败:" +msgstr "无法对应,因为以下条件失败:" #: frappe/core/doctype/data_import/importer.py:971 msgid "Cannot match column {0} with any field" -msgstr "无法将列{0}与任何字段匹配" +msgstr "上传文件中的字段{0}无法匹配目标单据字段" #: frappe/public/js/frappe/form/grid_row.js:175 msgid "Cannot move row" -msgstr "无法移动行" +msgstr "不能移动行" #: frappe/public/js/frappe/views/reports/report_view.js:927 msgid "Cannot remove ID field" -msgstr "无法移除ID字段" +msgstr "无法删除ID字段" #: frappe/core/page/permission_manager/permission_manager.py:132 msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" @@ -4285,9 +4318,9 @@ msgstr "无法更新{0}" #: frappe/model/db_query.py:1126 msgid "Cannot use sub-query in order by" -msgstr "不能在order by中使用子查询" +msgstr "在order by语句中不能使用子查询" -#: frappe/model/db_query.py:1145 +#: frappe/model/db_query.py:1147 msgid "Cannot use {0} in order/group by" msgstr "不能在order/group by中使用{0}" @@ -4297,7 +4330,7 @@ msgstr "无法{0} {1}。" #: frappe/utils/password_strength.py:181 msgid "Capitalization doesn't help very much." -msgstr "大小写区别作用不大。" +msgstr "资本化不适用。" #: frappe/public/js/frappe/ui/capture.js:294 msgid "Capture" @@ -4313,9 +4346,9 @@ msgstr "卡片" msgid "Card Break" msgstr "卡片分隔" -#: frappe/public/js/frappe/views/reports/query_report.js:261 +#: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" -msgstr "卡片标签" +msgstr "数字卡标题" #: frappe/public/js/frappe/widgets/widget_dialog.js:262 msgid "Card Links" @@ -4337,27 +4370,23 @@ msgstr "类别" #. Label of the category_description (Text) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Category Description" -msgstr "类别描述" +msgstr "类别说明" #. Label of the category_name (Data) field in DocType 'Help Category' #: frappe/website/doctype/help_category/help_category.json msgid "Category Name" -msgstr "类别名称" - -#: frappe/utils/data.py:1520 -msgid "Cent" -msgstr "分" +msgstr "分类名称" #. Option for the 'Align' (Select) field in DocType 'Letter Head' #. Option for the 'Text Align' (Select) field in DocType 'Web Page' #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Center" -msgstr "居中" +msgstr "中心" #: frappe/core/page/permission_manager/permission_manager_help.html:16 msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." -msgstr "某些文档(如发票)在最终确定后不应更改。此类文档的最终状态称为'已提交'。您可以限制哪些角色可提交。" +msgstr "某些单据,例如发票一旦进入最终状态(即“已提交”)就不能再更改。你可以限制可以提交的角色。" #: frappe/core/report/transaction_log_report/transaction_log_report.py:82 msgid "Chain Integrity" @@ -4366,7 +4395,7 @@ msgstr "链完整性" #. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Chaining Hash" -msgstr "链式哈希" +msgstr "链接哈希" #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 @@ -4385,7 +4414,7 @@ msgstr "更换图片" #. Label of the label (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Change Label (via Custom Translation)" -msgstr "更改标签(通过自定义翻译)" +msgstr "更改标签(自定义转换)" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 @@ -4427,7 +4456,7 @@ msgstr "变更日志订阅" #. Label of the changed_values (HTML) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Changes" -msgstr "变更" +msgstr "找零" #: frappe/email/doctype/email_domain/email_domain.js:5 msgid "Changing any setting will reflect on all the email accounts associated with this domain." @@ -4435,7 +4464,7 @@ msgstr "任何设置更改将影响与此域关联的所有电子邮件账户。 #: frappe/core/doctype/system_settings/system_settings.js:67 msgid "Changing rounding method on site with data can result in unexpected behaviour." -msgstr "在已有数据的站点更改舍入方法可能导致意外行为。" +msgstr "站点已有业务数据的情况下变更圆整方式可能会产生非预期结果" #. Label of the channel (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -4456,7 +4485,7 @@ msgstr "图表配置" #. Label of the chart_name (Link) field in DocType 'Workspace Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace_chart/workspace_chart.json -#: frappe/public/js/frappe/views/reports/query_report.js:288 +#: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" msgstr "图表名称" @@ -4507,19 +4536,15 @@ msgstr "聊天" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Check" -msgstr "检查" +msgstr "勾选框" #: frappe/integrations/doctype/webhook/webhook.py:95 msgid "Check Request URL" msgstr "检查请求URL" -#: frappe/email/doctype/newsletter/newsletter.js:18 -msgid "Check broken links" -msgstr "检查损坏链接" - #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 msgid "Check columns to select, drag to set order." -msgstr "勾选要选择的列,拖拽调整顺序。" +msgstr "勾选列选择,拖动列排序。" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 msgid "Check the Error Log for more information: {0}" @@ -4533,20 +4558,16 @@ msgstr "勾选此项可禁止用户注册账户。除非明确授权,否则用 #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." -msgstr "勾选此项将强制用户在保存前选择序列。若勾选则无默认值。" +msgstr "如需用户手动选择单据编号模板,请勾选。勾选后系统不会设置默认单据编号模板。" #. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." msgstr "" -#: frappe/email/doctype/newsletter/newsletter.js:20 -msgid "Checking broken links..." -msgstr "正在检查损坏链接..." - #: frappe/public/js/frappe/desk.js:235 msgid "Checking one moment" -msgstr "正在检查,请稍候" +msgstr "检查一下" #: frappe/website/doctype/website_settings/website_settings.js:140 msgid "Checking this will enable tracking page views for blogs, web pages, etc." @@ -4556,7 +4577,7 @@ msgstr "勾选此项将启用博客、网页等的页面浏览跟踪" #. DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "勾选此项将隐藏'链接'部分的自定义文档类型和报告卡片" +msgstr "勾选后快速访问卡中不会出现自定义单据类型和报表" #: frappe/website/doctype/web_page/web_page.js:78 msgid "Checking this will publish the page on your website and it'll be visible to everyone." @@ -4569,7 +4590,7 @@ msgstr "勾选此项将显示文本区,可编写在此页面运行的JavaScrip #. Label of the checksum_version (Data) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Checksum Version" -msgstr "校验和版本" +msgstr "校验版本" #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" @@ -4588,15 +4609,19 @@ msgstr "字段{1}的子表{0}" #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:52 msgid "Child Tables are shown as a Grid in other DocTypes" -msgstr "子表在其他文档类型中显示为网格" +msgstr "嵌入其它单据类型中作为表格,一对多关系中的多这一方" + +#: frappe/database/query.py:660 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:651 msgid "Choose Existing Card or create New Card" -msgstr "选择现有卡片或创建新卡片" +msgstr "选择已有卡或创建一个新卡" #: frappe/public/js/frappe/views/workspace/workspace.js:571 msgid "Choose a block or continue typing" -msgstr "选择块或继续输入" +msgstr "选择一个模板或输入文字" #: frappe/public/js/form_builder/components/controls/DataControl.vue:18 #: frappe/public/js/frappe/form/controls/color.js:5 @@ -4612,7 +4637,7 @@ msgstr "选择图标" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Choose authentication method to be used by all users" -msgstr "选择所有用户使用的认证方式" +msgstr "选择所有用户使用的身份验证方法" #. Label of the city (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -4622,29 +4647,33 @@ msgstr "城市" #. Label of the city (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "City/Town" -msgstr "城市/城镇" +msgstr "市/镇" #: frappe/core/doctype/recorder/recorder_list.js:12 #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Clear" msgstr "清除" -#: frappe/public/js/frappe/views/communication.js:432 +#: frappe/public/js/frappe/views/communication.js:435 msgid "Clear & Add Template" -msgstr "清除并添加模板" +msgstr "清空并添加模板" -#: frappe/public/js/frappe/views/communication.js:111 +#: frappe/public/js/frappe/views/communication.js:114 msgid "Clear & Add template" msgstr "清除并添加模板" -#: frappe/public/js/frappe/list/list_view.js:1965 +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "清空全部" + +#: frappe/public/js/frappe/list/list_view.js:1963 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "清除分配" #: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" -msgstr "清除缓存并重新加载" +msgstr "清除缓存和重新加载" #: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" @@ -4652,7 +4681,7 @@ msgstr "清除错误日志" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Clear Filters" -msgstr "清除筛选器" +msgstr "清除过滤条件" #. Label of the days (Int) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json @@ -4661,28 +4690,24 @@ msgstr "日志保留天数" #: frappe/core/doctype/user_permission/user_permission_list.js:144 msgid "Clear User Permissions" -msgstr "清除用户权限" +msgstr "清除用户权限限制" -#: frappe/public/js/frappe/views/communication.js:433 +#: frappe/public/js/frappe/views/communication.js:436 msgid "Clear the email message and add the template" -msgstr "清除邮件内容并添加模板" +msgstr "模板内容覆盖邮件正文(消息)" #: frappe/website/doctype/web_page/web_page.py:215 msgid "Clearing end date, as it cannot be in the past for published pages." -msgstr "清除结束日期,因为已发布页面不能设置过去日期。" +msgstr "清除结束日期,因为发布的页面不能在过去。" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 msgid "Click On Customize to add your first widget" -msgstr "点击'自定义'添加第一个组件" +msgstr "点击定制按钮开始定制" #: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Click here" msgstr "点击此处" -#: frappe/email/doctype/newsletter/newsletter.py:335 -msgid "Click here to verify" -msgstr "点击此处验证" - #: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 msgid "Click on a file to select it." msgstr "点击文件进行选择。" @@ -4697,28 +4722,28 @@ msgstr "点击下方链接批准请求" #: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" -msgstr "点击下方链接完成注册并设置新密码" +msgstr "点击下面的链接完成注册,并设置新密码" #: frappe/templates/emails/download_data.html:3 msgid "Click on the link below to download your data" -msgstr "点击下方链接下载您的数据" +msgstr "点击下面的链接下载您的数据" #: frappe/templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" -msgstr "点击下方链接验证您的请求" +msgstr "点击下面的链接验证您的请求" #: frappe/integrations/doctype/google_calendar/google_calendar.py:118 #: frappe/integrations/doctype/google_contacts/google_contacts.py:41 #: frappe/website/doctype/website_settings/website_settings.py:161 msgid "Click on {0} to generate Refresh Token." -msgstr "点击{0}生成刷新令牌。" +msgstr "单击{0}以生成刷新令牌。" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 #: frappe/desk/doctype/number_card/number_card.js:215 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" -msgstr "点击表格编辑" +msgstr "点击表格进行编辑" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 #: frappe/desk/doctype/number_card/number_card.js:402 @@ -4729,7 +4754,7 @@ msgstr "点击设置动态筛选器" #: frappe/desk/doctype/number_card/number_card.js:270 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" -msgstr "点击设置筛选器" +msgstr "单击设置过滤条件" #: frappe/public/js/frappe/list/list_view.js:711 msgid "Click to sort by {0}" @@ -4738,19 +4763,19 @@ msgstr "点击按{0}排序" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Clicked" -msgstr "已点击" +msgstr "点击" #. Label of the client (Link) field in DocType 'OAuth Authorization Code' #. Label of the client (Link) field in DocType 'OAuth Bearer Token' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Client" -msgstr "客户端" +msgstr "客户" #. Label of the client_code_section (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Client Code" -msgstr "客户端代码" +msgstr "客户端javasript脚本" #. Label of the sb_client_credentials_section (Section Break) field in DocType #. 'Connected App' @@ -4762,8 +4787,10 @@ msgid "Client Credentials" msgstr "客户端凭证" #. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' #. Label of the client_id (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" msgstr "客户端ID" @@ -4777,7 +4804,13 @@ msgstr "客户端ID" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Information" -msgstr "客户端信息" +msgstr "客户信息" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -4791,17 +4824,36 @@ msgstr "客户端脚本" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' #. Label of the client_secret (Password) field in DocType 'Social Login Key' #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client Secret" -msgstr "客户端密钥" +msgstr "客户端秘钥" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" #. Label of the client_urls (Section Break) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client URLs" -msgstr "客户端URL" +msgstr "客户端网址" #. Label of the client_script (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -4875,14 +4927,14 @@ msgstr "代码挑战方法" #: frappe/public/js/frappe/ui/sidebar.html:11 #: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Collapse" -msgstr "折叠" +msgstr "收起" #: frappe/public/js/frappe/form/controls/code.js:184 msgctxt "Shrink code field." msgid "Collapse" msgstr "折叠" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "全部折叠" @@ -4902,12 +4954,12 @@ msgstr "可折叠" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "折叠依赖条件" +msgstr "可折叠先决条件" #. Label of the collapsible_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" -msgstr "折叠依赖条件(JS)" +msgstr "可折叠先决条件(JS)" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the color (Data) field in DocType 'DocType' @@ -4937,7 +4989,7 @@ msgstr "折叠依赖条件(JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1231 +#: frappe/public/js/frappe/views/reports/query_report.js:1232 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4964,7 +5016,7 @@ msgstr "列2" #: frappe/desk/doctype/kanban_board/kanban_board.py:84 msgid "Column {0} already exist." -msgstr "列{0}已存在。" +msgstr "列{0}已经存在。" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -4977,7 +5029,7 @@ msgstr "列{0}已存在。" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Column Break" -msgstr "列分隔" +msgstr "栏" #: frappe/core/doctype/data_export/exporter.py:140 msgid "Column Labels:" @@ -5024,13 +5076,13 @@ msgstr "列" msgid "Columns / Fields" msgstr "列/字段" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:396 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 msgid "Columns based on" -msgstr "基于的列" +msgstr "基于列" -#: frappe/integrations/doctype/oauth_client/oauth_client.py:45 +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" -msgstr "不允许的授权类型({0})与响应类型({1})组合" +msgstr "授予类型( {0} )和响应类型( {1} )的组合不允许" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -5050,12 +5102,12 @@ msgstr "评论" #. Label of the comment_by (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment By" -msgstr "评论人" +msgstr "评论依据" #. Label of the comment_email (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Comment Email" -msgstr "评论邮箱" +msgstr "评论电邮" #. Label of the comment_type (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -5064,7 +5116,7 @@ msgstr "评论类型" #: frappe/desk/form/utils.py:58 msgid "Comment can only be edited by the owner" -msgstr "评论只能由所有者编辑" +msgstr "评论只能由制单人进行编辑" #. Label of the comment_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json @@ -5090,7 +5142,7 @@ msgstr "评论" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Comments and Communications will be associated with this linked document" -msgstr "评论和沟通将关联到此链接文档" +msgstr "评论与沟通将与此链接的单据关联" #: frappe/templates/includes/comments/comments.py:38 msgid "Comments cannot have links or email addresses" @@ -5099,7 +5151,7 @@ msgstr "评论不能包含链接或电子邮件地址" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Commercial Rounding" -msgstr "商业舍入" +msgstr "商业圆整" #. Label of the commit (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -5113,7 +5165,7 @@ msgstr "已提交" #: frappe/utils/password_strength.py:176 msgid "Common names and surnames are easy to guess." -msgstr "常见姓名容易被猜中。" +msgstr "常见名字和姓氏很容易被猜到。" #. Name of a DocType #. Option for the 'Communication Type' (Select) field in DocType @@ -5125,7 +5177,7 @@ msgstr "常见姓名容易被猜中。" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 msgid "Communication" -msgstr "通讯" +msgstr "沟通" #. Name of a DocType #: frappe/core/doctype/communication_link/communication_link.json @@ -5135,12 +5187,12 @@ msgstr "通讯链接" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Communication Logs" -msgstr "通讯日志" +msgstr "沟通日志" #. Label of the communication_type (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Communication Type" -msgstr "通讯类型" +msgstr "通信类型" #: frappe/integrations/frappe_providers/frappecloud_billing.py:32 msgid "Communication secret not set" @@ -5161,13 +5213,13 @@ msgstr "公司简介" #. Label of the company_name (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Company Name" -msgstr "公司名称" +msgstr "公司名" #: frappe/core/doctype/server_script/server_script.js:14 #: frappe/custom/doctype/client_script/client_script.js:54 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" -msgstr "版本对比" +msgstr "版本比较" #: frappe/core/doctype/server_script/server_script.py:157 msgid "Compilation warning" @@ -5185,9 +5237,9 @@ msgstr "完成" #: frappe/public/js/frappe/form/sidebar/assign_to.js:203 msgid "Complete By" -msgstr "完成人" +msgstr "完成日期" -#: frappe/core/doctype/user/user.py:478 +#: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 msgid "Complete Registration" msgstr "完成注册" @@ -5215,21 +5267,21 @@ msgstr "已完成" #. Label of the completed_by_role (Link) field in DocType 'Workflow Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By Role" -msgstr "按角色完成" +msgstr "审批人角色" #. Label of the completed_by (Link) field in DocType 'Workflow Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Completed By User" -msgstr "按用户完成" +msgstr "审批人用户" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/website/doctype/web_template/web_template.json msgid "Component" -msgstr "组件" +msgstr "薪资构成" #: frappe/public/js/frappe/views/inbox/inbox_view.js:184 msgid "Compose Email" -msgstr "撰写邮件" +msgstr "写邮件" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -5275,7 +5327,13 @@ msgstr "条件描述" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Conditions" -msgstr "条件列表" +msgstr "条件" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "配置" #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' @@ -5289,7 +5347,7 @@ msgstr "配置图表" #: frappe/public/js/frappe/form/grid_row.js:390 msgid "Configure Columns" -msgstr "配置列" +msgstr "列设置" #: frappe/core/doctype/recorder/recorder_list.js:200 msgid "Configure Recorder" @@ -5305,9 +5363,9 @@ msgstr "为{0}配置列" msgid "Configure how amended documents will be named.
\n\n" "Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" "Default Naming will make the amended document to behave same as new documents." -msgstr "配置修改后的文档的命名方式。
\n\n" -"默认行为是遵循修改计数器,该计数器在原始名称末尾添加一个数字,表示修改后的版本。
\n\n" -"默认命名将使修改后的文档的行为与新文档相同。" +msgstr "设置修订后单据编号规则\n" +"默认规则是在被修订单据编号基础上添加修订次数(版本)后缀\n" +"选择默认单据编号规则时修订后的单据会重新生成下一个新单据编号" #. Description of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -5315,7 +5373,7 @@ msgid "Configure various aspects of how document naming works like naming series msgstr "配置文档命名的各项参数,如命名序列、当前计数器。" #: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 -#: frappe/www/update-password.html:53 +#: frappe/www/update-password.html:66 msgid "Confirm" msgstr "确认" @@ -5324,7 +5382,7 @@ msgctxt "Title of confirmation dialog" msgid "Confirm" msgstr "确认" -#: frappe/integrations/oauth2.py:120 +#: frappe/integrations/oauth2.py:138 msgid "Confirm Access" msgstr "确认访问" @@ -5337,18 +5395,14 @@ msgstr "确认删除账户" msgid "Confirm New Password" msgstr "确认新密码" -#: frappe/www/update-password.html:47 +#: frappe/www/update-password.html:55 msgid "Confirm Password" msgstr "确认密码" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "确认请求" - -#: frappe/email/doctype/newsletter/newsletter.py:330 -msgid "Confirm Your Email" -msgstr "确认您的邮箱" +msgstr "确认申请" #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' @@ -5356,10 +5410,9 @@ msgstr "确认您的邮箱" msgid "Confirmation Email Template" msgstr "确认邮件模板" -#: frappe/email/doctype/newsletter/newsletter.py:379 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" -msgstr "已确认" +msgstr "确认" #: frappe/public/js/frappe/widgets/onboarding_widget.js:525 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." @@ -5376,17 +5429,17 @@ msgstr "连接到{}" #: frappe/integrations/doctype/connected_app/connected_app.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Connected App" -msgstr "已连接应用" +msgstr "关联应用" #. Label of the connected_user (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Connected User" msgstr "已连接用户" -#: frappe/public/js/frappe/form/print_utils.js:97 -#: frappe/public/js/frappe/form/print_utils.js:121 +#: frappe/public/js/frappe/form/print_utils.js:110 +#: frappe/public/js/frappe/form/print_utils.js:134 msgid "Connected to QZ Tray!" -msgstr "已连接至QZ托盘!" +msgstr "连接到QZ托盘!" #: frappe/public/js/frappe/request.js:36 msgid "Connection Lost" @@ -5398,7 +5451,7 @@ msgstr "连接成功" #: frappe/public/js/frappe/dom.js:446 msgid "Connection lost. Some features might not work." -msgstr "连接丢失,部分功能可能不可用。" +msgstr "连接丢失。某些功能可能无法使用。" #. Label of the connections_tab (Tab Break) field in DocType 'DocType' #. Label of the connections_tab (Tab Break) field in DocType 'Module Def' @@ -5408,7 +5461,7 @@ msgstr "连接丢失,部分功能可能不可用。" #: frappe/core/doctype/user/user.json #: frappe/public/js/frappe/form/dashboard.js:54 msgid "Connections" -msgstr "连接" +msgstr "关联" #. Label of the console (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -5438,12 +5491,12 @@ msgstr "联系人" #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" -msgstr "联系详情" +msgstr "联系人信息" #. Name of a DocType #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Contact Email" -msgstr "联系邮箱" +msgstr "联系人电邮" #. Label of the phone_nos (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -5474,7 +5527,12 @@ msgstr "联系我们设置" #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." -msgstr "联系选项,例如“销售查询、支持查询”等,每个选项占一行或用逗号分隔。" +msgstr "联系人选项,如“销售查询,支持查询”等每个新行或以逗号分隔。" + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "联系人" #: frappe/utils/change_log.py:362 msgid "Contains {0} security fix" @@ -5487,8 +5545,6 @@ msgstr "包含{0}个安全修复" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the newsletter_content (Section Break) field in DocType -#. 'Newsletter' #. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' @@ -5496,8 +5552,7 @@ msgstr "包含{0}个安全修复" #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/email/doctype/newsletter/newsletter.json -#: frappe/public/js/frappe/utils/utils.js:1742 +#: frappe/public/js/frappe/utils/utils.js:1745 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/web_page/web_page.json @@ -5509,22 +5564,20 @@ msgstr "内容" #. Label of the content_html (HTML Editor) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Content (HTML)" -msgstr "内容(HTML)" +msgstr "内容(HTML)" #. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Content (Markdown)" -msgstr "内容(Markdown)" +msgstr "内容(Markdown格式)" #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" -msgstr "内容哈希" +msgstr "内容哈希值" -#. Label of the content_type (Select) field in DocType 'Newsletter' #. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" @@ -5564,7 +5617,7 @@ msgstr "继续" #. Label of the contributed (Check) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Contributed" -msgstr "贡献的" +msgstr "供稿" #. Label of the contribution_docname (Data) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json @@ -5581,9 +5634,9 @@ msgstr "贡献状态" msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." msgstr "控制是否允许新用户使用此社交登录密钥注册。若未设置,则遵循网站设置。" -#: frappe/public/js/frappe/utils/utils.js:1033 +#: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." -msgstr "已复制到剪贴板。" +msgstr "复制到剪贴板。" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 msgid "Copy Link" @@ -5595,9 +5648,9 @@ msgstr "复制嵌入代码" #: frappe/public/js/frappe/request.js:620 msgid "Copy error to clipboard" -msgstr "复制错误到剪贴板" +msgstr "将出错日志复制到剪贴板" -#: frappe/public/js/frappe/form/toolbar.js:504 +#: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" msgstr "复制到剪贴板" @@ -5608,7 +5661,7 @@ msgstr "版权" #: frappe/custom/doctype/customize_form/customize_form.py:122 msgid "Core DocTypes cannot be customized." -msgstr "核心文档类型不可自定义。" +msgstr "不能定制系统核心单据类型。" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 msgid "Core Modules {0} cannot be searched in Global Search." @@ -5622,21 +5675,25 @@ msgstr "正确版本:" msgid "Could not connect to outgoing email server" msgstr "无法连接到外发邮件服务器" -#: frappe/model/document.py:1095 +#: frappe/model/document.py:1097 msgid "Could not find {0}" -msgstr "未找到{0}" +msgstr "找不到{0}" #: frappe/core/doctype/data_import/importer.py:933 msgid "Could not map column {0} to field {1}" msgstr "无法映射列{0}到字段{1}" +#: frappe/database/query.py:564 +msgid "Could not parse field: {0}" +msgstr "" + #: frappe/desk/page/setup_wizard/setup_wizard.js:234 msgid "Could not start up: " msgstr "无法启动:" #: frappe/public/js/frappe/web_form/web_form.js:359 msgid "Couldn't save, please check the data you have entered" -msgstr "保存失败,请检查输入数据" +msgstr "不能保存,请检查输入的数据" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' @@ -5646,7 +5703,7 @@ msgstr "保存失败,请检查输入数据" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json #: frappe/public/js/frappe/ui/group_by/group_by.js:19 -#: frappe/public/js/frappe/ui/group_by/group_by.js:325 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" msgstr "计数" @@ -5661,7 +5718,7 @@ msgstr "自定义项计数" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:525 msgid "Count Filter" -msgstr "计数过滤器" +msgstr "计数过滤条件" #: frappe/public/js/frappe/form/dashboard.js:509 msgid "Count of linked documents" @@ -5685,7 +5742,7 @@ msgstr "计数器" msgid "Country" msgstr "国家" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:130 msgid "Country Code Required" msgstr "需要国家代码" @@ -5697,7 +5754,7 @@ msgstr "国家名称" #. Label of the county (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "County" -msgstr "县/郡" +msgstr "县" #: frappe/public/js/frappe/utils/number_systems.js:23 #: frappe/public/js/frappe/utils/number_systems.js:45 @@ -5717,7 +5774,7 @@ msgstr "贷方" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1263 +#: frappe/public/js/frappe/views/reports/query_report.js:1264 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" @@ -5731,13 +5788,13 @@ msgstr "创建并继续" msgid "Create Address" msgstr "创建地址" -#: frappe/public/js/frappe/views/reports/query_report.js:186 -#: frappe/public/js/frappe/views/reports/query_report.js:231 +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" -msgstr "创建卡片" +msgstr "创建数字卡" -#: frappe/public/js/frappe/views/reports/query_report.js:284 -#: frappe/public/js/frappe/views/reports/query_report.js:1190 +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1191 msgid "Create Chart" msgstr "创建图表" @@ -5748,7 +5805,7 @@ msgstr "创建子文档类型" #. Label of the create_contact (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Create Contacts from Incoming Emails" -msgstr "从收件邮件创建联系人" +msgstr "基于收到的邮件创建联系人" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -5778,7 +5835,7 @@ msgstr "新建" #: frappe/core/doctype/doctype/doctype_list.js:100 msgid "Create New DocType" -msgstr "新建文档类型" +msgstr "创建新单据类型" #: frappe/public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" @@ -5786,7 +5843,7 @@ msgstr "新建看板面板" #: frappe/core/doctype/user/user.js:270 msgid "Create User Email" -msgstr "创建用户邮箱" +msgstr "创建用户电子邮件" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 msgid "Create a New Format" @@ -5802,7 +5859,7 @@ msgstr "新建..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" -msgstr "新建记录" +msgstr "新建一笔记录" #: frappe/public/js/frappe/form/controls/link.js:311 #: frappe/public/js/frappe/form/controls/link.js:313 @@ -5816,32 +5873,27 @@ msgstr "新建{0}" msgid "Create a {0} Account" msgstr "创建{0}账户" -#. Description of a DocType -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Create and send emails to a specific group of subscribers periodically." -msgstr "定期创建并发送邮件给特定订阅者群组。" - #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" -msgstr "创建或编辑打印格式" +msgstr "创建或修改打印格式" #: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" -msgstr "创建或编辑工作流" +msgstr "创建或修改工作流" #: frappe/public/js/frappe/list/list_view.js:504 msgid "Create your first {0}" -msgstr "创建您的首个{0}" +msgstr "新建 {0}" #: frappe/workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." -msgstr "使用工作流构建器可视化创建您的工作流。" +msgstr "可视化拖拽创建工作流" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/views/file/file_view.js:337 msgid "Created" -msgstr "已创建" +msgstr "创建" #. Label of the created_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json @@ -5857,7 +5909,7 @@ msgstr "创建人" #: frappe/workflow/doctype/workflow/workflow.py:64 msgid "Created Custom Field {0} in {1}" -msgstr "在{1}中创建了自定义字段{0}" +msgstr "在{1}创建了自定义字段{0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 #: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 @@ -5870,7 +5922,7 @@ msgstr "创建于" #: frappe/public/js/frappe/desk.js:523 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" -msgstr "正在创建{0}" +msgstr "创建{0}" #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 msgid "Creation of this document is only permitted in developer mode." @@ -5881,7 +5933,7 @@ msgstr "仅允许在开发者模式下创建此文档。" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "Cron" +msgstr "自定义频率(Cron)" #. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' #. Label of the cron_format (Data) field in DocType 'Server Script' @@ -5896,19 +5948,19 @@ msgstr "Cron频率的作业类型需要Cron格式。" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 msgid "Crop" -msgstr "裁剪" +msgstr "裁切" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Down" -msgstr "Ctrl + 下箭头" +msgstr "按Ctrl +向下" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Up" -msgstr "Ctrl + 上箭头" +msgstr "按Ctrl +向上" #: frappe/templates/includes/comments/comments.html:32 msgid "Ctrl+Enter to add comment" -msgstr "Ctrl+Enter添加评论" +msgstr "Ctrl + Enter 添加评论" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -5970,7 +6022,7 @@ msgstr "当前状态" #: frappe/public/js/frappe/form/form_viewers.js:5 msgid "Currently Viewing" -msgstr "当前查看" +msgstr "正在查看" #. Label of the custom (Check) field in DocType 'DocType Action' #. Label of the custom (Check) field in DocType 'DocType Link' @@ -6003,26 +6055,26 @@ msgstr "自定义" #. Label of the custom_base_url (Check) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Custom Base URL" -msgstr "自定义基础URL" +msgstr "自定义基准网址" #. Label of the custom_block_name (Link) field in DocType 'Workspace Custom #. Block' #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Custom Block Name" -msgstr "自定义区块名称" +msgstr "自定义HTML块" #. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' #. Label of the custom_blocks (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Custom Blocks" -msgstr "自定义区块" +msgstr "自定义块" #. Label of the css (Code) field in DocType 'Print Format' #. Label of the custom_css (Code) field in DocType 'Web Form' #: frappe/printing/doctype/print_format/print_format.json #: frappe/website/doctype/web_form/web_form.json msgid "Custom CSS" -msgstr "自定义CSS" +msgstr "自定义样式" #. Label of the custom_configuration_section (Section Break) field in DocType #. 'Number Card' @@ -6038,12 +6090,12 @@ msgstr "自定义分隔符" #. Name of a DocType #: frappe/core/doctype/custom_docperm/custom_docperm.json msgid "Custom DocPerm" -msgstr "自定义文档权限" +msgstr "自定义单据权限" #. Label of the custom_select_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Custom Document Types (Select Permission)" -msgstr "自定义文档类型(选择权限)" +msgstr "被授权链接的单据类型" #: frappe/core/doctype/user_type/user_type.py:105 msgid "Custom Document Types Limit Exceeded" @@ -6066,11 +6118,11 @@ msgstr "自定义字段{0}由管理员创建,仅能通过管理员账户删除 #: frappe/custom/doctype/custom_field/custom_field.py:277 msgid "Custom Fields can only be added to a standard DocType." -msgstr "自定义字段只能添加到标准文档类型。" +msgstr "自定义字段只能添加到标准DocType。" #: frappe/custom/doctype/custom_field/custom_field.py:274 msgid "Custom Fields cannot be added to core DocTypes." -msgstr "核心文档类型不可添加自定义字段。" +msgstr "自定义字段无法添加到核心DocType。" #. Label of the custom_footer_section (Section Break) field in DocType 'Website #. Settings' @@ -6102,7 +6154,7 @@ msgstr "自定义HTML" #. Name of a DocType #: frappe/desk/doctype/custom_html_block/custom_html_block.json msgid "Custom HTML Block" -msgstr "自定义HTML区块" +msgstr "自定义HTML块" #. Label of the custom_html_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -6158,16 +6210,20 @@ msgstr "自定义SCSS" #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Custom Sidebar Menu" -msgstr "自定义侧边栏菜单" +msgstr "自定义工具栏菜单" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Custom Translation" -msgstr "自定义翻译" +msgstr "翻译定制" #: frappe/custom/doctype/custom_field/custom_field.py:423 msgid "Custom field renamed to {0} successfully." -msgstr "自定义字段成功重命名为{0}。" +msgstr "已成功将自定义字段更名为{0}" + +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' @@ -6186,7 +6242,7 @@ msgstr "自定义?" #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_form/web_form.json msgid "Customization" -msgstr "自定义" +msgstr "定制" #: frappe/public/js/frappe/views/workspace/workspace.js:358 msgid "Customizations Discarded" @@ -6194,27 +6250,27 @@ msgstr "已放弃自定义" #: frappe/custom/doctype/customize_form/customize_form.js:465 msgid "Customizations Reset" -msgstr "重置自定义" +msgstr "自定义重置" #: frappe/modules/utils.py:96 msgid "Customizations for {0} exported to:
{1}" -msgstr "{0}的自定义项已导出至:
{1}" +msgstr "{0}的自定义已导出到:
{1}" #: frappe/printing/page/print/print.js:171 #: frappe/public/js/frappe/form/templates/print_layout.html:39 -#: frappe/public/js/frappe/form/toolbar.js:597 +#: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" -msgstr "自定义" +msgstr "定制" -#: frappe/public/js/frappe/list/list_view.js:1802 +#: frappe/public/js/frappe/list/list_view.js:1800 msgctxt "Button in list view menu" msgid "Customize" msgstr "自定义" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" -msgstr "自定义子表" +msgstr "定制子表" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 msgid "Customize Dashboard" @@ -6226,9 +6282,9 @@ msgstr "自定义仪表板" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 msgid "Customize Form" -msgstr "自定义表单" +msgstr "定制表单" #: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" @@ -6237,23 +6293,23 @@ msgstr "自定义表单 - {0}" #. Name of a DocType #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Customize Form Field" -msgstr "自定义表单字段" +msgstr "定制表单字段" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Customize properties, naming, fields and more for standard doctypes" -msgstr "为标准文档类型自定义属性、命名、字段等" +msgstr "为标准单据类型定制属性,编号方式,字段及更多" #: frappe/public/js/frappe/views/file/file_view.js:144 msgid "Cut" -msgstr "剪切" +msgstr "切" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" -msgstr "青色" +msgstr "蓝绿色" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' @@ -6267,7 +6323,7 @@ msgstr "删除" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "DESC" -msgstr "降序" +msgstr "倒序" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -6298,11 +6354,11 @@ msgstr "草稿" #: frappe/public/js/frappe/utils/common.js:398 #: frappe/website/report/website_analytics/website_analytics.js:23 msgid "Daily" -msgstr "每日" +msgstr "每天" #: frappe/templates/emails/upcoming_events.html:8 msgid "Daily Event Digest is sent for Calendar Events where reminders are set." -msgstr "每日事件摘要将发送给已设置提醒的日历事件。" +msgstr "如果设置了日历事件提醒会发送每日事件摘要。" #: frappe/desk/doctype/event/event.py:100 msgid "Daily Events should finish on the Same Day." @@ -6328,7 +6384,7 @@ msgstr "危险" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Dark" -msgstr "暗色" +msgstr "深色" #. Label of the dark_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -6352,9 +6408,9 @@ msgstr "暗色主题" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 -#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" -msgstr "仪表板" +msgstr "数据面板" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6362,7 +6418,7 @@ msgstr "仪表板" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" -msgstr "仪表板图表" +msgstr "统计图表" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json @@ -6372,38 +6428,38 @@ msgstr "仪表板图表字段" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Dashboard Chart Link" -msgstr "仪表板图表链接" +msgstr "统计图表链接" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Dashboard Chart Source" -msgstr "仪表板图表源" +msgstr "统计图表数据源" #. Name of a role #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" -msgstr "仪表板管理员" +msgstr "数据面板管理员" #. Label of the dashboard_name (Data) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "仪表板名称" +msgstr "统计图表名称" #. Name of a DocType #: frappe/desk/doctype/dashboard_settings/dashboard_settings.json msgid "Dashboard Settings" -msgstr "仪表板设置" +msgstr "数据面板设置" #: frappe/public/js/frappe/list/base_list.js:204 msgid "Dashboard View" -msgstr "仪表板视图" +msgstr "数据面板视图" #. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Dashboards" -msgstr "仪表板" +msgstr "数据面板" #. Label of a Card Break in the Tools Workspace #. Label of the data (Code) field in DocType 'Deleted Document' @@ -6483,12 +6539,12 @@ msgstr "数据库进程" #: frappe/public/js/frappe/doctype/index.js:38 msgid "Database Row Size Utilization" -msgstr "数据库行大小利用率" +msgstr "数据库表行空间利用率" #. Name of a report #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" -msgstr "数据库表存储使用情况" +msgstr "数据库表空间使用量报表" #: frappe/custom/doctype/customize_form/customize_form.py:248 msgid "Database Table Row Size Limit" @@ -6496,7 +6552,7 @@ msgstr "数据库表行大小限制" #: frappe/public/js/frappe/doctype/index.js:40 msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." -msgstr "数据库表行大小利用率: {0}%,这将限制可添加的字段数量。" +msgstr "数据库表每行空间利用率:{0}%,利用率影响可以添加的字段数" #. Label of the database_version (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -6519,7 +6575,6 @@ msgstr "数据库版本" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/report/todo/todo.py:38 -#: frappe/email/doctype/newsletter/newsletter.js:109 #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" @@ -6545,15 +6600,15 @@ msgstr "日期范围" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Date and Number Format" -msgstr "日期与数字格式" +msgstr "日期和数字格式" #: frappe/public/js/frappe/form/controls/date.js:247 msgid "Date {0} must be in format: {1}" -msgstr "日期{0}必须符合格式: {1}" +msgstr "日期{0}必须采用格式:{1}" #: frappe/utils/password_strength.py:129 msgid "Dates are often easy to guess." -msgstr "日期通常容易被猜中。" +msgstr "日期往往容易被猜中。" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -6568,7 +6623,7 @@ msgstr "日期通常容易被猜中。" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Datetime" -msgstr "日期时间" +msgstr "时间日期" #. Label of the day (Select) field in DocType 'Assignment Rule Day' #. Label of the day (Select) field in DocType 'Auto Repeat Day' @@ -6576,27 +6631,32 @@ msgstr "日期时间" #: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json #: frappe/public/js/frappe/views/calendar/calendar.js:277 msgid "Day" -msgstr "日" +msgstr "天" #. Label of the day_of_week (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Day of Week" msgstr "星期几" +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "天" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days After" -msgstr "之后天数" +msgstr "参考日期后" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before" -msgstr "之前天数" +msgstr "参考日期前" #. Label of the days_in_advance (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Days Before or After" -msgstr "之前或之后天数" +msgstr "天数(前或后)" #: frappe/public/js/frappe/request.js:252 msgid "Deadlock Occurred" @@ -6604,20 +6664,20 @@ msgstr "发生死锁" #: frappe/templates/emails/password_reset.html:1 msgid "Dear" -msgstr "尊敬的" +msgstr "亲爱的" #: frappe/templates/emails/administrator_logged_in.html:1 msgid "Dear System Manager," -msgstr "尊敬的系统管理员," +msgstr "亲爱的系统管理员," #: frappe/templates/emails/account_deletion_notification.html:1 #: frappe/templates/emails/delete_data_confirmation.html:1 msgid "Dear User," -msgstr "尊敬的用户," +msgstr "亲爱的用户," #: frappe/templates/emails/download_data.html:1 msgid "Dear {0}" -msgstr "尊敬的{0}" +msgstr "亲爱的{0}" #. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json @@ -6650,13 +6710,13 @@ msgstr "默认" #: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" -msgstr "默认地址模板不可删除" +msgstr "默认地址模板不能删除" #. Label of the default_amend_naming (Select) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Amendment Naming" -msgstr "默认修订命名" +msgstr "默认修订后单据编号方式" #. Label of the default_app (Select) field in DocType 'System Settings' #. Label of the default_app (Select) field in DocType 'User' @@ -6680,12 +6740,12 @@ msgstr "默认收件箱" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:224 msgid "Default Incoming" -msgstr "默认入站" +msgstr "默认收件箱" #. Label of the is_default (Check) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Default Letter Head" -msgstr "默认信头" +msgstr "默认打印表头" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -6694,13 +6754,13 @@ msgstr "默认信头" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Default Naming" -msgstr "默认命名" +msgstr "默认单据编号规则" #. Label of the default_outgoing (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:232 msgid "Default Outgoing" -msgstr "默认出站" +msgstr "默认外发" #. Label of the default_portal_home (Data) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json @@ -6727,15 +6787,15 @@ msgstr "默认重定向URI" #. Label of the default_role (Link) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Default Role at Time of Signup" -msgstr "注册时的默认角色" +msgstr "新注册用户默认角色" #: frappe/email/doctype/email_account/email_account_list.js:16 msgid "Default Sending" -msgstr "默认发送" +msgstr "默认发送账号" #: frappe/email/doctype/email_account/email_account_list.js:7 msgid "Default Sending and Inbox" -msgstr "默认发送与收件" +msgstr "默认发送和收件账号" #. Label of the sort_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -6745,7 +6805,7 @@ msgstr "默认排序字段" #. Label of the sort_order (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Default Sort Order" -msgstr "默认排序顺序" +msgstr "默认排序" #. Label of the field (Data) field in DocType 'Print Format Field Template' #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json @@ -6800,12 +6860,12 @@ msgstr "{0}的默认值必须在选项列表中。" #: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "默认{0}" +msgstr "默认 {0}" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Default: \"Contact Us\"" -msgstr "默认: \"联系我们\"" +msgstr "默认:“联系我们”" #. Name of a DocType #: frappe/core/doctype/defaultvalue/defaultvalue.json @@ -6817,7 +6877,7 @@ msgstr "默认值" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "默认设置" +msgstr "默认" #: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" @@ -6826,17 +6886,17 @@ msgstr "默认设置已更新" #. Description of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Defines actions on states and the next step and allowed roles." -msgstr "定义状态相关操作、下一步骤及允许的角色。" +msgstr "定义切换到工作流状态的操作,下一个状态和被允许的角色。" #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." -msgstr "定义文档的工作流状态和规则。" +msgstr "定义单据工作流状态和规则。" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delayed" -msgstr "延迟" +msgstr "已逾期" #. Label of the delete (Check) field in DocType 'Custom DocPerm' #. Label of the delete (Check) field in DocType 'DocPerm' @@ -6847,15 +6907,16 @@ msgstr "延迟" #: frappe/core/doctype/user_permission/user_permission_list.js:189 #: frappe/public/js/frappe/form/footer/form_timeline.js:626 #: frappe/public/js/frappe/form/grid.js:66 -#: frappe/public/js/frappe/form/toolbar.js:461 +#: frappe/public/js/frappe/form/toolbar.js:464 #: frappe/public/js/frappe/views/reports/report_view.js:1740 #: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:282 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "删除" -#: frappe/public/js/frappe/list/list_view.js:2027 +#: frappe/public/js/frappe/list/list_view.js:2025 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "删除" @@ -6891,7 +6952,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "删除标签页" -#: frappe/public/js/frappe/views/reports/query_report.js:934 +#: frappe/public/js/frappe/views/reports/query_report.js:935 msgid "Delete and Generate New" msgstr "删除并生成新项" @@ -6902,7 +6963,7 @@ msgstr "删除列" #: frappe/public/js/frappe/form/footer/form_timeline.js:741 msgid "Delete comment?" -msgstr "确认删除评论?" +msgstr "删除评论?" #: frappe/public/js/form_builder/components/Section.vue:205 msgctxt "Button text" @@ -6931,14 +6992,14 @@ msgstr "删除标签页" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 msgid "Delete this record to allow sending to this email address" -msgstr "删除此记录以允许向该电子邮件地址发送" +msgstr "删除此记录允许发送此邮件地址" -#: frappe/public/js/frappe/list/list_view.js:2032 +#: frappe/public/js/frappe/list/list_view.js:2030 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "永久删除 {0} 项?" -#: frappe/public/js/frappe/list/list_view.js:2038 +#: frappe/public/js/frappe/list/list_view.js:2036 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "永久删除 {0} 项?" @@ -6957,38 +7018,38 @@ msgstr "已删除" #. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "已删除文档类型" +msgstr "源单据类型" #. Name of a DocType #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Document" -msgstr "已删除文档" +msgstr "已删除单据(垃圾桶)" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Deleted Documents" -msgstr "已删除文档" +msgstr "已删除单据" #. Label of the deleted_name (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted Name" -msgstr "已删除名称" +msgstr "删除名称" #: frappe/desk/reportview.py:606 msgid "Deleted all documents successfully" -msgstr "成功删除所有文档" +msgstr "已成功删除选择的单据" #: frappe/desk/reportview.py:583 msgid "Deleting {0}" -msgstr "正在删除 {0}" +msgstr "删除{0}" #: frappe/public/js/frappe/list/bulk_operations.js:202 msgid "Deleting {0} records..." -msgstr "正在删除 {0} 条记录..." +msgstr "删除 {0} 笔单据..." #: frappe/public/js/frappe/model/model.js:692 msgid "Deleting {0}..." -msgstr "正在删除 {0}..." +msgstr "删除 {0} 笔单据..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' @@ -7017,7 +7078,7 @@ msgstr "分隔符必须为单个字符" #. Label of the delivery_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delivery Status" -msgstr "交付状态" +msgstr "交货状态" #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -7035,7 +7096,7 @@ msgstr "部门" #: frappe/public/js/frappe/widgets/widget_dialog.js:323 #: frappe/www/attribution.html:29 msgid "Dependencies" -msgstr "依赖项" +msgstr "依赖关系" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Dependencies & Licenses" @@ -7046,15 +7107,15 @@ msgstr "依赖项与许可证" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Depends On" -msgstr "依赖于" +msgstr "取决于" #: frappe/public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "子代节点" +msgstr "后裔" #: frappe/public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" -msgstr "子代节点(包含自身)" +msgstr "子节点(含本节点)" #. Label of the description (Small Text) field in DocType 'Assignment Rule' #. Label of the description (Small Text) field in DocType 'Reminder' @@ -7117,22 +7178,22 @@ msgstr "用于向用户说明即将执行的操作的描述" #. Label of the designation (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Designation" -msgstr "职务" +msgstr "职位" #. Label of the desk_access (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Desk Access" -msgstr "工作台访问权限" +msgstr "桌面访问" #. Label of the desk_settings_section (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Desk Settings" -msgstr "工作台设置" +msgstr "桌面设置" #. Label of the desk_theme (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Desk Theme" -msgstr "工作台主题" +msgstr "桌面主题" #. Name of a role #: frappe/automation/doctype/reminder/reminder.json @@ -7162,13 +7223,14 @@ msgstr "工作台主题" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json #: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json #: frappe/website/doctype/utm_campaign/utm_campaign.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Desk User" -msgstr "工作台用户" +msgstr "桌面用户" #. Name of a DocType #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -7177,7 +7239,7 @@ msgstr "桌面图标" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 msgid "Desktop Icon already exists" -msgstr "桌面图标已存在" +msgstr "桌面图标已经存在" #. Label of the details_tab (Tab Break) field in DocType 'Module Def' #. Label of the details (Code) field in DocType 'Scheduled Job Log' @@ -7193,7 +7255,7 @@ msgstr "桌面图标已存在" #: frappe/public/js/frappe/form/layout.js:153 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" -msgstr "详情" +msgstr "详细信息" #. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -7202,11 +7264,11 @@ msgstr "检测CSV类型" #: frappe/core/page/permission_manager/permission_manager.js:494 msgid "Did not add" -msgstr "未添加" +msgstr "没有添加" #: frappe/core/page/permission_manager/permission_manager.js:388 msgid "Did not remove" -msgstr "未移除" +msgstr "没有删除" #: frappe/public/js/frappe/utils/diffview.js:57 msgid "Diff" @@ -7215,7 +7277,7 @@ msgstr "差异" #. Description of the 'States' (Section Break) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." -msgstr "该文件可以存在于不同的“状态”。如“打开”、“待批准”等。" +msgstr "单据允许多种不同状态,例如“处理中”,“待审批”等。" #. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -7243,7 +7305,7 @@ msgstr "禁用自动时效性过滤器" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Change Log Notification" -msgstr "禁用变更日志通知" +msgstr "禁止系统更新日志通知" #. Label of the disable_comment_count (Check) field in DocType 'List View #. Settings' @@ -7254,7 +7316,7 @@ msgstr "禁用评论计数" #. Label of the disable_comments (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Disable Comments" -msgstr "禁用评论" +msgstr "禁止评论" #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' @@ -7271,7 +7333,7 @@ msgstr "禁用计数" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Document Sharing" -msgstr "禁用文档共享" +msgstr "禁用单据表单/详情界面左侧栏分享功能" #. Label of the disable_likes (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -7285,40 +7347,40 @@ msgstr "禁用报表" #. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Disable SMTP server authentication" -msgstr "禁用SMTP服务器身份验证" +msgstr "禁用SMTP服务器认证" #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Sidebar Stats" -msgstr "禁用侧边栏统计" +msgstr "禁用补充工具栏统计信息" #: frappe/website/doctype/website_settings/website_settings.js:146 msgid "Disable Signup for your site" -msgstr "禁用站点注册" +msgstr "你的站点禁止注册" #. Label of the disable_standard_email_footer (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "禁用标准邮件页脚" +msgstr "禁用标准电子邮件页脚" #. Label of the disable_system_update_notification (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable System Update Notification" -msgstr "禁用系统更新通知" +msgstr "禁止系统更新通知" #. Label of the disable_user_pass_login (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Username/Password Login" -msgstr "禁用用户名/密码登录" +msgstr "禁止用户密码登录" #. Label of the disable_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Disable signups" -msgstr "禁用注册" +msgstr "禁用自助注册" #. Label of the disabled (Check) field in DocType 'Assignment Rule' #. Label of the disabled (Check) field in DocType 'Auto Repeat' @@ -7345,22 +7407,22 @@ msgstr "禁用注册" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/templates/address_list.html:35 -#: frappe/public/js/frappe/model/indicator.js:108 -#: frappe/public/js/frappe/model/indicator.js:115 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 #: frappe/website/doctype/blogger/blogger.json msgid "Disabled" -msgstr "已禁用" +msgstr "禁用" #: frappe/email/doctype/email_account/email_account.js:300 msgid "Disabled Auto Reply" msgstr "禁用自动回复" -#: frappe/public/js/frappe/form/toolbar.js:335 +#: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 #: frappe/public/js/frappe/web_form/web_form.js:187 msgid "Discard" -msgstr "放弃" +msgstr "丢弃" #: frappe/website/doctype/web_form/templates/web_form.html:44 msgctxt "Button in web form" @@ -7370,7 +7432,7 @@ msgstr "放弃" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "放弃" +msgstr "丢弃" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" @@ -7403,7 +7465,7 @@ msgstr "讨论主题" #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" -msgstr "关闭" +msgstr "忽略" #: frappe/public/js/frappe/widgets/onboarding_widget.js:572 msgctxt "Stop showing the onboarding widget." @@ -7422,12 +7484,12 @@ msgstr "显示" #. Label of the depends_on (Code) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Display Depends On" -msgstr "显示条件依赖" +msgstr "是否显示先决条件" #. Label of the depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Display Depends On (JS)" -msgstr "显示条件依赖(JS)" +msgstr "显示先决条件(JS)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 msgid "Divider" @@ -7446,47 +7508,47 @@ msgstr "如果系统中不存在该邮箱用户,则不创建新用户" #: frappe/public/js/frappe/form/grid.js:1193 msgid "Do not edit headers which are preset in the template" -msgstr "请勿修改模板中预设的标题" +msgstr "不要编辑模板中预设的标题" #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" -msgstr "是否继续操作?" +msgstr "是否继续?" #: frappe/public/js/frappe/form/form.js:958 msgid "Do you want to cancel all linked documents?" -msgstr "是否取消所有关联文档?" +msgstr "取消所有关联的单据?" #. Label of the webhook_docevent (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Event" -msgstr "文档事件" +msgstr "单据事件" #. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Doc Events" -msgstr "文档事件" +msgstr "单据事件" #. Label of the doc_status (Select) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Doc Status" -msgstr "文档状态" +msgstr "单据状态" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocField" -msgstr "文档字段" +msgstr "单据字段" #. Name of a DocType #: frappe/core/doctype/docperm/docperm.json msgid "DocPerm" -msgstr "文档权限" +msgstr "单据权限" #. Name of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "DocShare" -msgstr "文档共享" +msgstr "单据分享" #: frappe/workflow/doctype/workflow/workflow.js:264 msgid "DocStatus of the following states have changed:
{0}
\n" @@ -7516,6 +7578,7 @@ msgstr "以下状态的文档状态已更改:
{0}
\n" #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the webhook_doctype (Link) field in DocType 'Webhook' #. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/data_export/exporter.py:26 @@ -7538,7 +7601,7 @@ msgstr "以下状态的文档状态已更改:
{0}
\n" #: frappe/public/js/frappe/widgets/widget_dialog.js:164 #: frappe/website/doctype/website_slideshow/website_slideshow.js:18 msgid "DocType" -msgstr "DocType" +msgstr "单据类型" #: frappe/core/doctype/doctype/doctype.py:1577 msgid "DocType {0} provided for the field {1} must have atleast one Link field" @@ -7549,37 +7612,37 @@ msgstr "字段 {1} 指定的DocType {0} 必须至少包含一个 #: frappe/core/doctype/doctype_action/doctype_action.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Action" -msgstr "文档类型操作" +msgstr "单据操作" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #. Label of the doctype_event (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "DocType Event" -msgstr "文档类型事件" +msgstr "单据事件" #. Name of a DocType #: frappe/custom/doctype/doctype_layout/doctype_layout.json msgid "DocType Layout" -msgstr "文档类型布局" +msgstr "单据类型屏幕布局" #. Name of a DocType #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json msgid "DocType Layout Field" -msgstr "文档类型布局字段" +msgstr "单据类型屏幕布局字段" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/doctype_link/doctype_link.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType Link" -msgstr "文档类型链接" +msgstr "单据链接" #. Name of a DocType #. Option for the 'Applied On' (Select) field in DocType 'Property Setter' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "DocType State" -msgstr "文档类型状态" +msgstr "单据类型状态" #. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json @@ -7589,20 +7652,20 @@ msgstr "文档类型视图" #: frappe/core/doctype/doctype/doctype.py:656 msgid "DocType can not be merged" -msgstr "文档类型不可合并" +msgstr "单据类型不能合并" #: frappe/core/doctype/doctype/doctype.py:650 msgid "DocType can only be renamed by Administrator" -msgstr "仅管理员可重命名文档类型" +msgstr "只能由管理员修改单据类型名称" #. Description of a DocType #: frappe/core/doctype/doctype/doctype.json msgid "DocType is a Table / Form in the application." -msgstr "文档类型是应用中的表/表单" +msgstr "单据类型在应用中里是一个表/表单。" #: frappe/integrations/doctype/webhook/webhook.py:79 msgid "DocType must be Submittable for the selected Doc Event" -msgstr "所选文档事件要求文档类型必须为可提交类型" +msgstr "DocType必须为所选Doc事件提交" #: frappe/client.py:403 msgid "DocType must be a string" @@ -7619,7 +7682,7 @@ msgstr "日志设置不支持该文档类型" #. Description of the 'Document Type' (Link) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "DocType on which this Workflow is applicable." -msgstr "该工作流适用的文档类型" +msgstr "此工作流适用的单据类型。" #: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" @@ -7645,7 +7708,7 @@ msgstr "文档类型不可修改,请使用 {0}" #: frappe/email/doctype/document_follow/document_follow.json #: frappe/public/js/frappe/widgets/widget_dialog.js:682 msgid "Doctype" -msgstr "文档类型" +msgstr "单据类型" #: frappe/core/doctype/doctype/doctype.py:1022 msgid "Doctype name is limited to {0} characters ({1})" @@ -7653,7 +7716,7 @@ msgstr "文档类型名称长度限制为 {0} 字符(当前:{1})" #: frappe/public/js/frappe/list/bulk_operations.js:3 msgid "Doctype required" -msgstr "需指定文档类型" +msgstr "Doctype需要" #. Label of the reference_name (Data) field in DocType 'Milestone' #. Label of the document (Dynamic Link) field in DocType 'Audit Trail' @@ -7668,7 +7731,7 @@ msgstr "需指定文档类型" #: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json #: frappe/public/js/frappe/views/render_preview.js:42 msgid "Document" -msgstr "文档" +msgstr "单据" #. Label of the actions (Table) field in DocType 'DocType' #. Label of the document_actions_section (Section Break) field in DocType @@ -7676,7 +7739,7 @@ msgstr "文档" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Actions" -msgstr "文档操作" +msgstr "单据操作" #. Label of the document_follow_notifications_section (Section Break) field in #. DocType 'User' @@ -7684,22 +7747,22 @@ msgstr "文档操作" #: frappe/core/doctype/user/user.json #: frappe/email/doctype/document_follow/document_follow.json msgid "Document Follow" -msgstr "文档关注" +msgstr "关注单据" #: frappe/desk/form/document_follow.py:94 msgid "Document Follow Notification" -msgstr "文档关注通知" +msgstr "单据关注通知" #. Label of the document_name (Data) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Document Link" -msgstr "文档链接" +msgstr "单据关联" #. Label of the section_break_12 (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Document Linking" -msgstr "文档链接" +msgstr "单据关联" #. Label of the links (Table) field in DocType 'DocType' #. Label of the document_links_section (Section Break) field in DocType @@ -7707,7 +7770,7 @@ msgstr "文档链接" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Document Links" -msgstr "文档链接" +msgstr "单据关联" #: frappe/core/doctype/doctype/doctype.py:1211 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" @@ -7740,7 +7803,7 @@ msgstr "文档链接第 #{0} 行:内部链接必须指定表字段名" #: frappe/email/doctype/document_follow/document_follow.json #: frappe/public/js/frappe/form/form_tour.js:62 msgid "Document Name" -msgstr "文档名称" +msgstr "单据编号" #: frappe/client.py:406 msgid "Document Name must be a string" @@ -7749,21 +7812,21 @@ msgstr "文档名称必须为字符串" #. Name of a DocType #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" -msgstr "文档命名规则" +msgstr "单据编号规则" #. Name of a DocType #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" -msgstr "文档命名规则条件" +msgstr "单据编号规则条件" #. Name of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" -msgstr "文档命名设置" +msgstr "单据编号模板设置" -#: frappe/model/document.py:476 +#: frappe/model/document.py:478 msgid "Document Queued" -msgstr "文档已加入队列" +msgstr "单据排队" #: frappe/core/doctype/deleted_document/deleted_document_list.js:38 msgid "Document Restoration Summary" @@ -7771,7 +7834,7 @@ msgstr "文档恢复摘要" #: frappe/core/doctype/deleted_document/deleted_document.py:68 msgid "Document Restored" -msgstr "文档已恢复" +msgstr "单据恢复" #: frappe/public/js/frappe/widgets/onboarding_widget.js:354 #: frappe/public/js/frappe/widgets/onboarding_widget.js:396 @@ -7784,25 +7847,25 @@ msgstr "文档已保存" #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Document Share" -msgstr "文档共享" +msgstr "文档分享" #. Name of a DocType #: frappe/core/doctype/document_share_key/document_share_key.json msgid "Document Share Key" -msgstr "文档共享密钥" +msgstr "单据分享码" #. Label of the document_share_key_expiry (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Document Share Key Expiry (in Days)" -msgstr "文档共享密钥有效期(天)" +msgstr "单据共享超时(天)" #. Name of a report #. Label of a Link in the Users Workspace #: frappe/core/report/document_share_report/document_share_report.json #: frappe/core/workspace/users/users.json msgid "Document Share Report" -msgstr "文档共享报表" +msgstr "单据分享报表" #. Label of the states (Table) field in DocType 'DocType' #. Label of the document_states_section (Section Break) field in DocType @@ -7812,12 +7875,12 @@ msgstr "文档共享报表" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document States" -msgstr "文档状态" +msgstr "单据状态" #: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 #: frappe/public/js/frappe/model/model.js:137 msgid "Document Status" -msgstr "文档状态" +msgstr "单据状态" #. Label of the tag (Link) field in DocType 'Tag Link' #: frappe/desk/doctype/tag_link/tag_link.json @@ -7879,7 +7942,7 @@ msgstr "文档标题" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" -msgstr "文档类型" +msgstr "单据类型" #: frappe/desk/doctype/number_card/number_card.py:59 msgid "Document Type and Function are required to create a number card" @@ -7887,16 +7950,16 @@ msgstr "创建数字卡片需指定文档类型和功能" #: frappe/permissions.py:149 msgid "Document Type is not importable" -msgstr "该文档类型不可导入" +msgstr "凭证类型不可导入" #: frappe/permissions.py:145 msgid "Document Type is not submittable" -msgstr "该文档类型不可提交" +msgstr "单据类型不可提交" #. Label of the document_type (Link) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Document Type to Track" -msgstr "待跟踪文档类型" +msgstr "要跟踪的单据类型" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 msgid "Document Type {0} has been repeated." @@ -7905,7 +7968,7 @@ msgstr "文档类型 {0} 已重复" #. Label of the user_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types" -msgstr "文档类型" +msgstr "单据类型" #. Label of the select_doctypes (Table) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json @@ -7915,10 +7978,10 @@ msgstr "文档类型(仅选择权限)" #. Label of the section_break_2 (Section Break) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Document Types and Permissions" -msgstr "文档类型与权限" +msgstr "单据类型与权限" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1942 +#: frappe/model/document.py:1952 msgid "Document Unlocked" msgstr "文档已解锁" @@ -7940,7 +8003,7 @@ msgstr "文档处于草稿状态" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Document is only editable by users with role" -msgstr "仅具有指定角色的用户可编辑此文档" +msgstr "只有具有角色的用户才能编辑文档" #: frappe/core/doctype/communication/communication.js:182 msgid "Document not Relinked" @@ -7948,7 +8011,7 @@ msgstr "文档未重新链接" #: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 msgid "Document renamed from {0} to {1}" -msgstr "文档名称已从 {0} 更改为 {1}" +msgstr "已将单据编号(名称){0} 变更为 {1}" #: frappe/public/js/frappe/form/toolbar.js:164 msgid "Document renaming from {0} to {1} has been queued" @@ -7956,7 +8019,7 @@ msgstr "文档重命名(从 {0} 到 {1})已加入队列" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 msgid "Document type is required to create a dashboard chart" -msgstr "创建仪表盘图表需指定文档类型" +msgstr "创建数据面板图表需要单据类型" #: frappe/core/doctype/deleted_document/deleted_document.py:45 msgid "Document {0} Already Restored" @@ -7964,7 +8027,7 @@ msgstr "文档 {0} 已恢复" #: frappe/workflow/doctype/workflow_action/workflow_action.py:203 msgid "Document {0} has been set to state {1} by {2}" -msgstr "用户 {2} 已将文档 {0} 状态设为 {1}" +msgstr "单据{0}已被{2}设置为状态{1}" #: frappe/client.py:430 msgid "Document {0} {1} does not exist" @@ -7973,7 +8036,7 @@ msgstr "文档 {0} {1} 不存在" #. Label of the documentation (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Documentation Link" -msgstr "文档链接" +msgstr "帮助文档的链接" #. Label of the documentation_url (Data) field in DocType 'DocField' #. Label of the documentation_url (Data) field in DocType 'Module Onboarding' @@ -7984,7 +8047,7 @@ msgstr "文档URL" #: frappe/public/js/frappe/form/templates/form_dashboard.html:17 msgid "Documents" -msgstr "文档" +msgstr "单据" #: frappe/core/doctype/deleted_document/deleted_document_list.js:25 msgid "Documents restored successfully" @@ -8006,7 +8069,7 @@ msgstr "已恢复的文档" #: frappe/core/doctype/has_domain/has_domain.json #: frappe/email/doctype/email_account/email_account.json msgid "Domain" -msgstr "域" +msgstr "行业" #. Label of the domain_name (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json @@ -8016,18 +8079,18 @@ msgstr "域名" #. Name of a DocType #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domain Settings" -msgstr "域设置" +msgstr "行业设置" #. Label of the domains_html (HTML) field in DocType 'Domain Settings' #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Domains HTML" -msgstr "域HTML" +msgstr "域名HTML" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom #. Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "请勿对HTML标签(如<script>)或字符(如<或>)进行HTML编码,这些内容可能被有意使用" +msgstr "后台不进行HTML编码过滤,即可以直接使用HTML标签,如<SCRIPT>或者就像字符<或>" #: frappe/public/js/frappe/data_import/import_preview.js:272 msgid "Don't Import" @@ -8039,12 +8102,12 @@ msgstr "不导入" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Don't Override Status" -msgstr "不覆盖状态" +msgstr "不要覆盖状态" #. Label of the mute_emails (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Don't Send Emails" -msgstr "不发送邮件" +msgstr "不要发电子邮件" #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' #. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize @@ -8052,10 +8115,10 @@ msgstr "不发送邮件" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" -msgstr "请勿对HTML标签(如<script>)或字符(如<或>)进行编码,这些内容可能被有意使用" +msgstr "允许字段内容为原生html,即无须对<script>这样的 HTML 标签或者< 或 > 这样的字符进行编码/转义如& lt;" #: frappe/www/login.html:139 frappe/www/login.html:155 -#: frappe/www/update-password.html:57 +#: frappe/www/update-password.html:70 msgid "Don't have an account?" msgstr "没有账户?" @@ -8070,11 +8133,11 @@ msgstr "完成" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Donut" -msgstr "环形图" +msgstr "双层圆环图" #: frappe/public/js/form_builder/components/EditableInput.vue:43 msgid "Double click to edit label" -msgstr "双击编辑标签" +msgstr "双击修改标签" #: frappe/core/doctype/file/file.js:15 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 @@ -8109,7 +8172,7 @@ msgstr "下载链接" msgid "Download PDF" msgstr "下载PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:830 +#: frappe/public/js/frappe/views/reports/query_report.js:831 msgid "Download Report" msgstr "下载报表" @@ -8138,7 +8201,7 @@ msgstr "下载vCards" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" -msgstr "博士" +msgstr "借方" #: frappe/public/js/frappe/model/indicator.js:73 #: frappe/public/js/frappe/ui/filters/filter.js:538 @@ -8154,11 +8217,11 @@ msgstr "拖动" #: frappe/public/js/form_builder/components/Tabs.vue:189 msgid "Drag & Drop a section here from another tab" -msgstr "从其他标签页拖放节段至此" +msgstr "从另一个页签拖拽一个分区(段)到这里" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 msgid "Drag and drop files here or upload from" -msgstr "拖放文件至此或从以下位置上传" +msgstr "拖入文件或者从下方上传" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." @@ -8166,15 +8229,15 @@ msgstr "拖动列以排序。列宽按百分比设置,总宽度不得超过100 #: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 msgid "Drag elements from the sidebar to add. Drag them back to trash." -msgstr "从侧边栏拖动元素添加,拖回垃圾桶删除" +msgstr "通过从左边栏拖拽字段添加,拖拽到垃圾桶删除" #: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 msgid "Drag to add state" -msgstr "拖动添加状态" +msgstr "拖拽添加状态" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 msgid "Drop files here" -msgstr "拖放文件至此" +msgstr "拖拽文件到这儿" #. Label of the section_break_2 (Section Break) field in DocType 'Navbar #. Settings' @@ -8190,20 +8253,20 @@ msgstr "到期日" #. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Due Date Based On" -msgstr "到期日基准" +msgstr "到期日基于" #: frappe/public/js/frappe/form/grid_row_form.js:42 -#: frappe/public/js/frappe/form/toolbar.js:419 +#: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" -msgstr "重复项" +msgstr "复制" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" -msgstr "重复条目" +msgstr "重复记录" #: frappe/public/js/frappe/list/list_filter.js:144 msgid "Duplicate Filter Name" -msgstr "过滤器名称重复" +msgstr "过滤条件名称重复" #: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 msgid "Duplicate Name" @@ -8236,7 +8299,7 @@ msgstr "复制字段" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Duration" -msgstr "持续时间" +msgstr "时长(分)" #. Option for the 'Row Format' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -8260,7 +8323,7 @@ msgstr "动态过滤器JSON" #. 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Dynamic Filters Section" -msgstr "动态过滤器节段" +msgstr "动态过滤条件" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Name of a DocType @@ -8281,7 +8344,7 @@ msgstr "动态链接" #. 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Dynamic Report Filters" -msgstr "动态报表过滤器" +msgstr "动态报表过滤条件" #. Label of the dynamic_route (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json @@ -8295,7 +8358,7 @@ msgstr "动态模板" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "ESC" -msgstr "退出键" +msgstr "退出" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -8308,9 +8371,9 @@ msgstr "退出键" #: frappe/public/js/frappe/form/footer/form_timeline.js:677 #: frappe/public/js/frappe/form/templates/address_list.html:13 #: frappe/public/js/frappe/form/templates/contact_list.html:13 -#: frappe/public/js/frappe/form/toolbar.js:745 -#: frappe/public/js/frappe/views/reports/query_report.js:878 -#: frappe/public/js/frappe/views/reports/query_report.js:1724 +#: frappe/public/js/frappe/form/toolbar.js:748 +#: frappe/public/js/frappe/views/reports/query_report.js:879 +#: frappe/public/js/frappe/views/reports/query_report.js:1774 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 @@ -8322,7 +8385,7 @@ msgstr "退出键" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/list/list_view.js:2113 +#: frappe/public/js/frappe/list/list_view.js:2111 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "编辑" @@ -8343,7 +8406,7 @@ msgstr "在表单中编辑地址" #: frappe/templates/emails/auto_email_report.html:63 msgid "Edit Auto Email Report Settings" -msgstr "编辑自动邮件报告设置" +msgstr "修改自动电子邮件-报表设置" #: frappe/public/js/frappe/widgets/widget_dialog.js:38 msgid "Edit Chart" @@ -8357,11 +8420,11 @@ msgstr "编辑自定义块" msgid "Edit Custom HTML" msgstr "编辑自定义HTML" -#: frappe/public/js/frappe/form/toolbar.js:616 +#: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" -msgstr "编辑文档类型" +msgstr "修改单据类型" -#: frappe/public/js/frappe/list/list_view.js:1829 +#: frappe/public/js/frappe/list/list_view.js:1827 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "编辑文档类型" @@ -8369,11 +8432,11 @@ msgstr "编辑文档类型" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 #: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" -msgstr "编辑现有项" +msgstr "编辑" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 msgid "Edit Filters" -msgstr "编辑过滤器" +msgstr "编辑过滤条件" #: frappe/public/js/print_format_builder/PrintFormat.vue:29 msgid "Edit Footer" @@ -8385,7 +8448,7 @@ msgstr "编辑格式" #: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" -msgstr "编辑完整表单" +msgstr "全屏编辑" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 #: frappe/public/js/print_format_builder/Field.vue:83 @@ -8462,7 +8525,7 @@ msgstr "编辑 {0} 文档类型" #: frappe/printing/page/print_format_builder/print_format_builder.js:721 msgid "Edit to add content" -msgstr "点击编辑添加内容" +msgstr "编辑 添加内容" #: frappe/public/js/frappe/web_form/web_form.js:446 msgctxt "Button in web form" @@ -8471,12 +8534,12 @@ msgstr "编辑您的回复" #: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." -msgstr "使用工作流构建器可视化编辑工作流" +msgstr "使用工作流设计器可视化编辑工作流" #: frappe/public/js/frappe/views/reports/report_view.js:678 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" -msgstr "编辑 {0}" +msgstr "编辑{0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' @@ -8484,11 +8547,11 @@ msgstr "编辑 {0}" #: frappe/core/doctype/doctype/doctype_list.js:57 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" -msgstr "可编辑网格" +msgstr "可编辑表格" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Editing Row" -msgstr "正在编辑行" +msgstr "编辑行" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 @@ -8499,7 +8562,7 @@ msgstr "正在编辑 {0}" #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "例如:smsgateway.com/api/send_sms.cgi" +msgstr "例如:smsgateway.com/API/send_sms.cgi" #: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." @@ -8536,16 +8599,15 @@ msgstr "元素选择器" #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json -#: frappe/email/doctype/newsletter/newsletter.js:156 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:85 -#: frappe/public/js/frappe/form/toolbar.js:379 +#: frappe/public/js/frappe/form/toolbar.js:382 #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" -msgstr "电子邮件" +msgstr "邮件" #. Label of a Link in the Tools Workspace #. Label of the email_account (Link) field in DocType 'Communication' @@ -8563,7 +8625,7 @@ msgstr "电子邮件" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Email Account" -msgstr "电子邮件账户" +msgstr "电子邮箱帐号" #: frappe/email/doctype/email_account/email_account.py:343 msgid "Email Account Disabled." @@ -8572,11 +8634,11 @@ msgstr "电子邮件账户已禁用" #. Label of the email_account_name (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Email Account Name" -msgstr "电子邮件账户名称" +msgstr "电子邮箱帐号名" -#: frappe/core/doctype/user/user.py:738 +#: frappe/core/doctype/user/user.py:742 msgid "Email Account added multiple times" -msgstr "电子邮件账户重复添加" +msgstr "电子邮箱帐号已被多次添加" #: frappe/email/smtp.py:43 msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" @@ -8598,12 +8660,12 @@ msgstr "" #: frappe/www/complete_signup.html:11 frappe/www/login.html:184 #: frappe/www/login.html:216 msgid "Email Address" -msgstr "电子邮件地址" +msgstr "电子邮箱" #. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Email Address whose Google Contacts are to be synced." -msgstr "需同步Google联系人的电子邮件地址" +msgstr "要同步其Google通讯录的电子邮件地址。" #: frappe/email/doctype/email_group/email_group.js:43 msgid "Email Addresses" @@ -8614,27 +8676,25 @@ msgstr "电子邮件地址" #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Email Domain" -msgstr "电子邮件域名" +msgstr "收/发邮件服务器信息" #. Name of a DocType #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Email Flag Queue" -msgstr "邮件标记队列" +msgstr "电子邮件标志队列" #. Label of the email_footer_address (Small Text) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "邮件页脚地址" +msgstr "电子邮件地址页脚" #. Label of a Link in the Tools Workspace #. Name of a DocType #. Label of the email_group (Link) field in DocType 'Email Group Member' -#. Label of the email_group (Link) field in DocType 'Newsletter Email Group' #: frappe/automation/workspace/tools/tools.json #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json msgid "Email Group" msgstr "电子邮件组" @@ -8656,22 +8716,22 @@ msgstr "邮件标头" #: frappe/core/doctype/user_email/user_email.json #: frappe/email/doctype/email_rule/email_rule.json msgid "Email ID" -msgstr "电子邮件标识符" +msgstr "电子邮件" #. Label of the email_ids (Table) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Email IDs" -msgstr "电子邮件标识符集" +msgstr "邮箱" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" -msgstr "电子邮件ID" +msgstr "邮箱" #. Label of the email_inbox (Section Break) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Inbox" -msgstr "电子邮件收件箱" +msgstr "收件箱" #. Name of a DocType #: frappe/email/doctype/email_queue/email_queue.json @@ -8683,7 +8743,7 @@ msgstr "电子邮件队列" msgid "Email Queue Recipient" msgstr "电子邮件队列收件人" -#: frappe/email/queue.py:160 +#: frappe/email/queue.py:161 msgid "Email Queue flushing aborted due to too many failures." msgstr "由于过多失败,已中止电子邮件队列刷新操作。" @@ -8695,29 +8755,22 @@ msgstr "电子邮件队列记录。" #. Label of the email_reply_help (HTML) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Email Reply Help" -msgstr "电子邮件回复帮助" +msgstr "电邮答复帮助" #. Label of the email_retry_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Retry Limit" -msgstr "电子邮件重试次数限制" +msgstr "邮件重试次数限制" #. Name of a DocType #: frappe/email/doctype/email_rule/email_rule.json msgid "Email Rule" msgstr "电子邮件规则" -#. Label of the email_sent (Check) field in DocType 'Newsletter' #. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json msgid "Email Sent" -msgstr "已发送电子邮件" - -#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Email Sent At" -msgstr "电子邮件发送时间" +msgstr "邮件已发送" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8731,12 +8784,12 @@ msgstr "电子邮件发送时间" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email Settings" -msgstr "电子邮件设置" +msgstr "邮件设置" #. Label of the email_signature (Text Editor) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Email Signature" -msgstr "电子邮件签名" +msgstr "邮件签名" #. Label of the email_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -8754,7 +8807,7 @@ msgstr "电子邮件同步选项" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/public/js/frappe/views/communication.js:104 +#: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" msgstr "电子邮件模板" @@ -8762,37 +8815,37 @@ msgstr "电子邮件模板" #. DocType 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Email Threads on Assigned Document" -msgstr "分配文档上的电子邮件主题" +msgstr "被分派单据收到邮件" #. Label of the email_to (Small Text) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Email To" -msgstr "收件人" +msgstr "邮件收件人" #. Name of a DocType #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Email Unsubscribe" -msgstr "邮件退订" +msgstr "电子邮件退订" #: frappe/core/doctype/communication/communication.js:342 msgid "Email has been marked as spam" -msgstr "邮件已被标记为垃圾邮件" +msgstr "电子邮件已被标记为垃圾邮件" #: frappe/core/doctype/communication/communication.js:355 msgid "Email has been moved to trash" -msgstr "邮件已移至回收站" +msgstr "电子邮件已被移至垃圾桶" #: frappe/core/doctype/user/user.js:272 msgid "Email is mandatory to create User Email" msgstr "创建用户电子邮件时必须填写邮箱地址" -#: frappe/public/js/frappe/views/communication.js:816 +#: frappe/public/js/frappe/views/communication.js:819 msgid "Email not sent to {0} (unsubscribed / disabled)" -msgstr "未向{0}发送邮件(已退订/禁用)" +msgstr "电子邮件不会被发送到{0}(退订/禁用)" #: frappe/utils/oauth.py:163 msgid "Email not verified with {0}" -msgstr "未通过{0}验证的电子邮件" +msgstr "电子邮件未通过{0}验证" #: frappe/email/doctype/email_queue/email_queue.js:19 msgid "Email queue is currently suspended. Resume to automatically send other emails." @@ -8812,22 +8865,30 @@ msgstr "已拉取电子邮件" msgid "Emails are already being pulled from this account." msgstr "已从该账户持续拉取电子邮件。" -#: frappe/email/queue.py:137 +#: frappe/email/queue.py:138 msgid "Emails are muted" -msgstr "电子邮件通知已静音" +msgstr "邮件已被静音" #. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Emails will be sent with next possible workflow actions" -msgstr "电子邮件将随下次工作流操作一并发送" +msgstr "系统自动发送带审批操作按钮及单据pdf附件的电子邮件给审批人" #: frappe/website/doctype/web_form/web_form.js:34 msgid "Embed code copied" msgstr "嵌入代码已复制" +#: frappe/database/query.py:1537 +msgid "Empty alias is not allowed" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:285 msgid "Empty column" -msgstr "空列" +msgstr "空栏" + +#: frappe/database/query.py:1455 +msgid "Empty string arguments are not allowed" +msgstr "" #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' @@ -8857,12 +8918,18 @@ msgstr "启用自动回复" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Enable Automatic Linking in Documents" -msgstr "启用文档自动链接功能" +msgstr "启用自动链接单据功能" #. Label of the enable_comments (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Enable Comments" -msgstr "启用评论功能" +msgstr "启用评论" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" #. Label of the enable_email_notification (Check) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -8873,7 +8940,7 @@ msgstr "启用邮件通知" #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Enable Email Notifications" -msgstr "启用电子邮件通知" +msgstr "启用邮件通知" #: frappe/integrations/doctype/google_calendar/google_calendar.py:106 #: frappe/integrations/doctype/google_contacts/google_contacts.py:36 @@ -8885,18 +8952,18 @@ msgstr "在Google设置中启用Google API。" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" -msgstr "启用Google索引" +msgstr "启用谷歌索引" #. Label of the enable_incoming (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:225 msgid "Enable Incoming" -msgstr "启用接收" +msgstr "收邮件" #. Label of the enable_onboarding (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Enable Onboarding" -msgstr "启用入职流程" +msgstr "启用初始化向导" #. Label of the enable_outgoing (Check) field in DocType 'User Email' #. Label of the enable_outgoing (Check) field in DocType 'Email Account' @@ -8904,7 +8971,7 @@ msgstr "启用入职流程" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_account/email_account.py:233 msgid "Enable Outgoing" -msgstr "启用发送" +msgstr "启用该邮箱帐号发送邮件" #. Label of the enable_password_policy (Check) field in DocType 'System #. Settings' @@ -8916,7 +8983,7 @@ msgstr "启用密码策略" #. Permission for Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Enable Prepared Report" -msgstr "启用预生成报告" +msgstr "允许后台运行报表" #. Label of the enable_print_server (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -8932,16 +8999,16 @@ msgstr "启用推送通知中继" #. Label of the enable_rate_limit (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Enable Rate Limit" -msgstr "启用速率限制" +msgstr "启用调用次数限制" #. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Enable Raw Printing" -msgstr "启用原始打印" +msgstr "启用原生打印命令" #: frappe/core/doctype/report/report.js:39 msgid "Enable Report" -msgstr "启用报告" +msgstr "启用报表" #. Label of the enable_scheduler (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -8976,7 +9043,7 @@ msgstr "启用页面访问跟踪" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/twofactor.py:433 msgid "Enable Two Factor Auth" -msgstr "启用双因素认证" +msgstr "启用双重验证" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 msgid "Enable developer mode to create a standard Print Template" @@ -9024,15 +9091,15 @@ msgstr "启用应用内网站跟踪" #: frappe/geo/doctype/currency/currency.json #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/doctype/webhook/webhook.json -#: frappe/public/js/frappe/model/indicator.js:106 -#: frappe/public/js/frappe/model/indicator.js:117 +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json msgid "Enabled" msgstr "已启用" #: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" -msgstr "已启用调度程序" +msgstr "已启动后台任务" #: frappe/email/doctype/email_account/email_account.py:1010 msgid "Enabled email inbox for user {0}" @@ -9045,11 +9112,11 @@ msgstr "已为用户{0}启用电子邮件收件箱" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enables Calendar and Gantt views." -msgstr "启用日历和甘特图视图。" +msgstr "从列表界面可切换到日历和甘特图" #: frappe/email/doctype/email_account/email_account.js:295 msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" -msgstr "在接收邮件账户启用自动回复将向所有同步邮件发送自动回复。是否继续?" +msgstr "启用自动回复将会对所有同步过来的邮件生效,确认继续?" #. Description of a DocType #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json @@ -9069,12 +9136,12 @@ msgstr "启用后将在中央中继服务器注册站点,通过Firebase云消 #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enabling this will submit documents in background" -msgstr "启用后将在后台提交文档" +msgstr "启用后台任务执行提交操作,避免单据明细行多,运算量大前台执行超时" #. Label of the encrypt_backup (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Encrypt Backups" -msgstr "加密备份" +msgstr "备份数据加密" #: frappe/utils/password.py:197 msgid "Encryption key is in invalid format!" @@ -9106,14 +9173,14 @@ msgstr "结束日期字段" #: frappe/website/doctype/web_page/web_page.py:208 msgid "End Date cannot be before Start Date!" -msgstr "结束日期不能早于开始日期!" +msgstr "结束日期不能在开始日期之前!" #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Ended At" -msgstr "结束于" +msgstr "结束时间" #. Label of the sb_endpoints_section (Section Break) field in DocType #. 'Connected App' @@ -9124,7 +9191,7 @@ msgstr "端点" #. Label of the ends_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Ends on" -msgstr "结束于" +msgstr "结束时间" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -9152,14 +9219,14 @@ msgstr "在Google设置中输入客户端ID和客户端密钥。" msgid "Enter Code displayed in OTP App." msgstr "输入OTP应用中显示的验证码。" -#: frappe/public/js/frappe/views/communication.js:771 +#: frappe/public/js/frappe/views/communication.js:774 msgid "Enter Email Recipient(s)" -msgstr "输入电子邮件收件人" +msgstr "输入电子邮件收件人(S)" #. Label of the doc_type (Link) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Enter Form Type" -msgstr "输入表单类型" +msgstr "单据类型" #: frappe/public/js/frappe/ui/messages.js:94 msgctxt "Title of prompt dialog" @@ -9173,7 +9240,7 @@ msgstr "为此{0}输入名称" #. Description of the 'User Defaults' (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." -msgstr "输入默认值字段(键)和值。如果您为一个字段添加多个值,则将选择第一个值。这些默认值也用于设置“匹配”权限规则。要查看字段列表,请转到“自定义表单”。" +msgstr "输入默认值字段(键)和值。如果为字段添加多个值,则将选择第一个值。这些默认值还用于设置“匹配”权限规则。要查看字段列表,请转到“定制表单”。" #: frappe/public/js/frappe/views/file/file_view.js:111 msgid "Enter folder name" @@ -9183,19 +9250,19 @@ msgstr "输入文件夹名称" #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "在此输入静态URL参数(例如:sender=ERPNext, username=ERPNext, password=1234等)" +msgstr "请输入静态的URL参数(例如 sender=ERPNext, username=ERPNext, password=1234 etc.)" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "输入消息的URL参数" +msgstr "请输入消息的URL参数" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "输入接收号码的URL参数" +msgstr "请输入收件人编号的URL参数" #: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" @@ -9248,14 +9315,14 @@ msgstr "错误日志" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Error Logs" -msgstr "错误日志集" +msgstr "错误日志" #. Label of the error_message (Text) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" -msgstr "错误消息" +msgstr "错误信息" -#: frappe/public/js/frappe/form/print_utils.js:128 +#: frappe/public/js/frappe/form/print_utils.js:141 msgid "Error connecting to QZ Tray Application...

You need to have QZ Tray application installed and running, to use the Raw Print feature.

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "连接到QZ托盘应用程序时出错...

您需要安装并运行QZ Tray应用程序,才能使用Raw Print功能。

单击此处下载并安装QZ托盘
单击此处以了解有关原始印刷的更多信息 。" @@ -9293,13 +9360,21 @@ msgstr "通知错误" msgid "Error in print format on line {0}: {1}" msgstr "打印格式第{0}行错误:{1}" +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" -msgstr "连接电子邮件账户{0}时出错" +msgstr "连接到电子邮箱帐号{0}时出错" #: frappe/email/doctype/notification/notification.py:732 msgid "Error while evaluating Notification {0}. Please fix your template." -msgstr "评估通知{0}时出错。请修正模板。" +msgstr "评估通知{0}时出错。请修复您的模板。" #: frappe/model/base_document.py:803 msgid "Error: Data missing in table {0}" @@ -9307,7 +9382,7 @@ msgstr "错误:表{0}中数据缺失" #: frappe/model/base_document.py:813 msgid "Error: Value missing for {0}: {1}" -msgstr "错误:{0}的值缺失:{1}" +msgstr "错误:{0} 请填写必填字段:{1}" #: frappe/model/base_document.py:807 msgid "Error: {0} Row #{1}: Value missing for: {2}" @@ -9330,7 +9405,7 @@ msgstr "事件" #. Label of the event_category (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Event Category" -msgstr "事件分类" +msgstr "活动类别" #. Label of the event_frequency (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -9342,7 +9417,7 @@ msgstr "事件频率" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json msgid "Event Participants" -msgstr "事件参与者" +msgstr "活动参与者" #. Label of the enable_email_event_reminders (Check) field in DocType #. 'Notification Settings' @@ -9364,11 +9439,11 @@ msgstr "事件类型" #: frappe/public/js/frappe/ui/notifications/notifications.js:56 msgid "Events" -msgstr "事件集" +msgstr "事件" #: frappe/desk/doctype/event/event.py:274 msgid "Events in Today's Calendar" -msgstr "今日日历事件" +msgstr "今日历中的活动" #. Label of the everyone (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json @@ -9385,12 +9460,12 @@ msgstr "例如:“colors”:[“#d1d8dd”, “#ff5858”]" #. Label of the exact_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Exact Copies" -msgstr "精确副本" +msgstr "总查询次数" #. Label of the example (HTML) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Example" -msgstr "示例" +msgstr "例如" #. Description of the 'Default Portal Home' (Data) field in DocType 'Portal #. Settings' @@ -9412,13 +9487,13 @@ msgstr "示例:00001" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." -msgstr "示例:设置为24:00后,用户若24小时无活动将被注销。" +msgstr "如设置为24:00,则会24:00后自动将用户登出" #. Description of the 'Description' (Small Text) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Example: {{ subject }}" -msgstr "示例:{{ subject }}" +msgstr "示例:{{subject}}" #. Option for the 'File Type' (Select) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json @@ -9436,7 +9511,7 @@ msgstr "优秀" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Exception" -msgstr "异常" +msgstr "例外" #. Label of the execute_section (Section Break) field in DocType 'System #. Console' @@ -9458,9 +9533,9 @@ msgstr "" msgid "Executing..." msgstr "正在执行..." -#: frappe/public/js/frappe/views/reports/query_report.js:2071 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Execution Time: {0} sec" -msgstr "执行时间:{0}秒" +msgstr "运行时间:{0}秒" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -9484,14 +9559,18 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "展开" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "全部展开" +#: frappe/database/query.py:352 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" -msgstr "实验性功能" +msgstr "实验中功能" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json @@ -9505,12 +9584,12 @@ msgstr "专家" #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Expiration time" -msgstr "过期时间" +msgstr "失效时间" #. Label of the expire_notification_on (Datetime) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Expire Notification On" -msgstr "通知到期时间" +msgstr "通知截止日" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -9522,17 +9601,17 @@ msgstr "已过期" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Expires In" -msgstr "有效期剩余" +msgstr "过期日期" #. Label of the expires_on (Date) field in DocType 'Document Share Key' #: frappe/core/doctype/document_share_key/document_share_key.json msgid "Expires On" -msgstr "到期日期" +msgstr "到期日" #. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Expiry time of QR Code Image Page" -msgstr "二维码图片页面有效期" +msgstr "QR码图像页面的到期时间" #. Label of the export (Check) field in DocType 'Custom DocPerm' #. Label of the export (Check) field in DocType 'DocPerm' @@ -9541,28 +9620,28 @@ msgstr "二维码图片页面有效期" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1759 +#: frappe/public/js/frappe/views/reports/query_report.js:1809 #: frappe/public/js/frappe/views/reports/report_view.js:1627 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "导出" -#: frappe/public/js/frappe/list/list_view.js:2135 +#: frappe/public/js/frappe/list/list_view.js:2133 msgctxt "Button in list view actions menu" msgid "Export" msgstr "导出" #: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" -msgstr "导出1条记录" +msgstr "导出 1 笔记录" #: frappe/custom/doctype/customize_form/customize_form.js:262 msgid "Export Custom Permissions" -msgstr "导出自定义权限" +msgstr "导出客户许可" #: frappe/custom/doctype/customize_form/customize_form.js:242 msgid "Export Customizations" -msgstr "导出自定义项" +msgstr "导出自定义" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -9573,12 +9652,12 @@ msgstr "导出数据" #: frappe/core/doctype/data_import/data_import.js:86 #: frappe/public/js/frappe/data_import/import_preview.js:199 msgid "Export Errored Rows" -msgstr "导出错误行" +msgstr "导出出错记录" #. Label of the export_from (Data) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json msgid "Export From" -msgstr "导出来源" +msgstr "单据" #: frappe/core/doctype/data_import/data_import.js:518 msgid "Export Import Log" @@ -9595,7 +9674,7 @@ msgstr "导出类型" #: frappe/public/js/frappe/views/reports/report_view.js:1638 msgid "Export all matching rows?" -msgstr "导出所有匹配行?" +msgstr "导入满足筛选条件的所有记录?" #: frappe/public/js/frappe/views/reports/report_view.js:1648 msgid "Export all {0} rows?" @@ -9607,7 +9686,7 @@ msgstr "压缩导出" #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." -msgstr "无导出权限。需要{0}角色进行导出。" +msgstr "不允许导出,您没有{0}的角色。" #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' @@ -9623,7 +9702,7 @@ msgstr "无主标题导出" #: frappe/public/js/frappe/data_import/data_exporter.js:247 msgid "Export {0} records" -msgstr "导出{0}条记录" +msgstr "导出 {0} 笔记录" #: frappe/custom/doctype/customize_form/customize_form.js:263 msgid "Exported permissions will be force-synced on every migrate overriding any other customization." @@ -9632,27 +9711,27 @@ msgstr "导出的权限将在每次迁移时强制同步,覆盖其他自定义 #. Label of the expose_recipients (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Expose Recipients" -msgstr "公开收件人" +msgstr "揭露收件人" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression" -msgstr "表达式" +msgstr "公式" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Expression (old style)" -msgstr "表达式(旧式)" +msgstr "公式(旧方法)" #. Description of the 'Condition' (Data) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Expression, Optional" -msgstr "表达式(可选)" +msgstr "表达式,可选" #. Label of the external_link (Data) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -9697,7 +9776,7 @@ msgstr "发送失败的邮件" #. Label of the failed_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Failed Job Count" -msgstr "失败任务数" +msgstr "失败任务数量" #. Label of the failed_jobs (Int) field in DocType 'System Health Report #. Workers' @@ -9725,7 +9804,7 @@ msgstr "密码修改失败。" #: frappe/desk/page/setup_wizard/setup_wizard.js:232 #: frappe/desk/page/setup_wizard/setup_wizard.py:42 msgid "Failed to complete setup" -msgstr "未能完成设置" +msgstr "无法完成设置" #: frappe/integrations/doctype/webhook/webhook.py:137 msgid "Failed to compute request body: {}" @@ -9734,7 +9813,7 @@ msgstr "计算请求正文失败:{}" #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 #: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 msgid "Failed to connect to server" -msgstr "连接服务器失败" +msgstr "无法连接服务器" #: frappe/auth.py:698 msgid "Failed to decode token, please provide a valid base64-encoded token." @@ -9746,11 +9825,11 @@ msgstr "解密密钥{0}失败" #: frappe/desk/reportview.py:600 msgid "Failed to delete {0} documents: {1}" -msgstr "删除{0}个文档失败:{1}" +msgstr "未能删除 {0} 个单据: {1}" #: frappe/core/doctype/rq_job/rq_job_list.js:33 msgid "Failed to enable scheduler: {0}" -msgstr "启用调度程序失败:{0}" +msgstr "启动后台任务 {0} 失败" #: frappe/email/doctype/notification/notification.py:99 #: frappe/integrations/doctype/webhook/webhook.py:127 @@ -9803,7 +9882,7 @@ msgstr "请求登录Frappe云失败" #: frappe/email/doctype/email_queue/email_queue.py:297 msgid "Failed to send email with subject:" -msgstr "发送主题为的邮件失败:" +msgstr "邮件发送失败,邮件标题:" #: frappe/desk/doctype/notification_log/notification_log.py:43 msgid "Failed to send notification email" @@ -9811,7 +9890,7 @@ msgstr "发送通知邮件失败" #: frappe/desk/page/setup_wizard/setup_wizard.py:24 msgid "Failed to update global settings" -msgstr "全局设置更新失败" +msgstr "更新全局设置失败" #: frappe/integrations/frappe_providers/frappecloud_billing.py:74 msgid "Failed while calling API {0}" @@ -9855,7 +9934,7 @@ msgstr "反馈" #: frappe/desk/page/setup_wizard/install_fixtures.py:29 msgid "Female" -msgstr "女性" +msgstr "女" #. Label of the fetch_from (Small Text) field in DocType 'DocField' #. Label of the fetch_from (Small Text) field in DocType 'Custom Field' @@ -9866,15 +9945,15 @@ msgstr "女性" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 msgid "Fetch From" -msgstr "数据来源" +msgstr "自动带出关联字段" #: frappe/website/doctype/website_slideshow/website_slideshow.js:15 msgid "Fetch Images" -msgstr "提取图像" +msgstr "获取图像" #: frappe/website/doctype/website_slideshow/website_slideshow.js:13 msgid "Fetch attached images from document" -msgstr "从文档提取附件图片" +msgstr "从单据中获取添加的图像" #. Label of the fetch_if_empty (Check) field in DocType 'DocField' #. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' @@ -9883,7 +9962,7 @@ msgstr "从文档提取附件图片" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fetch on Save if Empty" -msgstr "空值时保存前自动获取" +msgstr "保存时仅字段为空才赋值" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 msgid "Fetching default Global Search documents." @@ -9905,8 +9984,8 @@ msgstr "正在获取默认全局搜索文档。" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 -#: frappe/public/js/frappe/views/reports/query_report.js:235 -#: frappe/public/js/frappe/views/reports/query_report.js:1818 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1868 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" @@ -9922,12 +10001,12 @@ msgstr "如果设置了“网站搜索字段”,则“标题”字段是必填 #: frappe/desk/doctype/bulk_update/bulk_update.js:17 msgid "Field \"value\" is mandatory. Please specify value to be updated" -msgstr "字段“值”是强制性的。请指定值进行更新" +msgstr "字段值必填。请指定值进行更新" #. Label of the description (Text) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Field Description" -msgstr "字段描述" +msgstr "字段说明" #: frappe/core/doctype/doctype/doctype.py:1077 msgid "Field Missing" @@ -9961,23 +10040,23 @@ msgstr "字段类型" #: frappe/desk/reportview.py:201 msgid "Field not permitted in query" -msgstr "查询中不允许的字段" +msgstr "查询过滤条件字段无效(js调用db.get_value, db.get_list过滤条件不支持字表字段,db.get_list支持子单据查询,需添加parent_doctype:主单据类型参数用于权限检查)" #. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" -msgstr "表示事务工作流状态的字段(若不存在,将创建新的隐藏自定义字段)" +msgstr "单据工作流状态字段(如果字段不存在,系统会创建一个隐藏的自定义字段)" #. Label of the track_field (Select) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Field to Track" -msgstr "跟踪字段" +msgstr "待追踪字段" #: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" -msgstr "{0}的字段类型不可更改" +msgstr "{0}不能更改字段类型" -#: frappe/database/database.py:892 +#: frappe/database/database.py:919 msgid "Field {0} does not exist on {1}" msgstr "字段{0}在{1}中不存在" @@ -9987,7 +10066,7 @@ msgstr "字段{0}引用了不存在的文档类型{1}。" #: frappe/public/js/frappe/form/form.js:1754 msgid "Field {0} not found." -msgstr "未找到字段{0}。" +msgstr "找不到字段{0}。" #: frappe/email/doctype/notification/notification.py:503 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" @@ -10010,7 +10089,7 @@ msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用 #: frappe/public/js/frappe/form/grid_row.js:438 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" -msgstr "字段名称" +msgstr "字段名" #: frappe/core/doctype/doctype/doctype.py:270 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" @@ -10020,25 +10099,25 @@ msgstr "字段名'{0}'与{3}中的{1} {2}冲突" msgid "Fieldname called {0} must exist to enable autonaming" msgstr "必须存在名为{0}的字段才能启用自动命名" -#: frappe/database/schema.py:127 frappe/database/schema.py:363 +#: frappe/database/schema.py:127 frappe/database/schema.py:404 msgid "Fieldname is limited to 64 characters ({0})" -msgstr "字段名限制为64个字符({0})" +msgstr "字段名被限制为64个字符({0})" #: frappe/custom/doctype/custom_field/custom_field.py:197 msgid "Fieldname not set for Custom Field" -msgstr "未设置自定义字段的字段名" +msgstr "必须为自定义字段设置设置字段名" #: frappe/custom/doctype/custom_field/custom_field.js:107 msgid "Fieldname which will be the DocType for this link field." -msgstr "将作为此链接字段文档类型的字段名。" +msgstr "字段名将作为这个单据类型的链接字段。" #: frappe/public/js/form_builder/store.js:175 msgid "Fieldname {0} appears multiple times" msgstr "字段名{0}重复出现" -#: frappe/database/schema.py:353 +#: frappe/database/schema.py:394 msgid "Fieldname {0} cannot have special characters like {1}" -msgstr "字段名{0}不能包含{1}等特殊字符" +msgstr "字段名{0}不能有特殊字符,如{1}" #: frappe/core/doctype/doctype/doctype.py:1907 msgid "Fieldname {0} conflicting with meta object" @@ -10047,7 +10126,7 @@ msgstr "字段名{0}与元对象冲突" #: frappe/core/doctype/doctype/doctype.py:496 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" -msgstr "字段名{0}被限制使用" +msgstr "字段名{0}受限制" #. Label of the fields (Table) field in DocType 'DocType' #. Label of the fields_section (Section Break) field in DocType 'DocType' @@ -10073,12 +10152,12 @@ msgstr "字段名{0}被限制使用" #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/website/doctype/web_template/web_template.json msgid "Fields" -msgstr "字段集" +msgstr "字段" #. Label of the fields_multicheck (HTML) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Fields Multicheck" -msgstr "多选字段" +msgstr "字段Multicheck" #: frappe/core/doctype/file/file.py:410 msgid "Fields `file_name` or `file_url` must be set for File" @@ -10088,10 +10167,14 @@ msgstr "文件必须设置`file_name`或`file_url`字段" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "启用as_list时字段必须为列表或元组" +#: frappe/database/query.py:611 +msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" +msgstr "" + #. Description of the 'Search Fields' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box" -msgstr "以逗号 (,) 分隔的字段将包含在搜索对话框的“搜索依据”列表中" +msgstr "字段以逗号分隔(,),将可通过全局搜索框进行搜索" #. Label of the fieldtype (Select) field in DocType 'Report Column' #. Label of the fieldtype (Select) field in DocType 'Report Filter' @@ -10114,7 +10197,7 @@ msgstr "字段类型不能从{0}更改为{1}" #: frappe/custom/doctype/customize_form/customize_form.py:588 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" -msgstr "行{2}的字段类型不能从{0}更改为{1}" +msgstr "第{2}行中的字段类型不能从{0}更改为{1}" #. Label of a shortcut in the Tools Workspace #. Name of a DocType @@ -10172,11 +10255,11 @@ msgstr "文件类型" #. Label of the file_url (Code) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "File URL" -msgstr "文件URL" +msgstr "文件的URL" #: frappe/desk/page/backups/backups.py:107 msgid "File backup is ready" -msgstr "文件备份已就绪" +msgstr "文件备份就绪" #: frappe/core/doctype/file/file.py:624 msgid "File name cannot have {0}" @@ -10184,16 +10267,16 @@ msgstr "文件名不能包含{0}" #: frappe/utils/csvutils.py:28 msgid "File not attached" -msgstr "未附加文件" +msgstr "文件未添加" #: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "文件大小超过允许的最大{0} MB" +msgstr "文件大小超过允许的{0} MB" #: frappe/public/js/frappe/request.js:198 msgid "File too big" -msgstr "文件过大" +msgstr "文件太大" #: frappe/core/doctype/file/file.py:375 msgid "File type of {0} is not allowed" @@ -10208,7 +10291,7 @@ msgstr "文件{0}不存在" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Files" -msgstr "文件集" +msgstr "文件" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 @@ -10220,11 +10303,11 @@ msgstr "文件集" #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" -msgstr "筛选器" +msgstr "过滤条件" #: frappe/public/js/frappe/list/list_sidebar.html:36 msgid "Filter By" -msgstr "过滤依据" +msgstr "过滤字段" #. Label of the filter_data (Section Break) field in DocType 'Auto Email #. Report' @@ -10235,27 +10318,35 @@ msgstr "过滤数据" #. Label of the filter_list (HTML) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Filter List" -msgstr "过滤列表" +msgstr "过滤条件列表" #. Label of the filter_meta (Text) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filter Meta" -msgstr "过滤元数据" +msgstr "过滤条件" #. Label of the filter_name (Data) field in DocType 'List Filter' #: frappe/desk/doctype/list_filter/list_filter.json #: frappe/public/js/frappe/list/list_filter.js:33 msgid "Filter Name" -msgstr "过滤器名称" +msgstr "过滤条件名称" #. Label of the filter_values (HTML) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Filter Values" msgstr "过滤值" +#: frappe/database/query.py:358 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:425 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + #: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 msgid "Filter..." -msgstr "过滤..." +msgstr "过滤条件..." #. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion #. Step' @@ -10265,12 +10356,12 @@ msgstr "过滤条件" #: frappe/public/js/frappe/data_import/data_exporter.js:33 msgid "Filtered Records" -msgstr "已过滤记录" +msgstr "满足过滤条件的记录" #: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" -msgstr "通过过滤“{0}”" +msgstr "基于“{0}”过滤" #. Label of the filters (Code) field in DocType 'Access Log' #. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' @@ -10292,7 +10383,7 @@ msgstr "通过过滤“{0}”" #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/notification/notification.json msgid "Filters" -msgstr "过滤器" +msgstr "过滤条件" #. Label of the filters_config (Code) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -10302,27 +10393,27 @@ msgstr "过滤器配置" #. Label of the filters_display (HTML) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Filters Display" -msgstr "过滤器显示" +msgstr "显示过滤条件" #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Filters JSON" -msgstr "过滤器JSON" +msgstr "过滤JSON" #. Label of the filters_section (Section Break) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Filters Section" -msgstr "过滤器区域" +msgstr "过滤条件" #: frappe/public/js/frappe/form/controls/link.js:510 msgid "Filters applied for {0}" -msgstr "应用于{0}的过滤器" +msgstr "过滤条件:{0}" #: frappe/public/js/frappe/views/kanban/kanban_view.js:188 msgid "Filters saved" -msgstr "过滤器已保存" +msgstr "已保存过滤条件" #. Description of the 'Script' (Code) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -10331,7 +10422,7 @@ msgstr "过滤器可通过filters访问。

发送输出为" #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer will display correctly only in PDF" -msgstr "页脚仅在PDF中正确显示" +msgstr "页脚仅以PDF格式正确显示" #. Label of the for_doctype (Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -10629,7 +10716,7 @@ msgstr "针对文档" #: frappe/core/doctype/user_permission/user_permission_list.js:155 msgid "For Document Type" -msgstr "针对文档类型" +msgstr "单据类型" #: frappe/public/js/frappe/widgets/widget_dialog.js:566 msgid "For Example: {} Open" @@ -10642,8 +10729,7 @@ msgstr "示例:{} 打开" #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." -msgstr "对于链接,输入 DocType 作为范围。\n" -"对于选择,输入选项列表,每个选项占一行。" +msgstr "对链接类型字段,此处填写链接的单据类型;对于单选字段,填写单选值清单,用回车键分行" #. Label of the for_user (Link) field in DocType 'List Filter' #. Label of the for_user (Link) field in DocType 'Notification Log' @@ -10654,21 +10740,21 @@ msgstr "对于链接,输入 DocType 作为范围。\n" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/desk/doctype/workspace/workspace.json msgid "For User" -msgstr "针对用户" +msgstr "用户" #. Label of the for_value (Dynamic Link) field in DocType 'User Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "For Value" -msgstr "针对值" +msgstr "允许值" -#: frappe/public/js/frappe/views/reports/query_report.js:2068 +#: frappe/public/js/frappe/views/reports/query_report.js:2118 #: frappe/public/js/frappe/views/reports/report_view.js:102 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." -msgstr "比较使用>5、<10或=324。范围使用5:10(表示5到10之间的值)" +msgstr "过滤条件可以用>,<,= 比较符,两个值之间用:表示范围, 如>5, <10, =20, 5:10" #: frappe/core/page/permission_manager/permission_manager_help.html:19 msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." -msgstr "例如,如果取消并修改INV004,将生成新文档INV004-1。这有助于跟踪每次修订" +msgstr "例如取消和修订INV004将成为一个新的单据INV004-1,这有利于你跟踪每次修订。" #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "For example:" @@ -10676,12 +10762,12 @@ msgstr "例如:" #: frappe/printing/page/print_format_builder/print_format_builder.js:752 msgid "For example: If you want to include the document ID, use {0}" -msgstr "示例:如需包含文档ID,请使用{0}" +msgstr "例如:如果要包括文件ID,使用{0}" #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "For example: {} Open" -msgstr "示例:{} 打开" +msgstr "例如: {} Open" #. Description of the 'Client script' (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -10692,7 +10778,7 @@ msgstr "如需帮助,请参阅 click here." -msgstr "更多信息,请点击此处。" +msgstr "有关更多信息, 请单击此处 。" #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." @@ -10706,11 +10792,11 @@ msgstr "多个地址请分行输入,例如:test@test.com ⏎ test1@test.com" #: frappe/core/doctype/data_export/exporter.py:197 msgid "For updating, you can update only selective columns." -msgstr "更新时仅可选择部分列进行更新" +msgstr "您只能更新选择的列。" #: frappe/core/doctype/doctype/doctype.py:1751 msgid "For {0} at level {1} in {2} in row {3}" -msgstr "第{3}行中{2}的第{1}层级{0}" +msgstr "对行{3},{2}中级别{1}的{0}" #. Label of the force (Check) field in DocType 'Package Import' #. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth @@ -10718,7 +10804,7 @@ msgstr "第{3}行中{2}的第{1}层级{0}" #: frappe/core/doctype/package_import/package_import.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Force" -msgstr "强制" +msgstr "力" #. Label of the force_re_route_to_default_view (Check) field in DocType #. 'DocType' @@ -10727,7 +10813,7 @@ msgstr "强制" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Force Re-route to Default View" -msgstr "强制重定向到默认视图" +msgstr "强制显示默认视图(不返回上次视图)" #. Label of the force_show (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -10748,11 +10834,11 @@ msgstr "强制用户重置密码" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Force Web Capture Mode for Uploads" -msgstr "强制使用网页捕获模式上传" +msgstr "上传时强制使用网页上传模式" #: frappe/www/login.html:37 msgid "Forgot Password?" -msgstr "忘记密码?" +msgstr "忘了密码?" #. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' @@ -10778,7 +10864,7 @@ msgstr "表单构建器" #. Label of the form_dict (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Form Dict" -msgstr "表单字典" +msgstr "请求参数字典" #. Label of the form_settings_section (Section Break) field in DocType #. 'DocType' @@ -10798,12 +10884,12 @@ msgstr "表单设置" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Form Tour" -msgstr "表单导航" +msgstr "表单向导" #. Name of a DocType #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Form Tour Step" -msgstr "表单导航步骤" +msgstr "表单向导步骤" #. Option for the 'Request Structure' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -10830,7 +10916,7 @@ msgstr "转发" #. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Forward To Email Address" -msgstr "转发至邮箱地址" +msgstr "转发到邮件地址" #. Label of the fraction (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -10848,7 +10934,7 @@ msgstr "分数单位" #: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 #: frappe/www/login.py:153 msgid "Frappe" -msgstr "Frappe框架" +msgstr "Frappe" #: frappe/public/js/frappe/ui/toolbar/about.js:4 msgid "Frappe Framework" @@ -10917,15 +11003,13 @@ msgid "Friday" msgstr "星期五" #. Label of the sender (Data) field in DocType 'Communication' -#. Label of the from_section (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "From" msgstr "从" -#: frappe/public/js/frappe/views/communication.js:194 +#: frappe/public/js/frappe/views/communication.js:197 msgctxt "Email Sender" msgid "From" msgstr "从" @@ -10934,21 +11018,21 @@ msgstr "从" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:8 msgid "From Date" -msgstr "起始日期" +msgstr "开始日期" #. Label of the from_date_field (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "From Date Field" -msgstr "起始日期字段" +msgstr "开始日期字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1779 +#: frappe/public/js/frappe/views/reports/query_report.js:1829 msgid "From Document Type" -msgstr "来源文档类型" +msgstr "单据类型" #. Label of the sender_full_name (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "来源全名" +msgstr "全名" #. Label of the from_user (Link) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -10957,12 +11041,12 @@ msgstr "来源用户" #: frappe/public/js/frappe/utils/diffview.js:31 msgid "From version" -msgstr "从版本" +msgstr "先前版本" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Full" -msgstr "完整" +msgstr "全" #. Label of the full_name (Data) field in DocType 'Contact' #. Label of the full_name (Data) field in DocType 'Activity Log' @@ -10982,7 +11066,7 @@ msgstr "全名" #: frappe/printing/page/print/print.js:67 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" -msgstr "全页" +msgstr "全屏显示" #. Label of the full_width (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json @@ -10992,26 +11076,30 @@ msgstr "全宽" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:245 +#: frappe/public/js/frappe/views/reports/query_report.js:246 #: frappe/public/js/frappe/widgets/widget_dialog.js:699 msgid "Function" msgstr "函数" #: frappe/public/js/frappe/widgets/widget_dialog.js:706 msgid "Function Based On" -msgstr "函数依据" +msgstr "函数基准字段" -#: frappe/__init__.py:677 +#: frappe/__init__.py:466 msgid "Function {0} is not whitelisted." -msgstr "函数{0}未在白名单中" +msgstr "方法 {0} 申明前未添加@frappe.whitelist()装饰器" + +#: frappe/database/query.py:1417 +msgid "Function {0} requires arguments but none were provided" +msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "后续节点只能在'组'类型节点下创建" +msgstr "只能在“组”节点下新建节点" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" -msgstr "转发:{0}" +msgstr "FW:{0}" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -11021,7 +11109,7 @@ msgstr "GET方法" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "GMail" -msgstr "Gmail" +msgstr "GMail" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json @@ -11059,14 +11147,14 @@ msgstr "性别酷儿" #: frappe/www/contact.html:29 msgid "General" -msgstr "常规" +msgstr "正常" #. Label of the generate_keys (Button) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Generate Keys" msgstr "生成密钥" -#: frappe/public/js/frappe/views/reports/query_report.js:872 +#: frappe/public/js/frappe/views/reports/query_report.js:873 msgid "Generate New Report" msgstr "生成新报表" @@ -11074,8 +11162,8 @@ msgstr "生成新报表" msgid "Generate Random Password" msgstr "生成随机密码" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176 -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1790 msgid "Generate Tracking URL" msgstr "生成跟踪URL" @@ -11100,20 +11188,20 @@ msgstr "地理位置设置" #: frappe/email/doctype/notification/notification.js:219 msgid "Get Alerts for Today" -msgstr "获取今日提醒" +msgstr "获取今天的预警通知" #: frappe/desk/page/backups/backups.js:21 msgid "Get Backup Encryption Key" -msgstr "获取备份加密密钥" +msgstr "获取备份秘钥" #. Label of the get_contacts (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Get Contacts" -msgstr "获取联系人" +msgstr "选联系人" #: frappe/website/doctype/web_form/web_form.js:93 msgid "Get Fields" -msgstr "获取字段" +msgstr "选字段" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "Get Header and Footer wkhtmltopdf variables" @@ -11121,7 +11209,7 @@ msgstr "获取页眉页脚wkhtmltopdf变量" #: frappe/public/js/frappe/form/multi_select_dialog.js:86 msgid "Get Items" -msgstr "获取物料" +msgstr "选物料" #: frappe/integrations/doctype/connected_app/connected_app.js:6 msgid "Get OpenID Configuration" @@ -11135,7 +11223,7 @@ msgstr "获取PDF" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Get a preview of generated names with a series." -msgstr "通过序列预览生成名称" +msgstr "预览编号模板生成的单据编号" #: frappe/public/js/frappe/list/list_sidebar.js:305 msgid "Get more insights with" @@ -11145,12 +11233,12 @@ msgstr "通过以下方式获取更多洞察:" #. DocType 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Get notified when an email is received on any of the documents assigned to you." -msgstr "当分配给您的文档收到邮件时获取通知" +msgstr "当分派给你的单据接收邮件时发送通知" #. Description of the 'User Image' (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Get your globally recognized avatar from Gravatar.com" -msgstr "从Gravatar.com获取全球认可的头像" +msgstr "从Gravatar.com网站获取您的个人图标," #. Label of the git_branch (Data) field in DocType 'Installed Application' #: frappe/core/doctype/installed_application/installed_application.json @@ -11170,11 +11258,11 @@ msgstr "GitHub风格的Markdown语法" #. Name of a DocType #: frappe/desk/doctype/global_search_doctype/global_search_doctype.json msgid "Global Search DocType" -msgstr "全局搜索文档类型" +msgstr "全局搜索单据类型" #: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 msgid "Global Search Document Types Reset." -msgstr "全局搜索文档类型已重置" +msgstr "全局搜索单据类型重置" #. Name of a DocType #: frappe/desk/doctype/global_search_settings/global_search_settings.json @@ -11183,16 +11271,16 @@ msgstr "全局搜索设置" #: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" -msgstr "全局快捷键" +msgstr "全局访问" #. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json msgid "Global Unsubscribe" -msgstr "全局退订" +msgstr "全部退订" -#: frappe/public/js/frappe/form/toolbar.js:840 +#: frappe/public/js/frappe/form/toolbar.js:843 msgid "Go" -msgstr "前往" +msgstr "确定" #: frappe/public/js/frappe/widgets/onboarding_widget.js:241 #: frappe/public/js/frappe/widgets/onboarding_widget.js:321 @@ -11226,7 +11314,7 @@ msgstr "转到上一条记录" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 msgid "Go to the document" -msgstr "转到文档" +msgstr "转到单据" #. Description of the 'Success URL' (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -11263,7 +11351,7 @@ msgstr "谷歌" #. Label of the google_analytics_id (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics ID" -msgstr "Google Analytics ID" +msgstr "谷歌Analytics ID" #. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website #. Settings' @@ -11324,7 +11412,7 @@ msgstr "谷歌日历事件ID" #: frappe/desk/doctype/event/event.json #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Google Calendar ID" -msgstr "谷歌日历ID" +msgstr "Google日历ID" #: frappe/integrations/doctype/google_calendar/google_calendar.py:181 msgid "Google Calendar has been configured." @@ -11339,7 +11427,7 @@ msgstr "谷歌日历已配置" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" -msgstr "谷歌联系人" +msgstr "Google通讯录" #: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." @@ -11354,8 +11442,6 @@ msgstr "谷歌联系人 - 无法更新谷歌联系人{0}中的联系人,错误 msgid "Google Contacts Id" msgstr "谷歌联系人ID" -#. Label of a Link in the Integrations Workspace -#: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" msgstr "谷歌云端硬盘" @@ -11388,14 +11474,15 @@ msgstr "Google Meet链接" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Services" -msgstr "谷歌服务" +msgstr "Google服务" #. Name of a DocType #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" -msgstr "谷歌设置" +msgstr "Google设置" #: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." @@ -11425,7 +11512,7 @@ msgstr "图表" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" -msgstr "灰色" +msgstr "灰色(美式)" #: frappe/public/js/frappe/ui/filters/filter.js:23 msgid "Greater Than" @@ -11451,7 +11538,7 @@ msgstr "网格空状态" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "网格页面长度" +msgstr "表单子表默认显示行数" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" @@ -11470,22 +11557,26 @@ msgstr "组" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:32 msgid "Group By" -msgstr "分组依据" +msgstr "分组字段" #. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Based On" -msgstr "分组依据基础" +msgstr "分组字段" #. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Group By Type" -msgstr "分组类型" +msgstr "分组统计类型" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 msgid "Group By field is required to create a dashboard chart" msgstr "创建仪表板图表需要分组依据字段" +#: frappe/database/query.py:750 +msgid "Group By must be a string" +msgstr "" + #: frappe/public/js/frappe/views/treeview.js:418 msgid "Group Node" msgstr "组节点" @@ -11498,9 +11589,9 @@ msgstr "组对象类" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Group your custom doctypes under modules" -msgstr "将自定义文档类型组织到模块下" +msgstr "将自定义单据类型按模块分类" -#: frappe/public/js/frappe/ui/group_by/group_by.js:425 +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 msgid "Grouped by {0}
" msgstr "按{0}分组" @@ -11519,14 +11610,14 @@ msgstr "HERE地图" #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm" -msgstr "HH:mm" +msgstr "时:分" #. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm:ss" -msgstr "HH:mm:ss" +msgstr "时:分:秒" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11534,7 +11625,6 @@ msgstr "HH:mm:ss" #. Label of the html_section (Section Break) field in DocType 'Custom HTML #. Block' #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter #. Head' @@ -11548,11 +11638,10 @@ msgstr "HH:mm:ss" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 #: frappe/public/js/print_format_builder/Field.vue:86 #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -11578,7 +11667,7 @@ msgstr "HTML页面" #. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "HTML for header section. Optional" -msgstr "页眉部分的HTML(可选)" +msgstr "HTML的标题区。可选" #: frappe/website/doctype/web_page/web_page.js:92 msgid "HTML with jinja support" @@ -11587,20 +11676,20 @@ msgstr "支持jinja的HTML" #. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' #: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json msgid "Half" -msgstr "半宽" +msgstr "半" #. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Half Yearly" -msgstr "半年度" +msgstr "每半年" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/public/js/frappe/utils/common.js:402 msgid "Half-yearly" -msgstr "半年度" +msgstr "每半年" #. Label of the handled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -11610,12 +11699,12 @@ msgstr "已处理邮件" #. Label of the has_attachment (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Has Attachment" -msgstr "包含附件" +msgstr "有附件" #. Name of a DocType #: frappe/core/doctype/has_domain/has_domain.json msgid "Has Domain" -msgstr "拥有域" +msgstr "有域名" #. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -11625,7 +11714,7 @@ msgstr "存在下一条件" #. Name of a DocType #: frappe/core/doctype/has_role/has_role.json msgid "Has Role" -msgstr "拥有角色" +msgstr "有角色" #. Label of the has_setup_wizard (Check) field in DocType 'Installed #. Application' @@ -11636,11 +11725,11 @@ msgstr "" #. Label of the has_web_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Has Web View" -msgstr "具有网页视图" +msgstr "有Web视图" #: frappe/templates/signup.html:19 msgid "Have an account? Login" -msgstr "已有账户?登录" +msgstr "有账户?登录" #. Label of the header (Check) field in DocType 'SMS Parameter' #. Label of the header_section (Section Break) field in DocType 'Letter Head' @@ -11651,16 +11740,16 @@ msgstr "已有账户?登录" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "页眉" +msgstr "头" #. Label of the content (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" -msgstr "页眉HTML" +msgstr "标题HTML" #: frappe/printing/doctype/letter_head/letter_head.py:63 msgid "Header HTML set from attachment {0}" -msgstr "页眉HTML已从附件{0}设置" +msgstr "使用附件{0}设置HTML文件头" #. Label of the header_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -11676,7 +11765,7 @@ msgstr "页眉与面包屑导航" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Header, Robots" -msgstr "页眉,机器人协议" +msgstr "页首,机器人" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Header/Footer scripts can be used to add dynamic behaviours." @@ -11687,7 +11776,7 @@ msgstr "页眉/页脚脚本可用于添加动态行为" #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Headers" -msgstr "头部信息" +msgstr "头" #: frappe/email/email_body.py:322 msgid "Headers must be a dictionary" @@ -11714,7 +11803,7 @@ msgstr "热力图" #: frappe/templates/emails/new_user.html:2 msgid "Hello" -msgstr "您好" +msgstr "你好" #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' @@ -11755,7 +11844,7 @@ msgstr "帮助下拉菜单" #. Label of the help_html (HTML) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Help HTML" -msgstr "帮助HTML" +msgstr "HTML帮助" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 msgid "Help on Search" @@ -11774,20 +11863,20 @@ msgstr "有帮助" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "Helvetica字体" +msgstr "黑体" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" msgstr "Helvetica Neue字体" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1787 msgid "Here's your tracking URL" msgstr "这是您的跟踪URL" #: frappe/www/qrcode.html:9 msgid "Hi {0}" -msgstr "您好{0}" +msgstr "{0}" #. Label of the hidden (Check) field in DocType 'DocField' #. Label of the hidden (Check) field in DocType 'DocType Action' @@ -11817,12 +11906,17 @@ msgstr "隐藏" msgid "Hidden Fields" msgstr "隐藏字段" +#: frappe/public/js/frappe/views/reports/query_report.js:1641 +msgid "Hidden columns include: {0}" +msgstr "" + #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 #: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 msgid "Hide" msgstr "隐藏" @@ -11838,7 +11932,7 @@ msgstr "隐藏区块" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Hide Border" -msgstr "隐藏边框" +msgstr "不显示边框" #. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -11855,12 +11949,12 @@ msgstr "隐藏行动号召" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Hide Copy" -msgstr "隐藏复制" +msgstr "隐藏复制功能" #. Label of the hide_custom (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Hide Custom DocTypes and Reports" -msgstr "隐藏自定义文档类型和报表" +msgstr "隐藏自定义单据类型和报表" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11875,7 +11969,7 @@ msgstr "隐藏天数" #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_permission/user_permission_list.js:96 msgid "Hide Descendants" -msgstr "隐藏子项" +msgstr "隐藏下层节点" #. Label of the hide_empty_read_only_fields (Check) field in DocType 'System #. Settings' @@ -11894,7 +11988,7 @@ msgstr "隐藏标签" #. Label of the hide_login (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide Login" -msgstr "隐藏登录" +msgstr "隐藏登录按钮" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 @@ -11908,7 +12002,7 @@ msgstr "在高亮对话框中隐藏上一条、下一条和关闭按钮" #: frappe/public/js/frappe/list/list_filter.js:94 msgid "Hide Saved" -msgstr "隐藏已保存" +msgstr "隐藏已保存过滤" #. Label of the hide_seconds (Check) field in DocType 'DocField' #. Label of the hide_seconds (Check) field in DocType 'Custom Field' @@ -11922,14 +12016,14 @@ msgstr "隐藏秒数" #. Label of the hide_toolbar (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" -msgstr "隐藏侧边栏、菜单和评论" +msgstr "隐藏左边栏,菜单及评论" #. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" msgstr "隐藏标准菜单" -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Hide Tags" msgstr "隐藏标签" @@ -11941,11 +12035,11 @@ msgstr "隐藏周末" #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Hide descendant records of For Value." -msgstr "隐藏的下级记录。" +msgstr "隐藏下层节点" #: frappe/public/js/frappe/form/layout.js:286 msgid "Hide details" -msgstr "隐藏详情" +msgstr "隐藏细节" #. Label of the hide_footer (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -11956,12 +12050,12 @@ msgstr "隐藏页脚" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide footer in auto email reports" -msgstr "自动邮件报告中隐藏页脚" +msgstr "在自动电子邮件报表中隐藏页脚" #. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Hide footer signup" -msgstr "隐藏页脚注册" +msgstr "在帐号注册页隐藏页脚" #. Label of the hide_navbar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -11972,21 +12066,21 @@ msgstr "隐藏导航栏" #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:225 msgid "High" -msgstr "高优先级" +msgstr "高" #. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Higher priority rule will be applied first" -msgstr "优先级较高的规则将优先应用" +msgstr "首先应用更高优先级的规则" #. Label of the highlight (Text) field in DocType 'Company History' #: frappe/website/doctype/company_history/company_history.json msgid "Highlight" -msgstr "高亮显示" +msgstr "高亮" -#: frappe/www/update-password.html:276 +#: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "提示:密码应包含符号、数字和大写字母" +msgstr "提示:在密码中加入符号,数字和大写字母" #. Label of the home_tab (Tab Break) field in DocType 'Website Settings' #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 @@ -12002,7 +12096,7 @@ msgstr "提示:密码应包含符号、数字和大写字母" #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 #: frappe/www/message.html:29 msgid "Home" -msgstr "首页" +msgstr "主页" #. Label of the home_page (Data) field in DocType 'Role' #. Label of the home_page (Data) field in DocType 'Website Settings' @@ -12020,15 +12114,15 @@ msgstr "主页设置" #: frappe/core/doctype/file/test_file.py:323 #: frappe/core/doctype/file/test_file.py:387 msgid "Home/Test Folder 1" -msgstr "首页/测试文件夹1" +msgstr "主页/测试文件夹1" #: frappe/core/doctype/file/test_file.py:376 msgid "Home/Test Folder 1/Test Folder 3" -msgstr "首页/测试文件夹1/测试文件夹3" +msgstr "主页/测试文件夹1 /测试文件夹3" #: frappe/core/doctype/file/test_file.py:332 msgid "Home/Test Folder 2" -msgstr "首页/测试文件夹2" +msgstr "主页/测试文件夹2" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' @@ -12057,20 +12151,30 @@ msgstr "按小时维护" msgid "Hourly rate limit for generating password reset links" msgstr "密码重置链接生成速率限制(每小时)" +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "小时" + #. Description of the 'Number Format' (Select) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "How should this currency be formatted? If not set, will use system defaults" -msgstr "本货币应如何格式化?未设置则使用系统默认" +msgstr "货币应该如何格式化?未设置将使用系统默认" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" #. Paragraph text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" msgstr "您当前无工作区访问权限,可创建专属工作区。点击创建工作区按钮创建。
" -#: frappe/core/doctype/data_import/importer.py:1171 -#: frappe/core/doctype/data_import/importer.py:1177 -#: frappe/core/doctype/data_import/importer.py:1242 +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 #: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 @@ -12080,7 +12184,7 @@ msgstr "您当前无工作区访问权限,可创建专属工作区。点击 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "标识符" +msgstr "编号" #: frappe/desk/reportview.py:491 #: frappe/public/js/frappe/views/reports/report_view.js:984 @@ -12095,7 +12199,7 @@ msgstr "标识符(名称)" #. Description of the 'Field Name' (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "ID (name) of the entity whose property is to be set" -msgstr "待设置属性的实体标识符(名称)" +msgstr "拟被设定属性的记录ID(名称)" #. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -12115,7 +12219,7 @@ msgstr "IMAP详情" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "IMAP Folder" -msgstr "IMAP文件夹" +msgstr "收件箱目录" #. Label of the ip_address (Data) field in DocType 'Activity Log' #. Label of the ip_address (Data) field in DocType 'Comment' @@ -12151,24 +12255,24 @@ msgstr "图标" #. Description of the 'Icon' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Icon will appear on the button" -msgstr "按钮上将显示此图标" +msgstr "图标将显示在按钮上" #. Label of the sb_identity_details (Section Break) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Identity Details" -msgstr "身份详情" +msgstr "身份信息" #. Label of the idx (Int) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "索引" +msgstr "IDX" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" -msgstr "若启用严格用户权限且定义文档类型权限,链接字段为空的文档将不可见" +msgstr "如果勾选了“加严用户权限限制”,并为用户定义了“用户权限限制”,则该链接字段值为空的所有单据将不会显示给该用户" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' @@ -12177,22 +12281,22 @@ msgstr "若启用严格用户权限且定义文档类型权限,链接字段为 #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "If Checked workflow status will not override status in list view" -msgstr "勾选后工作流状态不覆盖列表视图状态" +msgstr "如勾选,工作流状态不会覆盖列表视图中的状态字段" #: frappe/core/doctype/doctype/doctype.py:1763 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 #: frappe/public/js/frappe/roles_editor.js:66 msgid "If Owner" -msgstr "如果是所有者" +msgstr "是制单人?" #: frappe/core/page/permission_manager/permission_manager_help.html:25 msgid "If a Role does not have access at Level 0, then higher levels are meaningless." -msgstr "角色在0级无权限时,更高层级权限无效" +msgstr "如果角色没有0级的访问权限,那么无需设置更高级权限" #. Description of the 'Is Active' (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "If checked, all other workflows become inactive." -msgstr "勾选后其他工作流将失效" +msgstr "如果勾选,本单据类型其他工作流将变为失效状态。" #. Description of the 'Show Absolute Values' (Check) field in DocType 'Print #. Format' @@ -12204,18 +12308,18 @@ msgstr "勾选后货币/数量/计数的负值显示为正值" #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "If checked, users will not see the Confirm Access dialog." -msgstr "勾选后用户不会看到访问确认对话框" +msgstr "如果选中,用户将不会看到确认访问对话框。" #. Description of the 'Disabled' (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "If disabled, this role will be removed from all users." -msgstr "禁用后将从所有用户中移除此角色" +msgstr "如果禁用了,这个角色将会从所有用户中删除。" #. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth #. Enabled' (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" -msgstr "启用后用户可从任意IP地址双因素登录,也可在系统设置全局启用" +msgstr "如果启用,用户从任何IP地址登录都需要双重验证,可以在系统设置中为所有用户启用双重验证" #. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -12226,28 +12330,28 @@ msgstr "启用后Web表单提交将匿名处理" #. Enabled' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" -msgstr "启用后所有用户可双因素任意IP登录,也可在用户页单独设置" +msgstr "如果启用,所有用户都可以使用双因素身份验证从任何IP地址登录。这也可以只为用户页面中的特定用户设置" #. Description of the 'Track Changes' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, changes to the document are tracked and shown in timeline" -msgstr "启用后将跟踪文档变更并显示在时间轴" +msgstr "如果启用,对单据的变更会被追踪记录,显示在表单下方的日志记录里" #. Description of the 'Track Views' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, document views are tracked, this can happen multiple times" -msgstr "启用后记录文档查看次数(允许多次记录)" +msgstr "如果启用,系统会记录单据被查看过多少次" #. Description of the 'Track Seen' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "If enabled, the document is marked as seen, the first time a user opens it" -msgstr "启用后用户首次打开文档即标记为已读" +msgstr "如果启用,用户第一次打开单据,系统就会记录单据被查看过" #. Description of the 'Send System Notification' (Check) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." -msgstr "启用后通知将显示在导航栏右上角下拉菜单" +msgstr "如勾选,通知将出现在导航区右上角的通知清单里" #. Description of the 'Enable Password Policy' (Check) field in DocType 'System #. Settings' @@ -12259,55 +12363,55 @@ msgstr "若启用,系统将根据最小密码评分值强制执行密码强度 #. restricted IP Address' (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" -msgstr "启用后受限IP登录用户无需双因素验证" +msgstr "如果启用,从受限制IP地址登录的用户无需双重验证" #. Description of the 'Notify Users On Every Login' (Check) field in DocType #. 'Note' #: frappe/desk/doctype/note/note.json msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." -msgstr "启用后每次登录发送通知,否则仅首次通知" +msgstr "如勾选,用户每次登录时都弹框通知。否则只弹框通知一次。" #. Description of the 'Default Workspace' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If left empty, the default workspace will be the last visited workspace" -msgstr "留空则默认工作区为最近访问的工作区" +msgstr "如果不勾选,默认工作区为最后一次访问的工作区" #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "If non standard port (e.g. 587)" -msgstr "非标准端口时填写(如587)" +msgstr "如果为非标准端口(如587)" #. Description of the 'Port' (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." -msgstr "非标准端口时填写(如587),Google Cloud环境可尝试2525" +msgstr "如果非标准端口(例如587)。如果在Google Cloud上,请尝试使用端口2525。" #. Description of the 'Port' (Data) field in DocType 'Email Account' #. Description of the 'Port' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" -msgstr "非标准端口时填写(如POP3:995/110,IMAP:993/143)" +msgstr "如使用非标端口 (如. POP3: 995/110, IMAP: 993/143)" #. Description of the 'Currency Precision' (Select) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "If not set, the currency precision will depend on number format" -msgstr "未设置时货币精度取决于数字格式" +msgstr "如果未设置,则货币精度将取决于数字格式" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." -msgstr "设置后仅指定角色可访问图表,未设置则使用文档/报表权限" +msgstr "如勾选则仅限分派了这些角色的用户可看到本图表,否则由单据类型或报表权限控制图表是否显示" #. Description of the 'User Type' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" -msgstr "如果用户选中了任何角色,则该用户将成为 \"系统用户\"。\"系统用户 \"可以访问桌面" +msgstr "如果用户检查了任何角色,则该用户将成为“系统用户”。 “系统用户”可以访问桌面" #: frappe/core/page/permission_manager/permission_manager_help.html:38 msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." -msgstr "若指南无效,请在GitHub Issues提交建议" +msgstr "如果这些说明没有帮助,请在Github提交你的建议。" #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' @@ -12319,14 +12423,14 @@ msgstr "若指南无效,请在GitHub Issues提交建议" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "If unchecked, the value will always be re-fetched on save." -msgstr "未勾选时保存操作将重新获取该值" +msgstr "如不勾选则每次保存单据时都刷新本字段值" #. Label of the if_owner (Check) field in DocType 'Custom DocPerm' #. Label of the if_owner (Check) field in DocType 'DocPerm' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "If user is the owner" -msgstr "如果用户是所有者" +msgstr "仅限创建者" #: frappe/core/doctype/data_export/exporter.py:204 msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." @@ -12334,11 +12438,11 @@ msgstr "如果你的操作是更新,请选择“覆盖”否则现有的行不 #: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "如果你在上传新纪录,那么“名录”必须指定。" +msgstr "上传新纪录时,如果有单据编号模板字段,那么“单据编号模板”必须填写。" #: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." -msgstr "如果你在上传新纪录,那么“名称”列必须留空。" +msgstr "如果你在上传新纪录,那么单据编号(ID)列必须留空。" #: frappe/utils/password.py:214 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." @@ -12347,21 +12451,21 @@ msgstr "若近期恢复站点,需复制包含原始密钥的site_config.json #. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "If you set this, this Item will come in a drop-down under the selected parent." -msgstr "设置后本项将作为下拉选项出现在选定父项下" +msgstr "如果维护此上级菜单信息,本菜单项仅作为下级菜单。" #: frappe/templates/emails/administrator_logged_in.html:3 msgid "If you think this is unauthorized, please change the Administrator password." -msgstr "若认为未授权操作,请修改管理员密码" +msgstr "如果你认为这是未经授权的,请更改管理员密码。" #. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." -msgstr "CSV使用其他分隔符时在此填写,确保无空格或其他字符" +msgstr "如果CSV文件使用了逗号,分号与跳格之外的其它分隔符,请在上述输入框添加,请不要加空格和其它字符" #. Description of the 'Source Text' (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." -msgstr "HTML格式数据需完整复制包含标签的代码" +msgstr "如果你的数据是HTML,请复制粘贴的标签准确的HTML代码。" #. Label of the ignore_user_permissions (Check) field in DocType 'DocField' #. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' @@ -12371,7 +12475,7 @@ msgstr "HTML格式数据需完整复制包含标签的代码" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore User Permissions" -msgstr "忽略用户权限" +msgstr "忽略用户权限限制" #. Label of the ignore_xss_filter (Check) field in DocType 'DocField' #. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' @@ -12381,7 +12485,7 @@ msgstr "忽略用户权限" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Ignore XSS Filter" -msgstr "忽略XSS过滤" +msgstr "忽略XSS过滤条件" #. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email #. Account' @@ -12399,7 +12503,7 @@ msgstr "忽略的应用" #: frappe/model/workflow.py:146 msgid "Illegal Document Status for {0}" -msgstr "{0}的文档状态非法" +msgstr "{0}非法单据状态" #: frappe/model/db_query.py:452 frappe/model/db_query.py:455 #: frappe/model/db_query.py:1129 @@ -12455,7 +12559,7 @@ msgstr "图片链接" #: frappe/public/js/frappe/list/base_list.js:208 msgid "Image View" -msgstr "图片视图" +msgstr "图像视图" #. Label of the image_width (Float) field in DocType 'Letter Head' #. Label of the footer_image_width (Float) field in DocType 'Letter Head' @@ -12465,17 +12569,17 @@ msgstr "图片宽度" #: frappe/core/doctype/doctype/doctype.py:1506 msgid "Image field must be a valid fieldname" -msgstr "图片字段必须是有效字段名" +msgstr "图像字段必须是有效的字段名" #: frappe/core/doctype/doctype/doctype.py:1508 msgid "Image field must be of type Attach Image" -msgstr "图片字段类型必须为附件图片" +msgstr "图像字段的类型必须为附着图像" #: frappe/core/doctype/file/utils.py:136 msgid "Image link '{0}' is not valid" msgstr "图片链接'{0}'无效" -#: frappe/core/doctype/file/file.js:107 +#: frappe/core/doctype/file/file.js:108 msgid "Image optimized" msgstr "图片已优化" @@ -12485,17 +12589,17 @@ msgstr "图片:数据流损坏" #: frappe/public/js/frappe/views/image/image_view.js:13 msgid "Images" -msgstr "图片集" +msgstr "图片" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.js:378 msgid "Impersonate" -msgstr "模拟登录" +msgstr "用其它用户身份登录" #: frappe/core/doctype/user/user.js:405 msgid "Impersonate as {0}" -msgstr "模拟为{0}" +msgstr "被模拟的用户" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 msgid "Impersonated by {0}" @@ -12523,7 +12627,7 @@ msgstr "隐式" msgid "Import" msgstr "导入" -#: frappe/public/js/frappe/list/list_view.js:1766 +#: frappe/public/js/frappe/list/list_view.js:1764 msgctxt "Button in list view menu" msgid "Import" msgstr "导入" @@ -12536,7 +12640,7 @@ msgstr "导入数据" #: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" -msgstr "从邮件导入" +msgstr "导入电子邮件.." #. Label of the import_file (Attach) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -12547,7 +12651,7 @@ msgstr "导入文件" #. Import' #: frappe/core/doctype/data_import/data_import.json msgid "Import File Errors and Warnings" -msgstr "导入文件错误与警告" +msgstr "导入文件错误与警告信息" #. Label of the import_log_section (Section Break) field in DocType 'Data #. Import' @@ -12586,7 +12690,7 @@ msgstr "导入警告" #: frappe/public/js/frappe/views/file/file_view.js:117 msgid "Import Zip" -msgstr "导入压缩包" +msgstr "导入压缩文件" #. Label of the google_sheets_url (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -12611,7 +12715,7 @@ msgstr "禁止导入{0}" #: frappe/integrations/doctype/google_contacts/google_contacts.js:19 msgid "Importing {0} of {1}" -msgstr "正在导入{1}中的{0}" +msgstr "导入{1}的{0}" #: frappe/core/doctype/data_import/data_import.js:35 msgid "Importing {0} of {1}, {2}" @@ -12619,20 +12723,20 @@ msgstr "正在导入{1}中的{0},{2}" #: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" -msgstr "包含" +msgstr "包括" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In Days" -msgstr "天数内" +msgstr "天数" #. Label of the in_filter (Check) field in DocType 'DocField' #. Label of the in_filter (Check) field in DocType 'Customize Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Filter" -msgstr "过滤条件中" +msgstr "是自定义过滤字段" #. Label of the in_global_search (Check) field in DocType 'DocField' #. Label of the in_global_search (Check) field in DocType 'Custom Field' @@ -12642,16 +12746,16 @@ msgstr "过滤条件中" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Global Search" -msgstr "全局搜索中" +msgstr "允许全局全文检索" #: frappe/core/doctype/doctype/doctype.js:88 msgid "In Grid View" -msgstr "网格视图中" +msgstr "在表格视图中显示" #. Label of the in_standard_filter (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "In List Filter" -msgstr "列表过滤中" +msgstr "列表过滤条件" #. Label of the in_list_view (Check) field in DocType 'DocField' #. Label of the in_list_view (Check) field in DocType 'Custom Field' @@ -12661,11 +12765,11 @@ msgstr "列表过滤中" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In List View" -msgstr "列表视图中" +msgstr "在列表视图中显示" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 msgid "In Minutes" -msgstr "分钟内" +msgstr "分钟" #. Label of the in_preview (Check) field in DocType 'DocField' #. Label of the in_preview (Check) field in DocType 'Custom Field' @@ -12674,7 +12778,7 @@ msgstr "分钟内" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Preview" -msgstr "预览中" +msgstr "包含在链接字段鼠标悬停预览弹窗中" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" @@ -12687,7 +12791,7 @@ msgstr "只读模式中" #. Label of the in_reply_to (Link) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "回复对象" +msgstr "回复" #. Label of the in_standard_filter (Check) field in DocType 'Custom Field' #. Label of the in_standard_filter (Check) field in DocType 'Customize Form @@ -12695,22 +12799,22 @@ msgstr "回复对象" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "In Standard Filter" -msgstr "标准过滤中" +msgstr "是标准过滤字段" #. Description of the 'Font Size' (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "In points. Default is 9." -msgstr "点数(默认9点)" +msgstr "以点为单位。默认值是9。" #. Description of the 'Allow Login After Fail' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "In seconds" -msgstr "秒数" +msgstr "秒" #: frappe/core/doctype/recorder/recorder_list.js:209 msgid "Inactive" -msgstr "未激活" +msgstr "失效" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -12722,7 +12826,7 @@ msgstr "收件箱" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_account/email_account.json msgid "Inbox User" -msgstr "收件箱用户" +msgstr "邮件收件箱用户" #: frappe/public/js/frappe/list/base_list.js:209 msgid "Inbox View" @@ -12740,7 +12844,7 @@ msgstr "包含名称字段" #. Label of the navbar_search (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Include Search in Top Bar" -msgstr "顶部栏包含搜索" +msgstr "在顶栏添加搜索框" #: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" @@ -12751,17 +12855,21 @@ msgstr "包含应用主题" msgid "Include Web View Link in Email" msgstr "邮件包含网页视图链接" -#: frappe/public/js/frappe/views/reports/query_report.js:1594 +#: frappe/public/js/frappe/views/reports/query_report.js:1619 msgid "Include filters" -msgstr "包含过滤器" +msgstr "包括过滤条件" -#: frappe/public/js/frappe/views/reports/query_report.js:1586 +#: frappe/public/js/frappe/views/reports/query_report.js:1639 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1611 msgid "Include indentation" -msgstr "包含缩进" +msgstr "包括缩进" #: frappe/public/js/frappe/form/controls/password.js:106 msgid "Include symbols, numbers and capital letters in the password" -msgstr "密码需包含符号、数字和大写字母" +msgstr "在密码中加入符号,数字和大写字母" #. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email #. Account' @@ -12773,7 +12881,7 @@ msgstr "入站" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Incoming (POP/IMAP) Settings" -msgstr "入站(POP/IMAP)设置" +msgstr "收邮件设置" #. Label of the incoming_emails_last_7_days_column (Column Break) field in #. DocType 'System Health Report' @@ -12786,17 +12894,17 @@ msgstr "入站邮件(最近7天)" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Server" -msgstr "入站服务器" +msgstr "接收邮件服务器" #. Label of the mailbox_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Incoming Settings" -msgstr "入站设置" +msgstr "收邮件设置" #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" -msgstr "入站邮件账户配置错误" +msgstr "邮件收件箱帐号不正确" #: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" @@ -12804,7 +12912,7 @@ msgstr "虚拟文档类型实现不完整" #: frappe/auth.py:255 msgid "Incomplete login details" -msgstr "登录信息不完整" +msgstr "登录详细信息不完整" #: frappe/email/smtp.py:104 msgid "Incorrect Configuration" @@ -12816,17 +12924,17 @@ msgstr "URL错误" #: frappe/utils/password.py:101 msgid "Incorrect User or Password" -msgstr "用户名或密码错误" +msgstr "不正确的用户或密码" #: frappe/twofactor.py:176 frappe/twofactor.py:188 msgid "Incorrect Verification code" -msgstr "验证码错误" +msgstr "验证码不正确" -#: frappe/model/document.py:1541 +#: frappe/model/document.py:1551 msgid "Incorrect value in row {0}:" msgstr "第{0}行值错误:" -#: frappe/model/document.py:1543 +#: frappe/model/document.py:1553 msgid "Incorrect value:" msgstr "错误值:" @@ -12866,16 +12974,16 @@ msgstr "索引刷新令牌" #. Label of the indicator (Select) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Indicator" -msgstr "指示器" +msgstr "指示符" #. Label of the indicator_color (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Indicator Color" -msgstr "指示器颜色" +msgstr "指示灯颜色" #: frappe/public/js/frappe/views/workspace/workspace.js:463 msgid "Indicator color" -msgstr "指示器颜色" +msgstr "指示器颜色(快捷方式右上角数字)" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Style' (Select) field in DocType 'Workflow State' @@ -12891,12 +12999,12 @@ msgstr "信息:" #. Label of the initial_sync_count (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Initial Sync Count" -msgstr "初始同步数量" +msgstr "初始同步计数" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "InnoDB" -msgstr "InnoDB引擎" +msgstr "InnoDB" #. Description of the 'New Role' (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json @@ -12909,29 +13017,29 @@ msgstr "插入" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Above" -msgstr "在上方插入" +msgstr "在上面插入" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1824 +#: frappe/public/js/frappe/views/reports/query_report.js:1874 msgid "Insert After" -msgstr "之后插入" +msgstr "在后边插入" #: frappe/custom/doctype/custom_field/custom_field.py:251 msgid "Insert After cannot be set as {0}" -msgstr "无法设置{0}为插入位置" +msgstr "在后边插入不能设置为{0}" #: frappe/custom/doctype/custom_field/custom_field.py:244 msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" -msgstr "自定义字段'{1}({2})'中指定的插入位置字段'{0}'不存在" +msgstr "在自定义字段“{1}”中参照的标题为“{2}”字段“{0}”不存在" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Below" -msgstr "在下方插入" +msgstr "下面插入" #: frappe/public/js/frappe/views/reports/report_view.js:390 msgid "Insert Column Before {0}" -msgstr "在{0}前插入列" +msgstr "在{0}之前插入列" #: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" @@ -12972,19 +13080,19 @@ msgstr "已安装应用" #. Label of the instructions (HTML) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Instructions" -msgstr "操作指南" +msgstr "说明" #: frappe/templates/includes/login/login.js:261 msgid "Instructions Emailed" -msgstr "已邮件发送操作指南" +msgstr "电子邮件说明" -#: frappe/permissions.py:827 +#: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" msgstr "{0}权限级别不足" -#: frappe/database/query.py:383 +#: frappe/database/query.py:806 frappe/database/query.py:1052 msgid "Insufficient Permission for {0}" -msgstr "{0}权限不足" +msgstr "{0} 权限不足" #: frappe/desk/reportview.py:360 msgid "Insufficient Permissions for deleting Report" @@ -13013,7 +13121,7 @@ msgstr "附件限制不足" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Int" -msgstr "整型" +msgstr "整数" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json @@ -13033,7 +13141,7 @@ msgstr "集成" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "集成系统可通过此字段设置邮件投递状态" +msgstr "集成可以使用此字段来设置邮件发送状态" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -13043,21 +13151,21 @@ msgstr "间" #. Label of the interest (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "兴趣领域" +msgstr "兴趣爱好" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Intermediate" -msgstr "中间状态" +msgstr "中级" #: frappe/public/js/frappe/request.js:235 msgid "Internal Server Error" -msgstr "服务器内部错误" +msgstr "内部服务器错误" #. Description of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "Internal record of document shares" -msgstr "文档共享的内部记录" +msgstr "文件分享的内部记录" #. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -13068,7 +13176,7 @@ msgstr "介绍视频URL" #. 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Introduce your company to the website visitor." -msgstr "向网站访问者介绍您的公司" +msgstr "向网站访客介绍贵公司。" #. Label of the introduction_section (Section Break) field in DocType 'Contact #. Us Settings' @@ -13078,7 +13186,7 @@ msgstr "向网站访问者介绍您的公司" #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form/web_form.json msgid "Introduction" -msgstr "简介" +msgstr "介绍" #. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us #. Settings' @@ -13104,7 +13212,7 @@ msgstr "无效" msgid "Invalid \"depends_on\" expression" msgstr "“depends_on”表达式无效" -#: frappe/public/js/frappe/views/reports/query_report.js:513 +#: frappe/public/js/frappe/views/reports/query_report.js:514 msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "在过滤器{0}中设置了无效的“ depends_on”表达式" @@ -13130,9 +13238,9 @@ msgstr "无效条件:{}" #: frappe/email/smtp.py:135 msgid "Invalid Credentials" -msgstr "凭证无效" +msgstr "无效证件" -#: frappe/utils/data.py:136 frappe/utils/data.py:299 +#: frappe/utils/data.py:146 frappe/utils/data.py:309 msgid "Invalid Date" msgstr "日期无效" @@ -13140,7 +13248,7 @@ msgstr "日期无效" msgid "Invalid DocType" msgstr "文档类型无效" -#: frappe/database/query.py:103 +#: frappe/database/query.py:144 msgid "Invalid DocType: {0}" msgstr "无效文档类型:{0}" @@ -13152,9 +13260,14 @@ msgstr "字段名无效" msgid "Invalid File URL" msgstr "文件URL无效" +#: frappe/database/query.py:427 frappe/database/query.py:454 +#: frappe/database/query.py:464 frappe/database/query.py:487 +msgid "Invalid Filter" +msgstr "" + #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" -msgstr "{1}类型字段{0}的过滤格式无效,请使用字段过滤图标正确设置" +msgstr "类型 {1} 的字段 {0} 链接字段筛选条件无效,请点击字段右上角漏斗过滤图标在弹窗中设置过滤条件" #: frappe/utils/dashboard.py:61 msgid "Invalid Filter Value" @@ -13162,23 +13275,23 @@ msgstr "过滤值无效" #: frappe/website/doctype/website_settings/website_settings.py:83 msgid "Invalid Home Page" -msgstr "主页设置无效" +msgstr "无效的主页" -#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153 +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" -msgstr "链接无效" +msgstr "无效链接" #: frappe/www/login.py:128 msgid "Invalid Login Token" -msgstr "登录令牌无效" +msgstr "无效登录令牌" #: frappe/templates/includes/login/login.js:290 msgid "Invalid Login. Try again." -msgstr "登录无效,请重试" +msgstr "登录无效。再试一次。" #: frappe/email/receive.py:112 frappe/email/receive.py:149 msgid "Invalid Mail Server. Please rectify and try again." -msgstr "邮件服务器配置错误,请修正后重试" +msgstr "无效的邮件服务器,请纠正后重试。" #: frappe/model/naming.py:101 msgid "Invalid Naming Series: {}" @@ -13192,15 +13305,15 @@ msgstr "无效操作" #: frappe/core/doctype/doctype/doctype.py:1641 #: frappe/core/doctype/doctype/doctype.py:1650 msgid "Invalid Option" -msgstr "无效选项" +msgstr "错误选项" #: frappe/email/smtp.py:103 msgid "Invalid Outgoing Mail Server or Port: {0}" msgstr "出站邮件服务器或端口无效:{0}" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:188 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 msgid "Invalid Output Format" -msgstr "输出格式无效" +msgstr "无效的输出格式" #: frappe/model/base_document.py:116 msgid "Invalid Override" @@ -13210,24 +13323,24 @@ msgstr "无效覆盖" msgid "Invalid Parameters." msgstr "参数无效" -#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123 -#: frappe/www/update-password.html:144 frappe/www/update-password.html:146 -#: frappe/www/update-password.html:247 +#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 msgid "Invalid Password" -msgstr "密码无效" +msgstr "无效的密码" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:123 msgid "Invalid Phone Number" msgstr "电话号码无效" #: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" -msgstr "请求无效" +msgstr "无效请求" #: frappe/desk/search.py:26 msgid "Invalid Search Field {0}" -msgstr "搜索字段{0}无效" +msgstr "无效的搜索字段{0}" #: frappe/core/doctype/doctype/doctype.py:1214 msgid "Invalid Table Fieldname" @@ -13246,7 +13359,7 @@ msgstr "URL无效" #: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." -msgstr "用户名或支持密码错误,请修正后重试" +msgstr "无效的用户名或支持密码。请纠正然后重试。" #: frappe/public/js/frappe/ui/field_group.js:137 msgid "Invalid Values" @@ -13260,11 +13373,39 @@ msgstr "Webhook密钥无效" msgid "Invalid aggregate function" msgstr "无效聚合函数" +#: frappe/database/query.py:1542 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/database/query.py:1468 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1444 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:460 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:575 +msgid "Invalid characters in table name: {0}" +msgstr "" + #: frappe/public/js/frappe/views/reports/report_view.js:399 msgid "Invalid column" msgstr "无效列" -#: frappe/model/document.py:1014 frappe/model/document.py:1028 +#: frappe/database/query.py:381 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:787 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1016 frappe/model/document.py:1030 msgid "Invalid docstatus" msgstr "文档状态无效" @@ -13276,23 +13417,58 @@ msgstr "过滤器{0}中的表达式无效" msgid "Invalid expression set in filter {0} ({1})" msgstr "过滤器{0}({1})中的表达式无效" -#: frappe/utils/data.py:2186 +#: frappe/database/query.py:1301 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:734 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1620 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2197 msgid "Invalid field name {0}" -msgstr "字段名{0}无效" +msgstr "字段名称{0}无效" + +#: frappe/model/db_query.py:1133 +msgid "Invalid field name: {0}" +msgstr "" + +#: frappe/database/query.py:668 +msgid "Invalid field type: {0}" +msgstr "" #: frappe/core/doctype/doctype/doctype.py:1085 msgid "Invalid fieldname '{0}' in autoname" -msgstr "自动命名中的字段名'{0}'无效" +msgstr "编号规则中字段名“{0}”无效" #: frappe/deprecation_dumpster.py:283 msgid "Invalid file path: {0}" -msgstr "文件路径无效:{0}" +msgstr "无效的文件路径:{0}" + +#: frappe/database/query.py:364 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:450 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" -#: frappe/database/query.py:189 #: frappe/public/js/frappe/ui/filters/filter_list.js:201 msgid "Invalid filter: {0}" msgstr "无效过滤器:{0}" +#: frappe/database/query.py:1422 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1383 +msgid "Invalid function dictionary format" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" @@ -13314,10 +13490,22 @@ msgstr "导入内容无效或损坏" msgid "Invalid redirect regex in row #{}: {}" msgstr "第{}行重定向正则表达式无效:{}" -#: frappe/app.py:317 +#: frappe/app.py:337 msgid "Invalid request arguments" msgstr "请求参数无效" +#: frappe/database/query.py:410 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:341 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1489 +msgid "Invalid string literal format: {0}" +msgstr "" + #: frappe/core/doctype/data_import/importer.py:430 msgid "Invalid template file for import" msgstr "导入模板文件无效" @@ -13351,11 +13539,11 @@ msgstr "{0}条件无效" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Inverse" -msgstr "反向" +msgstr "反转" #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" -msgstr "邀请为用户" +msgstr "邀请成为用户" #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" @@ -13364,19 +13552,19 @@ msgstr "是" #. Label of the is_active (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Is Active" -msgstr "是否激活" +msgstr "生效" #. Label of the is_attachments_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Attachments Folder" -msgstr "是否为附件文件夹" +msgstr "是附件文件夹" #. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' #. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" -msgstr "是否日历/甘特图" +msgstr "有日历与甘特图视图" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' @@ -13384,31 +13572,31 @@ msgstr "是否日历/甘特图" #: frappe/core/doctype/doctype/doctype_list.js:49 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" -msgstr "是否为子表" +msgstr "是子表" #. Label of the is_complete (Check) field in DocType 'Module Onboarding' #. Label of the is_complete (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/module_onboarding/module_onboarding.json #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Complete" -msgstr "是否完成" +msgstr "已完成" #. Label of the is_completed (Check) field in DocType 'Email Flag Queue' #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Is Completed" -msgstr "是否已完成" +msgstr "完成了" #. Label of the is_custom (Check) field in DocType 'Role' #. Label of the is_custom (Check) field in DocType 'User Document Type' #: frappe/core/doctype/role/role.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" -msgstr "是否自定义" +msgstr "定制?" #. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Custom Field" -msgstr "是否自定义字段" +msgstr "是自定义字段" #. Label of the is_default (Check) field in DocType 'Address Template' #. Label of the is_default (Check) field in DocType 'User Permission' @@ -13418,74 +13606,74 @@ msgstr "是否自定义字段" #: frappe/core/doctype/user_permission/user_permission_list.js:69 #: frappe/desk/doctype/dashboard/dashboard.json msgid "Is Default" -msgstr "是否默认" +msgstr "默认" #. Label of the is_dynamic_url (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Is Dynamic URL?" -msgstr "是否动态URL" +msgstr "是动态网址?" #. Label of the is_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Folder" -msgstr "是否为文件夹" +msgstr "是文件夹" #: frappe/public/js/frappe/list/list_filter.js:43 msgid "Is Global" -msgstr "是否全局" +msgstr "全局有效?" #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" -msgstr "是否隐藏" +msgstr "隐藏" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "是否主文件夹" +msgstr "主文件夹" #. Label of the reqd (Check) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Is Mandatory Field" -msgstr "是否为必填字段" +msgstr "必填字段" #. Label of the is_optional_state (Check) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Is Optional State" -msgstr "是否为可选状态" +msgstr "是可选状态" #. Label of the is_primary (Check) field in DocType 'Contact Email' #: frappe/contacts/doctype/contact_email/contact_email.json msgid "Is Primary" -msgstr "是否主要" +msgstr "首选" #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Is Primary Contact" -msgstr "是否主要联系人" +msgstr "首选" #. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Mobile" -msgstr "是否主要手机号" +msgstr "首选联系手机" #. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Is Primary Phone" -msgstr "是否主要电话" +msgstr "首选联系电话" #. Label of the is_private (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Private" -msgstr "是否私有" +msgstr "私有?" #. Label of the is_public (Check) field in DocType 'Dashboard Chart' #. Label of the is_public (Check) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Is Public" -msgstr "是否公开" +msgstr "公开" #. Label of the is_published_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -13494,13 +13682,13 @@ msgstr "是否发布字段" #: frappe/core/doctype/doctype/doctype.py:1515 msgid "Is Published Field must be a valid fieldname" -msgstr "发布字段必须是有效的字段名" +msgstr "已发布字段必须是有效字段" #. Label of the is_query_report (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:341 msgid "Is Query Report" -msgstr "是否为查询报告" +msgstr "是查询报表" #. Label of the is_remote_request (Check) field in DocType 'Integration #. Request' @@ -13520,7 +13708,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype_list.js:64 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" -msgstr "是否为单实例" +msgstr "是单笔记录?" #. Label of the is_skipped (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -13530,7 +13718,7 @@ msgstr "已跳过" #. Label of the is_spam (Check) field in DocType 'Email Rule' #: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "是否为垃圾信息" +msgstr "是垃圾邮件" #. Label of the is_standard (Check) field in DocType 'Navbar Item' #. Label of the is_standard (Select) field in DocType 'Report' @@ -13549,13 +13737,13 @@ msgstr "是否为垃圾信息" #: frappe/desk/doctype/number_card/number_card.json #: frappe/email/doctype/notification/notification.json msgid "Is Standard" -msgstr "是否为标准" +msgstr "系统自带" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:39 msgid "Is Submittable" -msgstr "可提交" +msgstr "可提交(审批)" #. Label of the is_system_generated (Check) field in DocType 'Custom Field' #. Label of the is_system_generated (Check) field in DocType 'Customize Form @@ -13565,12 +13753,12 @@ msgstr "可提交" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" -msgstr "系统生成" +msgstr "由系统生成" #. Label of the istable (Check) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Table" -msgstr "是否为表格" +msgstr "是子表" #. Label of the is_table_field (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -13580,7 +13768,7 @@ msgstr "是否为表格字段" #. Label of the is_tree (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Is Tree" -msgstr "树状结构" +msgstr "支持树形结构" #. Label of the is_unique (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json @@ -13594,7 +13782,7 @@ msgstr "唯一性" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Is Virtual" -msgstr "虚拟字段" +msgstr "虚拟" #. Label of the is_standard (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -13603,7 +13791,7 @@ msgstr "标准字段" #: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 msgid "It is risky to delete this file: {0}. Please contact your System Manager." -msgstr "删除此文件存在风险:{0}。请联系系统管理员。" +msgstr "删除此文件有风险:{0}。请联系您的系统管理员。" #. Label of the item_label (Data) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json @@ -13622,7 +13810,7 @@ msgstr "项目不能添加至其子节点" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "JS" -msgstr "JavaScript" +msgstr "JS" #. Label of the js_message (HTML) field in DocType 'Custom HTML Block' #: frappe/desk/doctype/custom_html_block/custom_html_block.json @@ -13654,12 +13842,12 @@ msgstr "张三" #. Label of the js (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "JavaScript" +msgstr "JavaScript的" #. Description of the 'Javascript' (Code) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" -msgstr "JavaScript格式:frappe.query_reports['报告名称'] = {}" +msgstr "JavaScript格式:frappe.query_reports ['REPORTNAME'] = {}" #. Label of the javascript (Code) field in DocType 'Report' #. Label of the javascript_section (Section Break) field in DocType 'Custom @@ -13671,7 +13859,7 @@ msgstr "JavaScript格式:frappe.query_reports['报告名称'] = {}" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_script/website_script.json msgid "Javascript" -msgstr "JavaScript" +msgstr "Javascript" #: frappe/www/login.html:74 msgid "Javascript is disabled on your browser" @@ -13680,14 +13868,14 @@ msgstr "浏览器已禁用JavaScript" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Jinja" -msgstr "Jinja模板" +msgstr "Jinja" #. Label of the job_id (Data) field in DocType 'Prepared Report' #. Label of the job_id (Data) field in DocType 'RQ Job' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/rq_job/rq_job.json msgid "Job ID" -msgstr "作业ID" +msgstr "任务ID" #. Label of the job_id (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json @@ -13697,17 +13885,17 @@ msgstr "作业ID" #. Label of the job_info_section (Section Break) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Info" -msgstr "作业信息" +msgstr "任务信息" #. Label of the job_name (Data) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Name" -msgstr "作业名称" +msgstr "任务名" #. Label of the job_status_section (Section Break) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Status" -msgstr "作业状态" +msgstr "任务状态" #: frappe/core/doctype/rq_job/rq_job.js:24 msgid "Job Stopped Successfully" @@ -13725,10 +13913,10 @@ msgstr "作业未运行。" msgid "Join video conference with {0}" msgstr "加入与{0}的视频会议" -#: frappe/public/js/frappe/form/toolbar.js:395 -#: frappe/public/js/frappe/form/toolbar.js:830 +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" -msgstr "跳转到字段" +msgstr "定位到字段" #: frappe/public/js/frappe/utils/number_systems.js:17 #: frappe/public/js/frappe/utils/number_systems.js:31 @@ -13750,20 +13938,20 @@ msgstr "看板" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:511 msgid "Kanban Board" -msgstr "看板面板" +msgstr "看板" #. Name of a DocType #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Kanban Board Column" -msgstr "看板面板列" +msgstr "看板列" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:387 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 msgid "Kanban Board Name" -msgstr "看板面板名称" +msgstr "看板名称" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:264 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "看板设置" @@ -13775,12 +13963,12 @@ msgstr "看板视图" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json msgid "Keep track of all update feeds" -msgstr "跟踪所有更新动态" +msgstr "跟踪所有更新提要" #. Description of a DocType #: frappe/core/doctype/communication/communication.json msgid "Keeps track of all communications" -msgstr "记录所有沟通记录" +msgstr "跟踪所有通信" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' @@ -13795,7 +13983,7 @@ msgstr "记录所有沟通记录" #: frappe/integrations/doctype/webhook_header/webhook_header.json #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Key" -msgstr "键" +msgstr "键值" #. Label of a standard help item #. Type: Action @@ -13853,12 +14041,12 @@ msgstr "LDAP自定义设置" #. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Email Field" -msgstr "LDAP邮箱字段" +msgstr "LDAP电子邮件字段" #. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP First Name Field" -msgstr "LDAP名字字段" +msgstr "LDAP 姓名字段" #. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json @@ -13905,7 +14093,7 @@ msgstr "LDAP手机字段" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 msgid "LDAP Not Installed" -msgstr "未安装LDAP" +msgstr "LDAP未安装" #. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -13930,7 +14118,7 @@ msgstr "LDAP搜索路径" #. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Security" -msgstr "LDAP安全" +msgstr "LDAP安全性" #. Label of the ldap_server_settings_section (Section Break) field in DocType #. 'LDAP Settings' @@ -13964,7 +14152,7 @@ msgstr "LDAP用户名字段" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 msgid "LDAP is not enabled." -msgstr "未启用LDAP。" +msgstr "LDAP未启用。" #. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -14034,26 +14222,26 @@ msgstr "标签" #. Label of the label_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Label Help" -msgstr "标签说明" +msgstr "标签帮助" #. Label of the label_and_type (Section Break) field in DocType 'Customize Form #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Label and Type" -msgstr "标签与类型" +msgstr "标签和类型" #: frappe/custom/doctype/custom_field/custom_field.py:145 msgid "Label is mandatory" -msgstr "标签必填" +msgstr "标签信息必填" #. Label of the sb0 (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Landing Page" -msgstr "落地页" +msgstr "登录页面" -#: frappe/public/js/frappe/form/print_utils.js:30 +#: frappe/public/js/frappe/form/print_utils.js:17 msgid "Landscape" -msgstr "横向" +msgstr "横向打印" #. Name of a DocType #. Label of the language (Link) field in DocType 'System Settings' @@ -14106,7 +14294,7 @@ msgstr "过去90天" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "最后活跃" +msgstr "最后活动" #. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -14116,12 +14304,12 @@ msgstr "最后执行" #. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Last Heartbeat" -msgstr "最后心跳" +msgstr "上一次心跳" #. Label of the last_ip (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last IP" -msgstr "最后IP" +msgstr "最后登录IP" #. Label of the last_known_versions (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14135,30 +14323,30 @@ msgstr "最后登录" #: frappe/email/doctype/notification/notification.js:32 msgid "Last Modified Date" -msgstr "最后修改日期" +msgstr "上次修改日期" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 msgid "Last Modified On" -msgstr "最后修改时间" +msgstr "上次修改" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "上月" +msgstr "上个月" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 msgid "Last Name" -msgstr "姓氏" +msgstr "姓" #. Label of the last_password_reset_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Password Reset Date" -msgstr "最后密码重置日期" +msgstr "上次密码重置日期" #. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -14180,7 +14368,7 @@ msgstr "最后运行" #. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Last Sync On" -msgstr "最后同步时间" +msgstr "上次同步开启" #. Label of the last_synced_at (Datetime) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -14190,7 +14378,7 @@ msgstr "最后同步于" #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "最后同步时间" +msgstr "最后同步" #: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 #: frappe/public/js/frappe/model/model.js:130 @@ -14200,7 +14388,7 @@ msgstr "最后更新人" #: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 #: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" -msgstr "最后更新时间" +msgstr "最后更新日期" #. Label of the last_user (Link) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -14221,7 +14409,7 @@ msgstr "去年" #: frappe/public/js/frappe/widgets/chart_widget.js:753 msgid "Last synced {0}" -msgstr "最后同步于{0}" +msgstr "上次同步{0}" #: frappe/custom/doctype/customize_form/customize_form.js:194 msgid "Layout Reset" @@ -14238,17 +14426,17 @@ msgstr "了解更多" #. Description of the 'Repeat Till' (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Leave blank to repeat always" -msgstr "留空则始终重复" +msgstr "留空将一直重复" #: frappe/core/doctype/communication/mixins.py:207 #: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" -msgstr "退出此对话" +msgstr "离开这个谈话" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "分类账" +msgstr "会计凭证" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -14257,7 +14445,7 @@ msgstr "分类账" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Left" -msgstr "左对齐" +msgstr "左" #: frappe/printing/page/print_format_builder/print_format_builder.js:483 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 @@ -14268,16 +14456,16 @@ msgstr "左对齐" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Bottom" -msgstr "左下" +msgstr "左侧底部" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Left Center" -msgstr "左中" +msgstr "左侧中间" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" -msgstr "已退出此对话" +msgstr "离开了这个谈话" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -14299,7 +14487,7 @@ msgstr "传入数据数组长度超过最大允许标签点数!" #: frappe/database/schema.py:134 msgid "Length of {0} should be between 1 and 1000" -msgstr "{0}的长度应在1到1000之间" +msgstr "的{0}长度应介于1和1000之间" #: frappe/public/js/frappe/widgets/chart_widget.js:729 msgid "Less" @@ -14324,11 +14512,11 @@ msgstr "开始吧" #: frappe/utils/password_strength.py:111 msgid "Let's avoid repeated words and characters" -msgstr "请避免重复的单词和字符" +msgstr "让我们避免重复的字、词" #: frappe/desk/page/setup_wizard/setup_wizard.js:474 msgid "Let's set up your account" -msgstr "让我们设置您的账户" +msgstr "设置账号" #: frappe/public/js/frappe/widgets/onboarding_widget.js:263 #: frappe/public/js/frappe/widgets/onboarding_widget.js:304 @@ -14340,36 +14528,36 @@ msgstr "让我们带您回到初始化配置" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Letter" -msgstr "信纸" +msgstr "信" #. Label of the letter_head (Link) field in DocType 'Report' #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:20 +#: frappe/public/js/frappe/form/print_utils.js:43 #: frappe/public/js/frappe/form/templates/print_layout.html:16 #: frappe/public/js/frappe/list/bulk_operations.js:52 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 msgid "Letter Head" -msgstr "信头" +msgstr "打印表头" #. Label of the source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Based On" -msgstr "基于的信头" +msgstr "表头类型" #. Label of the letter_head_image_section (Section Break) field in DocType #. 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head Image" -msgstr "信头图片" +msgstr "表头图片" #. Label of the letter_head_name (Data) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 msgid "Letter Head Name" -msgstr "信头名称" +msgstr "表头名称" #: frappe/printing/doctype/letter_head/letter_head.js:30 msgid "Letter Head Scripts" @@ -14383,7 +14571,7 @@ msgstr "信头不能同时禁用并设为默认" #. Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Letter Head in HTML" -msgstr "HTML格式信头" +msgstr "打印表头HTML" #. Label of the permlevel (Int) field in DocType 'Custom DocPerm' #. Label of the permlevel (Int) field in DocType 'DocPerm' @@ -14395,11 +14583,11 @@ msgstr "HTML格式信头" #: frappe/public/js/frappe/roles_editor.js:66 #: frappe/website/doctype/help_article/help_article.json msgid "Level" -msgstr "层级" +msgstr "级别" #: frappe/core/page/permission_manager/permission_manager.js:467 msgid "Level 0 is for document level permissions, higher levels for field level permissions." -msgstr "层级0为文档级权限,更高层级为字段级权限。" +msgstr "级别0为单据级权限,大于0为字段级权限。" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 msgid "Library" @@ -14413,7 +14601,7 @@ msgstr "许可证" #. Label of the license_type (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "License Type" -msgstr "许可证类型" +msgstr "软件许可证类型" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14440,7 +14628,7 @@ msgstr "浅色主题" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "点赞" +msgstr "含关键字" #. Label of the like_limit (Int) field in DocType 'Blog Settings' #: frappe/website/doctype/blog_settings/blog_settings.json @@ -14458,27 +14646,31 @@ msgstr "在{0}点赞:{1}" #: frappe/desk/like.py:92 msgid "Liked" -msgstr "已点赞" +msgstr "喜欢" #: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 #: frappe/public/js/frappe/model/model.js:134 msgid "Liked By" -msgstr "点赞人" +msgstr "谁喜欢" #. Label of the likes (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Likes" -msgstr "点赞数" +msgstr "喜欢" #. Label of the limit (Int) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Limit" -msgstr "限制" +msgstr "最大数量" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "折线图" +msgstr "线图" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -14511,7 +14703,7 @@ msgstr "链接" #. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Link Cards" -msgstr "链接卡片" +msgstr "快速访问卡" #. Label of the link_count (Int) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json @@ -14531,12 +14723,12 @@ msgstr "链接详情" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "链接文档类型" +msgstr "源单据类型" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Document Type" -msgstr "链接文档类型" +msgstr "源单据类型" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 #: frappe/workflow/doctype/workflow_action/workflow_action.py:202 @@ -14547,7 +14739,7 @@ msgstr "链接已过期" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Link Field Results Limit" -msgstr "链接字段结果限制" +msgstr "链接字段下拉显示笔数(默认10,最大50)" #. Label of the link_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json @@ -14563,7 +14755,7 @@ msgstr "链接字段名" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Link Filters" -msgstr "链接筛选器" +msgstr "链接字段筛选条件" #. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' @@ -14572,14 +14764,14 @@ msgstr "链接筛选器" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Name" -msgstr "链接名称" +msgstr "关联单据编号(名称)" #. Label of the link_title (Read Only) field in DocType 'Communication Link' #. Label of the link_title (Read Only) field in DocType 'Dynamic Link' #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/dynamic_link/dynamic_link.json msgid "Link Title" -msgstr "链接标题" +msgstr "关联单据标题" #. Label of the link_to (Dynamic Link) field in DocType 'Workspace' #. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' @@ -14591,7 +14783,7 @@ msgstr "链接标题" #: frappe/public/js/frappe/widgets/widget_dialog.js:281 #: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "链接到" +msgstr "链接至" #: frappe/public/js/frappe/widgets/widget_dialog.js:363 msgid "Link To in Row" @@ -14617,23 +14809,23 @@ msgstr "关于我们的页面的链接是“/about”。" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "网站首页链接。标准链接(主页、登录、产品、博客、关于、联系)" +msgstr "指向网站主页的链接。通常包括一些标准使用入口(登录,产品,博客,关于,联系人)" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." -msgstr "链接到要打开的页面。留空则设为分组父级。" +msgstr "想要打开的链接。如果仅作为上级菜单项,请留空。" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json msgid "Linked" -msgstr "已链接" +msgstr "链接" #: frappe/public/js/frappe/form/linked_with.js:23 msgid "Linked With" -msgstr "关联对象" +msgstr "关联" #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' @@ -14657,7 +14849,7 @@ msgstr "链接" #: frappe/custom/doctype/client_script/client_script.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/utils/utils.js:923 +#: frappe/public/js/frappe/utils/utils.js:926 msgid "List" msgstr "列表" @@ -14665,7 +14857,7 @@ msgstr "列表" #. 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "List / Search Settings" -msgstr "列表/搜索设置" +msgstr "列表 / 搜索设置" #. Label of the list_columns (Table) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -14675,7 +14867,7 @@ msgstr "列表列" #. Name of a DocType #: frappe/desk/doctype/list_filter/list_filter.json msgid "List Filter" -msgstr "列表筛选器" +msgstr "列表过滤条件" #. Label of the list_settings_section (Section Break) field in DocType 'User' #. Label of the section_break_8 (Section Break) field in DocType 'Customize @@ -14687,7 +14879,7 @@ msgstr "列表筛选器" msgid "List Settings" msgstr "列表设置" -#: frappe/public/js/frappe/list/list_view.js:1846 +#: frappe/public/js/frappe/list/list_view.js:1844 msgctxt "Button in list view menu" msgid "List Settings" msgstr "列表设置" @@ -14703,14 +14895,14 @@ msgstr "列表视图设置" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 msgid "List a document type" -msgstr "列出文档类型" +msgstr "列出某单据类型" #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' #. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" -msgstr "列表为 [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "清单[{“标签”:_(“作业”),“路径”:“工作”}]" #. Description of the 'Send Notification to' (Small Text) field in DocType #. 'Email Account' @@ -14721,7 +14913,7 @@ msgstr "电子邮件地址列表,用逗号或换行分隔。" #. Description of a DocType #: frappe/core/doctype/patch_log/patch_log.json msgid "List of patches executed" -msgstr "已执行补丁列表" +msgstr "已应用补丁列表" #. Label of the list_setting_message (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -14735,9 +14927,10 @@ msgstr "列表" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Load Balancing" -msgstr "负载均衡" +msgstr "均衡分派" #: frappe/public/js/frappe/list/base_list.js:388 +#: frappe/public/js/frappe/web_form/web_form_list.js:305 #: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" @@ -14758,9 +14951,9 @@ msgstr "加载更多" #: frappe/public/js/frappe/list/base_list.js:511 #: frappe/public/js/frappe/list/list_view.js:360 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1087 +#: frappe/public/js/frappe/views/reports/query_report.js:1088 msgid "Loading" -msgstr "加载中" +msgstr "载入中" #: frappe/public/js/frappe/widgets/widget_dialog.js:107 msgid "Loading Filters..." @@ -14768,7 +14961,7 @@ msgstr "正在加载筛选器..." #: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." -msgstr "正在加载导入文件..." +msgstr "加载上传文件..." #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Loading versions..." @@ -14783,12 +14976,12 @@ msgstr "正在加载版本..." #: frappe/public/js/frappe/widgets/number_card_widget.js:176 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." -msgstr "加载中..." +msgstr "载入中..." #. Label of the location (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Location" -msgstr "位置" +msgstr "地点" #. Label of the log (Code) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json @@ -14808,7 +15001,7 @@ msgstr "日志数据" #. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" -msgstr "日志文档类型" +msgstr "日志单据类型" #: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" @@ -14832,18 +15025,18 @@ msgstr "日志设置" #: frappe/www/app.py:23 msgid "Log in to access this page." -msgstr "请登录访问此页面。" +msgstr "请登录后访问该网页" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "退出登录" +msgstr "退出系统" #: frappe/handler.py:118 msgid "Logged Out" -msgstr "已退出登录" +msgstr "登出" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #. Label of the security_tab (Tab Break) field in DocType 'System Settings' @@ -14862,12 +15055,12 @@ msgstr "登录" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login After" -msgstr "在此时间后登录" +msgstr "登录后" #. Label of the login_before (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Login Before" -msgstr "在此时间前登录" +msgstr "登录前" #: frappe/public/js/frappe/desk.js:256 msgid "Login Failed please try again" @@ -14875,7 +15068,7 @@ msgstr "登录失败,请重试" #: frappe/email/doctype/email_account/email_account.py:144 msgid "Login Id is required" -msgstr "需要登录ID" +msgstr "登录ID是必需的" #. Label of the login_methods_section (Section Break) field in DocType 'System #. Settings' @@ -14887,7 +15080,7 @@ msgstr "登录方式" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" -msgstr "登录页面" +msgstr "登录页" #: frappe/www/login.py:156 msgid "Login To {0}" @@ -14895,11 +15088,11 @@ msgstr "登录到{0}" #: frappe/twofactor.py:260 msgid "Login Verification Code from {}" -msgstr "来自{}的登录验证码" +msgstr "登录验证码从{}" #: frappe/templates/emails/new_message.html:4 msgid "Login and view in Browser" -msgstr "登录并在浏览器中查看" +msgstr "在浏览器中登录和查看" #: frappe/website/doctype/web_form/web_form.js:367 msgid "Login is required to see web form list view. Enable {0} to see list settings" @@ -14911,7 +15104,7 @@ msgstr "登录链接已发送至您的邮箱" #: frappe/auth.py:339 frappe/auth.py:342 msgid "Login not allowed at this time" -msgstr "当前不允许登录" +msgstr "不允许在这个时候登录" #. Label of the login_required (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -14920,11 +15113,11 @@ msgstr "需要登录" #: frappe/twofactor.py:164 msgid "Login session expired, refresh page to retry" -msgstr "登录会话已过期,请刷新页面重试" +msgstr "登录会话过期,刷新页面重试" #: frappe/templates/includes/comments/comments.html:110 msgid "Login to comment" -msgstr "登录以评论" +msgstr "登录发表评论" #: frappe/templates/includes/comments/comments.html:6 msgid "Login to start a new discussion" @@ -14940,7 +15133,7 @@ msgstr "需要登录令牌" #: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" -msgstr "通过邮件链接登录" +msgstr "通过邮箱链接登录" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" @@ -14948,19 +15141,19 @@ msgstr "通过Frappe云登录" #: frappe/www/login.html:49 msgid "Login with LDAP" -msgstr "通过LDAP登录" +msgstr "与LDAP登录" #. Label of the login_with_email_link (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" -msgstr "通过邮件链接登录" +msgstr "启用邮件中链接登录" #. Label of the login_with_email_link_expiry (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link expiry (in minutes)" -msgstr "邮件登录链接有效期(分钟)" +msgstr "邮箱链接登录过期时间(分钟)" #: frappe/auth.py:144 msgid "Login with username and password is not allowed." @@ -14970,11 +15163,16 @@ msgstr "不允许通过用户名密码登录。" msgid "Login with {0}" msgstr "通过{0}登录" +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 msgid "Logout" -msgstr "退出登录" +msgstr "注销" #: frappe/core/doctype/user/user.js:197 msgid "Logout All Sessions" @@ -14984,12 +15182,12 @@ msgstr "退出所有会话" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Logout All Sessions on Password Reset" -msgstr "重置密码时退出所有会话" +msgstr "密码重置时自动登出所有当前连接" #. Label of the logout_all_sessions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Logout From All Devices After Changing Password" -msgstr "修改密码后从所有设备退出" +msgstr "变更密码后登出所有设备" #. Group in User's connections #. Label of a Card Break in the Users Workspace @@ -15026,7 +15224,7 @@ msgstr "您似乎未添加任何第三方应用。" #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "Looks like you haven’t received any notifications." -msgstr "您似乎未收到任何通知。" +msgstr "还没有收到任何通知哦~" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json @@ -15046,12 +15244,12 @@ msgstr "MIT许可证" #: frappe/desk/page/setup_wizard/install_fixtures.py:48 msgid "Madam" -msgstr "女士" +msgstr "夫人" #. Label of the main_section (Text Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section" -msgstr "主节" +msgstr "主分区" #. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json @@ -15066,13 +15264,13 @@ msgstr "主节(Markdown)" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" -msgstr "维护管理员" +msgstr "维保经理" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance User" -msgstr "维护用户" +msgstr "维保用户" #. Label of the major (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json @@ -15082,7 +15280,7 @@ msgstr "主要" #. Label of the show_name_in_global_search (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Make \"name\" searchable in Global Search" -msgstr "在全局搜索中搜索\"name\"" +msgstr "让“名称”字段在全局搜索框中可搜索" #. Label of the make_attachment_public (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -15095,21 +15293,21 @@ msgstr "默认公开附件" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" -msgstr "默认附件公开" +msgstr "上传文件默认设为公开" #. Description of the 'Disable Username/Password Login' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" -msgstr "禁用前请确保配置社交登录密钥以防锁定" +msgstr "请确保先配置好社交登录码以防登出后被锁" #: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" -msgstr "使用更长的键盘模式" +msgstr "利用较长的键盘模式" #: frappe/public/js/frappe/form/multi_select_dialog.js:87 msgid "Make {0}" -msgstr "设为{0}" +msgstr "新建{0}" #: frappe/website/doctype/web_page/web_page.js:77 msgid "Makes the page public" @@ -15139,7 +15337,7 @@ msgstr "管理您的数据" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Mandatory" -msgstr "必填" +msgstr "必填字段" #. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' #. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form @@ -15149,20 +15347,20 @@ msgstr "必填" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Mandatory Depends On" -msgstr "必填依赖条件" +msgstr "是否必填先决条件" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "必填依赖条件(JS)" +msgstr "必填先决条件(JS)" -#: frappe/website/doctype/web_form/web_form.py:470 +#: frappe/website/doctype/web_form/web_form.py:498 msgid "Mandatory Information missing:" -msgstr "缺少必填信息:" +msgstr "必填字段信息缺失:" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 msgid "Mandatory field: set role for" -msgstr "必填字段:设置角色" +msgstr "必须填写:用于设置角色" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 msgid "Mandatory field: {0}" @@ -15170,11 +15368,11 @@ msgstr "必填字段:{0}" #: frappe/public/js/frappe/form/save.js:120 msgid "Mandatory fields required in table {0}, Row {1}" -msgstr "表{0}第{1}行缺少必填字段" +msgstr "表{0}第{1}行有必填字段," #: frappe/public/js/frappe/form/save.js:125 msgid "Mandatory fields required in {0}" -msgstr "{0}中缺少必填字段" +msgstr "{0}中有必填字段" #: frappe/public/js/frappe/web_form/web_form.js:234 msgctxt "Error message in web form" @@ -15183,7 +15381,7 @@ msgstr "需要以下必填字段:" #: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" -msgstr "必填:" +msgstr "必须项:" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -15193,7 +15391,7 @@ msgstr "地图" #: frappe/public/js/frappe/data_import/import_preview.js:194 #: frappe/public/js/frappe/data_import/import_preview.js:306 msgid "Map Columns" -msgstr "映射列" +msgstr "编辑字段对照关系" #: frappe/public/js/frappe/list/base_list.js:211 msgid "Map View" @@ -15215,7 +15413,7 @@ msgstr "正在映射列{0}到字段{1}" #. Label of the margin_bottom (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" -msgstr "下边距" +msgstr "底边距" #. Label of the margin_left (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -15230,7 +15428,7 @@ msgstr "右边距" #. Label of the margin_top (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" -msgstr "上边距" +msgstr "顶边距" #. Label of the mariadb_variables_section (Section Break) field in DocType #. 'System Health Report' @@ -15256,11 +15454,9 @@ msgstr "标记为垃圾邮件" msgid "Mark as Unread" msgstr "标记为未读" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Message Type' (Select) field in DocType 'Notification' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 @@ -15277,7 +15473,7 @@ msgstr "Markdown" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Markdown Editor" -msgstr "Markdown编辑器" +msgstr "富文本编辑器" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -15298,19 +15494,19 @@ msgstr "主数据" #. Description of the 'Limit' (Int) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "Max 500 records at a time" -msgstr "单次最多500条记录" +msgstr "每次最多500条记录" #. Label of the max_attachments (Int) field in DocType 'DocType' #. Label of the max_attachments (Int) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Max Attachments" -msgstr "最大附件数" +msgstr "最大附件数量" #. Label of the max_file_size (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max File Size (MB)" -msgstr "最大文件大小(MB)" +msgstr "最大文件大小(MB)" #. Label of the max_height (Data) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -15320,7 +15516,7 @@ msgstr "最大高度" #. Label of the max_length (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Max Length" -msgstr "最大长度" +msgstr "最长长度" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -15341,11 +15537,11 @@ msgstr "最大附件尺寸" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max auto email report per user" -msgstr "每个用户最大自动邮件报告数" +msgstr "每用户最自动邮件发送报表数" #: frappe/core/doctype/doctype/doctype.py:1342 msgid "Max width for type Currency is 100px in row {0}" -msgstr "货币类型在第{0}行的最大宽度为100px" +msgstr "行{0}中,货币类型的最大宽度是100像素" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -15367,7 +15563,7 @@ msgstr "已达到{0}的最大附件限制" #: frappe/model/rename_doc.py:690 msgid "Maximum {0} rows allowed" -msgstr "最多允许{0}行" +msgstr "仅允许最多{0}行" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" @@ -15375,17 +15571,17 @@ msgstr "我" #: frappe/core/page/permission_manager/permission_manager_help.html:14 msgid "Meaning of Submit, Cancel, Amend" -msgstr "提交、取消、修订的含义" +msgstr "已提交,取消,修订的含义" #. Option for the 'Priority' (Select) field in DocType 'ToDo' #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1734 +#: frappe/public/js/frappe/utils/utils.js:1737 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" -msgstr "中等" +msgstr "中" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Event Category' (Select) field in DocType 'Event' @@ -15397,12 +15593,12 @@ msgstr "会议" #: frappe/email/doctype/notification/notification.js:196 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" -msgstr "满足条件?" +msgstr "满足条件?" #. Group in Email Group's connections #: frappe/email/doctype/email_group/email_group.json msgid "Members" -msgstr "成员" +msgstr "会员" #. Label of the cache_memory_usage (Data) field in DocType 'System Health #. Report' @@ -15423,7 +15619,7 @@ msgstr "@提及" #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Mentions" -msgstr "提及记录" +msgstr "提及" #: frappe/public/js/frappe/ui/page.html:41 #: frappe/public/js/frappe/ui/page.js:162 @@ -15437,7 +15633,7 @@ msgstr "与现有合并" #: frappe/utils/nestedset.py:307 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" -msgstr "仅支持组到组或叶子节点到叶子节点合并" +msgstr "只有组和组,叶节点和叶节点之间能合并" #. Label of the message (Text) field in DocType 'Auto Repeat' #. Label of the content (Text Editor) field in DocType 'Activity Log' @@ -15449,7 +15645,6 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并" #. Report' #. Label of the description (Text Editor) field in DocType 'Auto Email Report' #. Label of the message (Code) field in DocType 'Email Queue' -#. Label of the message (Text Editor) field in DocType 'Newsletter' #. Label of the message_sb (Section Break) field in DocType 'Notification' #. Label of the message (Code) field in DocType 'Notification' #. Label of the message (Text) field in DocType 'Workflow Document State' @@ -15462,31 +15657,20 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:201 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 -#: frappe/public/js/frappe/views/communication.js:123 +#: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" -msgstr "消息" +msgstr "信息" #: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" msgstr "消息" -#. Label of the message_html (HTML Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (HTML)" -msgstr "消息(HTML)" - -#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Message (Markdown)" -msgstr "消息(Markdown)" - #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Examples" @@ -15513,9 +15697,9 @@ msgstr "消息已发送" msgid "Message Type" msgstr "消息类型" -#: frappe/public/js/frappe/views/communication.js:950 +#: frappe/public/js/frappe/views/communication.js:953 msgid "Message clipped" -msgstr "消息截断" +msgstr "邮件被剪辑" #: frappe/email/doctype/email_account/email_account.py:344 msgid "Message from server: {0}" @@ -15523,7 +15707,7 @@ msgstr "服务器消息:{0}" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Message not setup" -msgstr "消息未配置" +msgstr "消息未设置" #. Description of the 'Success message' (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -15533,12 +15717,12 @@ msgstr "成功完成时显示的提示信息" #. Label of the message_id (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Message-id" -msgstr "消息标识符" +msgstr "邮件ID" #. Label of the messages (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" -msgstr "消息列表" +msgstr "消息" #. Label of the meta_section (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -15549,13 +15733,13 @@ msgstr "元数据" #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" -msgstr "元描述" +msgstr "元数据描述" #. Label of the meta_image (Attach Image) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" -msgstr "元图像" +msgstr "元数据图片" #. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' @@ -15564,7 +15748,7 @@ msgstr "元图像" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "元标签" +msgstr "元标记" #. Label of the meta_title (Data) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -15591,6 +15775,12 @@ msgstr "元标题" msgid "Meta title for SEO" msgstr "SEO元标题" +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + #. Label of the method (Data) field in DocType 'Access Log' #. Label of the method (Data) field in DocType 'API Request Log' #. Label of the method (Select) field in DocType 'Recorder' @@ -15610,9 +15800,9 @@ msgstr "SEO元标题" msgid "Method" msgstr "方法" -#: frappe/__init__.py:679 +#: frappe/__init__.py:468 msgid "Method Not Allowed" -msgstr "方法不允许" +msgstr "方法不可调用" #: frappe/desk/doctype/number_card/number_card.py:73 msgid "Method is required to create a number card" @@ -15621,7 +15811,7 @@ msgstr "创建数字卡片需指定方法" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" -msgstr "中间居中" +msgstr "正中" #. Label of the middle_name (Data) field in DocType 'Contact' #. Label of the middle_name (Data) field in DocType 'User' @@ -15653,13 +15843,18 @@ msgstr "最小值" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Minimum Password Score" -msgstr "密码最低强度" +msgstr "最低密码分数" #. Label of the minor (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Minor" msgstr "次要" +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "会议记录" + #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Minutes After" @@ -15685,7 +15880,7 @@ msgstr "配置错误" #: frappe/desk/page/setup_wizard/install_fixtures.py:49 msgid "Miss" -msgstr "女士" +msgstr "小姐" #: frappe/desk/form/meta.py:194 msgid "Missing DocType" @@ -15697,17 +15892,17 @@ msgstr "缺失字段" #: frappe/public/js/frappe/form/save.js:131 msgid "Missing Fields" -msgstr "缺失字段" +msgstr "必填字段信息缺失" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:129 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" -msgstr "缺少必要过滤器" +msgstr "请维护过滤条件" #: frappe/desk/form/assign_to.py:110 msgid "Missing Permission" msgstr "缺少权限" -#: frappe/www/update-password.html:109 frappe/www/update-password.html:116 +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" msgstr "缺失值" @@ -15716,11 +15911,11 @@ msgstr "缺失值" #: frappe/public/js/workflow_builder/store.js:97 #: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" -msgstr "缺少必要值" +msgstr "必填字段信息缺失" #: frappe/www/login.py:107 msgid "Mobile" -msgstr "移动端" +msgstr "手机号" #. Label of the mobile_no (Data) field in DocType 'Contact' #. Label of the mobile_no (Data) field in DocType 'User' @@ -15738,7 +15933,7 @@ msgstr "模态框触发器" #: frappe/core/report/transaction_log_report/transaction_log_report.py:106 msgid "Modified By" -msgstr "修改人" +msgstr "修改者" #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' @@ -15773,7 +15968,7 @@ msgstr "修改人" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/utils/utils.js:926 +#: frappe/public/js/frappe/utils/utils.js:929 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json @@ -15791,7 +15986,7 @@ msgstr "模块" #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" -msgstr "模块(用于导出)" +msgstr "模块(用于导出)" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -15818,7 +16013,7 @@ msgstr "模块名称" #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" -msgstr "模块入门指引" +msgstr "模块初始化" #. Name of a DocType #. Label of the module_profile (Link) field in DocType 'User' @@ -15826,12 +16021,12 @@ msgstr "模块入门指引" #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" -msgstr "模块权限配置" +msgstr "模块集合" #. Label of the module_profile_name (Data) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module Profile Name" -msgstr "模块权限配置名称" +msgstr "模块集合名称" #: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" @@ -15839,7 +16034,7 @@ msgstr "模块入门进度已重置" #: frappe/custom/doctype/customize_form/customize_form.js:250 msgid "Module to Export" -msgstr "待导出模块" +msgstr "模块导出" #: frappe/modules/utils.py:273 msgid "Module {} not found" @@ -15850,12 +16045,12 @@ msgstr "未找到模块{}" #: frappe/core/doctype/package/package.json #: frappe/core/workspace/build/build.json msgid "Modules" -msgstr "模块列表" +msgstr "模块" #. Label of the modules_html (HTML) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Modules HTML" -msgstr "模块HTML" +msgstr "HTML模块" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -15871,17 +16066,17 @@ msgstr "模块HTML" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Monday" -msgstr "周一" +msgstr "星期一" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Monitor logs for errors, background jobs, communications, and user activity" -msgstr "监控日志中的错误、后台任务、通讯和用户活动" +msgstr "监控出错日志,后台任务,通讯与用户操作日志" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "等宽字体" +msgstr "等宽" #: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" @@ -15946,13 +16141,13 @@ msgstr "更多信息" #: frappe/website/doctype/help_article/templates/help_article.html:19 #: frappe/website/doctype/help_article/templates/help_article.html:33 msgid "More articles on {0}" -msgstr "更多关于{0}的文章" +msgstr "更多的文章{0}" #. Description of the 'Footer' (Text Editor) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "More content for the bottom of the page." -msgstr "页面底部的更多内容" +msgstr "页面底部的更多内容。" #: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" @@ -15971,15 +16166,15 @@ msgstr "移动" #: frappe/public/js/frappe/form/grid_row.js:193 msgid "Move To" -msgstr "移动到" +msgstr "移到" #: frappe/core/doctype/communication/communication.js:104 msgid "Move To Trash" -msgstr "移至回收站" +msgstr "移到废纸篓" #: frappe/public/js/form_builder/components/Section.vue:295 msgid "Move current and all subsequent sections to a new tab" -msgstr "将当前及后续节段移至新标签页" +msgstr "移动当前及以下段到新页签" #: frappe/public/js/frappe/form/form.js:177 msgid "Move cursor to above row" @@ -15999,15 +16194,15 @@ msgstr "移动光标至上一列" #: frappe/public/js/form_builder/components/Section.vue:294 msgid "Move sections to new tab" -msgstr "将节段移至新标签页" +msgstr "移动段到新页签" #: frappe/public/js/form_builder/components/Field.vue:237 msgid "Move the current field and the following fields to a new column" -msgstr "将当前字段及后续字段移至新列" +msgstr "移动当前及以下字段到新栏" #: frappe/public/js/frappe/form/grid_row.js:168 msgid "Move to Row Number" -msgstr "跳转至行号" +msgstr "移至行号" #. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -16026,7 +16221,7 @@ msgstr "先生" #: frappe/desk/page/setup_wizard/install_fixtures.py:47 msgid "Mrs" -msgstr "夫人" +msgstr "太太" #: frappe/desk/page/setup_wizard/install_fixtures.py:44 msgid "Ms" @@ -16034,7 +16229,7 @@ msgstr "女士" #: frappe/utils/nestedset.py:331 msgid "Multiple root nodes not allowed." -msgstr "不允许存在多个根节点" +msgstr "不允许多个根节点。" #. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data #. Import' @@ -16053,11 +16248,11 @@ msgstr "必须用'()'括起来并包含'{0}'作为用户/登录名的占位符 #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Must be of type \"Attach Image\"" -msgstr "必须为“附加图片”类型" +msgstr "类型必须为“添加图片”" -#: frappe/desk/query_report.py:208 +#: frappe/desk/query_report.py:209 msgid "Must have report permission to access this report." -msgstr "需具备报表权限才能访问该报表" +msgstr "必须有报表权限才能访问此报表。" #: frappe/core/doctype/report/report.py:151 msgid "Must specify a Query to run" @@ -16070,10 +16265,10 @@ msgstr "静音" #: frappe/desk/page/setup_wizard/install_fixtures.py:45 msgid "Mx" -msgstr "混合型" +msgstr "MX" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:459 +#: frappe/website/doctype/web_form/web_form.py:487 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16090,11 +16285,11 @@ msgstr "我的工作区" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "MyISAM" -msgstr "MyISAM" +msgstr "MyISAM数据" #: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." -msgstr "注意:在表格中添加状态或转换后需在工作流构建器中手动调整位置。工作流构建器目前为测试版" +msgstr "说明:通过以下子表添加的状态和转换规则也会体现在工作流设计器图形界面中,但需手工调整位置。工作流设计器目前尚在试用阶段" #. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP #. Settings' @@ -16129,15 +16324,15 @@ msgstr "名称已被占用,请设置新名称" #: frappe/model/naming.py:504 msgid "Name cannot contain special characters like {0}" -msgstr "名称不能包含特殊字符如{0}" +msgstr "名称不能包含特殊字符,如{0}" #: frappe/custom/doctype/custom_field/custom_field.js:91 msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" -msgstr "要关联的文档类型名称(DocType),例如:客户" +msgstr "此字段链接到的单据类型,例如客户" #: frappe/printing/page/print_format_builder/print_format_builder.js:117 msgid "Name of the new Print Format" -msgstr "新打印格式名称" +msgstr "新打印格式的名称" #: frappe/model/naming.py:499 msgid "Name of {0} cannot be {1}" @@ -16145,7 +16340,7 @@ msgstr "{0}的名称不能为{1}" #: frappe/utils/password_strength.py:174 msgid "Names and surnames by themselves are easy to guess." -msgstr "单独使用姓名容易被猜测" +msgstr "自己名字和姓氏很容易被猜到。" #. Label of the sb1 (Tab Break) field in DocType 'DocType' #. Label of the naming_section (Section Break) field in DocType 'Document @@ -16156,7 +16351,7 @@ msgstr "单独使用姓名容易被猜测" #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "命名规则" +msgstr "编号规则" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -16172,17 +16367,17 @@ msgstr "命名选项:\n" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" -msgstr "命名规则" +msgstr "编号规则" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "命名序列" +msgstr "单据编号模板" #: frappe/model/naming.py:260 msgid "Naming Series mandatory" -msgstr "命名序列必填" +msgstr "单据编号模板是必填字段" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -16217,12 +16412,12 @@ msgstr "导航栏模板" msgid "Navbar Template Values" msgstr "导航栏模板值" -#: frappe/public/js/frappe/list/list_view.js:1237 +#: frappe/public/js/frappe/list/list_view.js:1235 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "向下导航列表" -#: frappe/public/js/frappe/list/list_view.js:1244 +#: frappe/public/js/frappe/list/list_view.js:1242 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "向上导航列表" @@ -16241,13 +16436,17 @@ msgstr "导航设置" msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作区" -#: frappe/model/document.py:792 +#: frappe/model/document.py:794 msgid "Negative Value" msgstr "负值" +#: frappe/database/query.py:333 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." -msgstr "嵌套集合错误,请联系管理员" +msgstr "嵌套错误。请联系管理员。" #. Name of a DocType #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json @@ -16271,25 +16470,25 @@ msgstr "新建" #: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" -msgstr "新建活动" +msgstr "新活动" #: frappe/public/js/frappe/form/templates/address_list.html:3 #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 #: frappe/public/js/frappe/utils/address_and_contact.js:71 msgid "New Address" -msgstr "新建地址" +msgstr "新地址" #: frappe/public/js/frappe/widgets/widget_dialog.js:58 msgid "New Chart" -msgstr "新建图表" +msgstr "统计图表" #: frappe/templates/includes/comments/comments.py:62 msgid "New Comment on {0}: {1}" -msgstr "{0}的新评论:{1}" +msgstr "对{0}的新评论:{1}" #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" -msgstr "新建联系人" +msgstr "新联系人" #: frappe/public/js/frappe/widgets/widget_dialog.js:70 msgid "New Custom Block" @@ -16298,7 +16497,7 @@ msgstr "新建自定义块" #: frappe/printing/page/print/print.js:295 #: frappe/printing/page/print/print.js:342 msgid "New Custom Print Format" -msgstr "新建自定义打印格式" +msgstr "新自定义打印格式" #. Label of the new_document_form (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -16312,24 +16511,24 @@ msgstr "新文档已共享{0}" #: frappe/public/js/frappe/form/footer/form_timeline.js:27 #: frappe/public/js/frappe/views/communication.js:23 msgid "New Email" -msgstr "新建邮件" +msgstr "发邮件" #: frappe/public/js/frappe/list/list_view_select.js:98 #: frappe/public/js/frappe/views/inbox/inbox_view.js:177 msgid "New Email Account" -msgstr "新建邮件账户" +msgstr "新电子邮箱帐号" #: frappe/public/js/frappe/form/footer/form_timeline.js:47 msgid "New Event" -msgstr "新建事件" +msgstr "新事件" #: frappe/public/js/frappe/views/file/file_view.js:94 msgid "New Folder" msgstr "新建文件夹" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "New Kanban Board" -msgstr "新建看板" +msgstr "新看板" #: frappe/public/js/frappe/widgets/widget_dialog.js:62 msgid "New Links" @@ -16341,7 +16540,7 @@ msgstr "{0}的新@提及" #: frappe/www/contact.py:61 msgid "New Message from Website Contact Page" -msgstr "来自网站联系页面的新消息" +msgstr "从网站的联系页面新消息" #. Label of the new_name (Read Only) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json @@ -16350,23 +16549,19 @@ msgstr "来自网站联系页面的新消息" msgid "New Name" msgstr "新名称" -#: frappe/email/doctype/email_group/email_group.js:67 -msgid "New Newsletter" -msgstr "新建简讯" - #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" msgstr "新通知" #: frappe/public/js/frappe/widgets/widget_dialog.js:64 msgid "New Number Card" -msgstr "新建数字卡片" +msgstr "数字卡" #: frappe/public/js/frappe/widgets/widget_dialog.js:66 msgid "New Onboarding" msgstr "新建入门指引" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42 +#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 msgid "New Password" msgstr "新密码" @@ -16374,7 +16569,7 @@ msgstr "新密码" #: frappe/printing/page/print/print.js:321 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" -msgstr "新打印格式名称" +msgstr "新的打印格式名称" #: frappe/public/js/frappe/widgets/widget_dialog.js:68 msgid "New Quick List" @@ -16382,7 +16577,7 @@ msgstr "新建快速列表" #: frappe/public/js/frappe/views/reports/report_view.js:1384 msgid "New Report name" -msgstr "新报表名称" +msgstr "新的报表名称" #. Label of the new_role (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json @@ -16391,7 +16586,7 @@ msgstr "新建角色" #: frappe/public/js/frappe/widgets/widget_dialog.js:60 msgid "New Shortcut" -msgstr "新建快捷方式" +msgstr "新建 快速访问" #. Label of the new_users (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -16411,19 +16606,38 @@ msgstr "新工作流名称" msgid "New Workspace" msgstr "新建工作区" -#: frappe/www/update-password.html:79 +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" msgstr "新密码不能与旧密码相同" #: frappe/utils/change_log.py:389 msgid "New updates are available" -msgstr "有新更新可用" +msgstr "有新的更新" #. Description of the 'Disable signups' (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." -msgstr "新用户需由系统管理员手动注册" +msgstr "新用户需由系统管理员手动创建" #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' @@ -16435,7 +16649,7 @@ msgstr "要设置的新值" #: frappe/public/js/frappe/form/toolbar.js:37 #: frappe/public/js/frappe/form/toolbar.js:206 #: frappe/public/js/frappe/form/toolbar.js:221 -#: frappe/public/js/frappe/form/toolbar.js:558 +#: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 @@ -16443,19 +16657,19 @@ msgstr "要设置的新值" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:376 +#: frappe/website/doctype/web_form/web_form.py:404 msgid "New {0}" -msgstr "新建{0}" +msgstr "新建 {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:392 +#: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" msgstr "已创建新{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:384 +#: frappe/public/js/frappe/views/reports/query_report.js:385 msgid "New {0} {1} added to Dashboard {2}" msgstr "新{0}{1}已添加到仪表盘{2}" -#: frappe/public/js/frappe/views/reports/query_report.js:389 +#: frappe/public/js/frappe/views/reports/query_report.js:390 msgid "New {0} {1} created" msgstr "已创建新{0}{1}" @@ -16465,53 +16679,18 @@ msgstr "新{0}:{1}" #: frappe/utils/change_log.py:375 msgid "New {} releases for the following apps are available" -msgstr "以下应用有新版本{}发布" +msgstr "以下应用程序有新版本{}了" -#: frappe/core/doctype/user/user.py:804 +#: frappe/core/doctype/user/user.py:808 msgid "Newly created user {0} has no roles enabled." -msgstr "新创建用户{0}未启用任何角色" - -#. Label of a Card Break in the Tools Workspace -#. Label of a Link in the Tools Workspace -#. Name of a DocType -#: frappe/automation/workspace/tools/tools.json -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Newsletter" -msgstr "简讯" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json -msgid "Newsletter Attachment" -msgstr "简讯附件" - -#. Name of a DocType -#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json -msgid "Newsletter Email Group" -msgstr "简讯邮件组" +msgstr "新创建的用户 {0} 未启用任何角色" #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" -msgstr "简讯管理员" - -#: frappe/email/doctype/newsletter/newsletter.py:128 -msgid "Newsletter has already been sent" -msgstr "简讯已发送" - -#: frappe/email/doctype/newsletter/newsletter.py:147 -msgid "Newsletter must be published to send webview link in email" -msgstr "简讯需发布才能在邮件中发送网页版链接" - -#: frappe/email/doctype/newsletter/newsletter.py:135 -msgid "Newsletter should have atleast one recipient" -msgstr "简讯至少需要一个收件人" - -#: frappe/email/doctype/newsletter/newsletter.py:390 -msgid "Newsletters" -msgstr "简讯列表" +msgstr "简讯经理" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 @@ -16521,7 +16700,7 @@ msgstr "简讯列表" #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 #: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" -msgstr "下一步" +msgstr "下一个" #: frappe/public/js/frappe/ui/slides.js:359 msgctxt "Go to next slide" @@ -16548,7 +16727,7 @@ msgstr "未来 7 天" #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Next Action Email Template" -msgstr "下一步操作邮件模板" +msgstr "审批邮件模板" #. Label of the next_actions_html (HTML) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json @@ -16558,7 +16737,7 @@ msgstr "下一步操作HTML" #. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Next Execution" -msgstr "下次执行时间" +msgstr "下次执行" #. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -16576,11 +16755,11 @@ msgstr "下季度" #. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Next Schedule Date" -msgstr "下次计划日期" +msgstr "下次执行日期" #: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 msgid "Next Scheduled Date" -msgstr "下次计划日期" +msgstr "计划执行日期" #. Label of the next_state (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json @@ -16590,14 +16769,14 @@ msgstr "下一状态" #. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Next Step Condition" -msgstr "下一步条件" +msgstr "进行下一步的条件" #. Label of the next_sync_token (Password) field in DocType 'Google Calendar' #. Label of the next_sync_token (Password) field in DocType 'Google Contacts' #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Next Sync Token" -msgstr "下次同步令牌" +msgstr "下一个同步令牌" #: frappe/public/js/frappe/ui/filters/filter.js:692 msgid "Next Week" @@ -16609,7 +16788,7 @@ msgstr "明年" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Next actions" -msgstr "后续操作" +msgstr "审批动作" #. Label of the next_on_click (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -16629,7 +16808,7 @@ msgstr "点击进入下一步" #: frappe/public/js/form_builder/utils.js:341 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "否" @@ -16646,7 +16825,7 @@ msgstr "否" #: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" -msgstr "无活跃会话" +msgstr "没有活动会话" #. Label of the no_copy (Check) field in DocType 'DocField' #. Label of the no_copy (Check) field in DocType 'Custom Field' @@ -16655,10 +16834,10 @@ msgstr "无活跃会话" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "No Copy" -msgstr "禁止复制" +msgstr "不能复制" #: frappe/core/doctype/data_export/exporter.py:162 -#: frappe/email/doctype/auto_email_report/auto_email_report.py:289 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 #: frappe/public/js/form_builder/components/controls/TableControl.vue:64 #: frappe/public/js/frappe/data_import/import_preview.js:146 #: frappe/public/js/frappe/form/multi_select_dialog.js:224 @@ -16669,19 +16848,19 @@ msgstr "无数据" #: frappe/public/js/frappe/widgets/quick_list_widget.js:134 msgid "No Data..." -msgstr "无数据..." +msgstr "无数据" #: frappe/public/js/frappe/views/inbox/inbox_view.js:176 msgid "No Email Account" -msgstr "无邮件账户" +msgstr "没有电子邮箱帐号" #: frappe/public/js/frappe/views/inbox/inbox_view.js:196 msgid "No Email Accounts Assigned" -msgstr "未分配邮件账户" +msgstr "未分派电子邮箱帐号" #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" -msgstr "无邮件" +msgstr "没有电子邮件" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 msgid "No Entry for the User {0} found within LDAP!" @@ -16728,7 +16907,7 @@ msgstr "{0}未指定名称" #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "No New notifications" -msgstr "无新通知" +msgstr "暂无新通知" #: frappe/core/doctype/doctype/doctype.py:1743 msgid "No Permissions Specified" @@ -16736,7 +16915,7 @@ msgstr "未指定权限" #: frappe/core/page/permission_manager/permission_manager.js:199 msgid "No Permissions set for this criteria." -msgstr "未为此条件设置权限" +msgstr "没有符合条件的权限。" #: frappe/core/page/dashboard_view/dashboard_view.js:93 msgid "No Permitted Charts" @@ -16752,11 +16931,11 @@ msgstr "无预览" #: frappe/printing/page/print/print.js:707 msgid "No Preview Available" -msgstr "无可用预览" +msgstr "预览不可用" #: frappe/printing/page/print/print.js:862 msgid "No Printer is Available." -msgstr "无可用打印机" +msgstr "没有可用打印机。" #: frappe/core/doctype/rq_worker/rq_worker_list.js:3 msgid "No RQ Workers connected. Try restarting the bench." @@ -16764,19 +16943,19 @@ msgstr "无RQ工作进程连接,请尝试重启服务" #: frappe/public/js/frappe/form/link_selector.js:135 msgid "No Results" -msgstr "无结果" +msgstr "没有结果" #: frappe/public/js/frappe/ui/toolbar/search.js:51 msgid "No Results found" -msgstr "未找到结果" +msgstr "无数据" -#: frappe/core/doctype/user/user.py:805 +#: frappe/core/doctype/user/user.py:809 msgid "No Roles Specified" -msgstr "未指定角色" +msgstr "未分派角色" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 msgid "No Select Field Found" -msgstr "未找到选择字段" +msgstr "无生成看板列所需的单选字段" #: frappe/core/doctype/recorder/recorder.py:179 msgid "No Suggestions" @@ -16788,27 +16967,23 @@ msgstr "无标签" #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "No Upcoming Events" -msgstr "无即将发生的事件" +msgstr "无未处理事项" #: frappe/public/js/frappe/form/templates/address_list.html:43 msgid "No address added yet." -msgstr "尚未添加地址" +msgstr "未添加地址。" #: frappe/email/doctype/notification/notification.js:229 msgid "No alerts for today" -msgstr "今日无提醒" +msgstr "今天无预警通知" #: frappe/core/doctype/recorder/recorder.py:178 msgid "No automatic optimization suggestions available." msgstr "暂无自动优化建议" -#: frappe/email/doctype/newsletter/newsletter.js:34 -msgid "No broken links found in the email content" -msgstr "邮件内容中未发现失效链接" - #: frappe/public/js/frappe/form/save.js:36 msgid "No changes in document" -msgstr "文档无变更" +msgstr "未做任何修改" #: frappe/public/js/frappe/views/workspace/workspace.js:662 msgid "No changes made" @@ -16836,15 +17011,15 @@ msgstr "暂无评论。" #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." -msgstr "尚未添加联系人" +msgstr "未添加联系人。" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 msgid "No contacts linked to document" msgstr "文档未关联联系人" -#: frappe/desk/query_report.py:342 +#: frappe/desk/query_report.py:344 msgid "No data to export" -msgstr "无数据可导出" +msgstr "没有要导出的数据" #: frappe/contacts/doctype/address/address.py:246 msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." @@ -16856,47 +17031,47 @@ msgstr "未找到标记为{0}的文档" #: frappe/public/js/frappe/views/inbox/inbox_view.js:21 msgid "No email account associated with the User. Please add an account under User > Email Inbox." -msgstr "用户未关联邮件账户,请通过 用户 > 收件箱 添加" +msgstr "此用户未关联邮箱帐号,请在用户收件箱中设置邮箱" #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" -msgstr "无失败日志" +msgstr "无出错信息" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:370 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." -msgstr "没有找到可用作看板的列的字段。使用自定义表单添加类型“选择”的自定义字段。" +msgstr "找不到可用作看板列的字段。使用“定制表单”添加“选择”类型的自定义字段。" #: frappe/utils/file_manager.py:143 msgid "No file attached" -msgstr "未附加文件" +msgstr "文件未添加" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 msgid "No filters found" -msgstr "未找到筛选器" +msgstr "无过滤条件" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "No filters selected" -msgstr "未选择筛选器" +msgstr "未选择过滤条件" #: frappe/desk/form/utils.py:111 msgid "No further records" -msgstr "无更多记录" +msgstr "没有下一个记录了" #: frappe/templates/includes/search_template.html:49 msgid "No matching records. Search something new" -msgstr "无匹配记录。请尝试新搜索内容" +msgstr "没有符合条件的记录。搜索新的东西" #: frappe/public/js/frappe/web_form/web_form_list.js:161 msgid "No more items to display" -msgstr "无更多项目可显示" +msgstr "没有更多要显示的条目" #: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." -msgstr "无需符号、数字或大写字母。" +msgstr "无需符号,数字和大写字母。" #: frappe/integrations/doctype/google_contacts/google_contacts.py:195 msgid "No new Google Contacts synced." -msgstr "无新增Google联系人同步。" +msgstr "没有新的Google通讯录同步。" #: frappe/public/js/frappe/ui/toolbar/navbar.html:46 msgid "No new notifications" @@ -16904,7 +17079,7 @@ msgstr "无新通知" #: frappe/printing/page/print_format_builder/print_format_builder.js:415 msgid "No of Columns" -msgstr "列数" +msgstr "列编号" #. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json @@ -16914,16 +17089,16 @@ msgstr "请求短信数量" #. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "No of Rows (Max 500)" -msgstr "行数(最多500)" +msgstr "记录数(最大500行)" #. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "No of Sent SMS" -msgstr "已发送短信数量" +msgstr "发送短信数量" -#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151 +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 msgid "No permission for {0}" -msgstr "无{0}权限" +msgstr "无权限操作{0}" #: frappe/public/js/frappe/form/form.js:1142 msgctxt "{0} = verb, {1} = object" @@ -16932,27 +17107,27 @@ msgstr "无权限'{0}' {1}" #: frappe/model/db_query.py:950 msgid "No permission to read {0}" -msgstr "无读取{0}权限" +msgstr "没有读取{0}的权限" #: frappe/share.py:220 msgid "No permission to {0} {1} {2}" -msgstr "无权限{0} {1} {2}" +msgstr "无权{0} {1} {2}" #: frappe/core/doctype/user_permission/user_permission_list.js:175 msgid "No records deleted" -msgstr "未删除记录" +msgstr "没有记录被删除" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 msgid "No records present in {0}" -msgstr "{0}中无记录" +msgstr "{0}中没有记录" #: frappe/public/js/frappe/list/list_sidebar_stat.html:3 msgid "No records tagged." -msgstr "未标记记录。" +msgstr "没有记录被标记。" #: frappe/public/js/frappe/data_import/data_exporter.js:225 msgid "No records will be exported" -msgstr "无记录可导出" +msgstr "没有满足条件的记录" #: frappe/public/js/frappe/form/grid.js:66 msgid "No rows" @@ -16964,11 +17139,11 @@ msgstr "无主题" #: frappe/www/printview.py:472 msgid "No template found at path: {0}" -msgstr "路径{0}未找到模板" +msgstr "从{0}路径中找不到模板" #: frappe/public/js/frappe/form/controls/multiselect_list.js:262 msgid "No values to show" -msgstr "无值可显示" +msgstr "没有要显示的值" #: frappe/website/web_template/discussions/discussions.html:2 msgid "No {0}" @@ -16980,15 +17155,15 @@ msgstr "未找到{0}" #: frappe/public/js/frappe/web_form/web_form_list.js:233 msgid "No {0} found" -msgstr "未找到{0}" +msgstr "没有找到{0}" #: frappe/public/js/frappe/list/list_view.js:494 msgid "No {0} found with matching filters. Clear filters to see all {0}." -msgstr "未找到匹配筛选条件的{0}。清除筛选器查看全部{0}。" +msgstr "未找到匹配当前筛选条件的{0},请清除筛选条件后查看全部{0}" #: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" -msgstr "无{0}邮件" +msgstr "没有{0}邮件" #: frappe/public/js/form_builder/utils.js:117 #: frappe/public/js/frappe/form/grid_row.js:256 @@ -17014,6 +17189,12 @@ msgstr "非负值" msgid "Non-Conforming" msgstr "不符合项" +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "无" + #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" msgstr "无:工作流结束" @@ -17021,35 +17202,35 @@ msgstr "无:工作流结束" #. Label of the normalized_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Copies" -msgstr "标准化副本" +msgstr "基础查询(剔除查询参数)次数" #. Label of the normalized_query (Data) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" -msgstr "标准化查询" +msgstr "规范化查询" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "不允许" #: frappe/templates/includes/login/login.js:259 msgid "Not Allowed: Disabled User" -msgstr "不允许:已禁用用户" +msgstr "不允许:用户已被禁用" #: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" -msgstr "非上级节点" +msgstr "不是祖先" #: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "非下级节点" +msgstr "不是后代" #: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" msgstr "不等于" -#: frappe/app.py:367 frappe/www/404.html:3 +#: frappe/app.py:387 frappe/www/404.html:3 msgid "Not Found" msgstr "未找到" @@ -17060,31 +17241,31 @@ msgstr "无帮助" #: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" -msgstr "不包含于" +msgstr "不包括" #: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "不类似" +msgstr "不含关键字" #: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" -msgstr "未关联到任何记录" +msgstr "未链接到任何记录" #. Label of the not_nullable (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Not Nullable" msgstr "不可为空" -#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:708 +#: frappe/website/doctype/web_form/web_form.py:736 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" -msgstr "未经许可" +msgstr "没有权限" -#: frappe/desk/query_report.py:542 +#: frappe/desk/query_report.py:555 msgid "Not Permitted to read {0}" msgstr "无权限读取{0}" @@ -17094,31 +17275,30 @@ msgstr "无权限读取{0}" msgid "Not Published" msgstr "未发布" -#: frappe/public/js/frappe/form/toolbar.js:285 -#: frappe/public/js/frappe/form/toolbar.js:813 +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 #: frappe/public/js/frappe/views/kanban/kanban_view.js:169 #: frappe/public/js/frappe/views/reports/report_view.js:203 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 #: frappe/website/doctype/web_form/templates/web_form.html:78 msgid "Not Saved" -msgstr "未保存" +msgstr "尚未保存" #: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" -msgstr "未读" +msgstr "未阅" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter_list.js:9 msgid "Not Sent" msgstr "未发送" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 msgid "Not Set" -msgstr "未设置" +msgstr "空值" #: frappe/public/js/frappe/ui/filters/filter.js:608 msgctxt "Field value is not set" @@ -17127,27 +17307,27 @@ msgstr "未设置" #: frappe/utils/csvutils.py:102 msgid "Not a valid Comma Separated Value (CSV File)" -msgstr "无效的逗号分隔值(CSV文件)" +msgstr "不是一个有效的CSV文件" -#: frappe/core/doctype/user/user.py:265 +#: frappe/core/doctype/user/user.py:266 msgid "Not a valid User Image." -msgstr "无效的用户图像。" +msgstr "非有效用户图像。" #: frappe/model/workflow.py:114 msgid "Not a valid Workflow Action" -msgstr "无效的工作流操作" +msgstr "不是有效的工作流操作" #: frappe/templates/includes/login/login.js:255 msgid "Not a valid user" -msgstr "无效用户" +msgstr "不是有效的用户" #: frappe/workflow/doctype/workflow/workflow_list.js:7 msgid "Not active" -msgstr "未激活" +msgstr "非活动" -#: frappe/permissions.py:370 +#: frappe/permissions.py:383 msgid "Not allowed for {0}: {1}" -msgstr "{0}不允许:{1}" +msgstr "不允许{0}:{1}" #: frappe/email/doctype/notification/notification.py:595 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" @@ -17159,15 +17339,15 @@ msgstr "不允许创建自定义虚拟文档类型。" #: frappe/www/printview.py:165 msgid "Not allowed to print cancelled documents" -msgstr "不允许打印已取消文档" +msgstr "不允许打印已取消的单据" #: frappe/www/printview.py:162 msgid "Not allowed to print draft documents" -msgstr "不允许打印草稿文档" +msgstr "不允许打印草稿状态单据" #: frappe/permissions.py:213 msgid "Not allowed via controller permission check" -msgstr "未通过控制器权限检查" +msgstr "自定义代码权限检查has_permission不通过" #: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 msgid "Not found" @@ -17175,25 +17355,25 @@ msgstr "未找到" #: frappe/core/doctype/page/page.py:62 msgid "Not in Developer Mode" -msgstr "未启用开发者模式" +msgstr "未在开发模式下" #: frappe/core/doctype/doctype/doctype.py:330 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." -msgstr "未启用开发者模式!请在site_config.json中设置或创建“自定义”文档类型。" +msgstr "未开启开发模式!请在site_config.json中设置或创建一个自定义单据类型" #: frappe/core/doctype/system_settings/system_settings.py:215 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 #: frappe/website/js/website.js:97 msgid "Not permitted" -msgstr "未经许可" +msgstr "没有权限" #: frappe/public/js/frappe/list/list_view.js:50 msgid "Not permitted to view {0}" -msgstr "无权限查看{0}" +msgstr "没有权限查看{0}" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17206,15 +17386,15 @@ msgstr "备注" #. Name of a DocType #: frappe/desk/doctype/note_seen_by/note_seen_by.json msgid "Note Seen By" -msgstr "备注查看者" +msgstr "看过笔记的人" #: frappe/www/confirm_workflow_action.html:8 msgid "Note:" -msgstr "注:" +msgstr "备注:" #: frappe/public/js/frappe/utils/utils.js:775 msgid "Note: Changing the Page Name will break previous URL to this page." -msgstr "注:更改页面名称将导致旧URL失效。" +msgstr "注意:更改页面名称将会破坏此页面的上一个URL。" #: frappe/core/doctype/user/user.js:35 msgid "Note: Etc timezones have their signs reversed." @@ -17224,17 +17404,17 @@ msgstr "注:Etc时区符号取反。" #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Note: For best results, images must be of the same size and width must be greater than height." -msgstr "注:为获得最佳效果,图像尺寸需相同且宽度大于高度。" +msgstr "注意:为获得最佳效果,图像必须大小相同,宽度必须大于高度。" #. Description of the 'Allow only one session per user' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Note: Multiple sessions will be allowed in case of mobile device" -msgstr "注:移动设备允许多会话" +msgstr "注:在使用移动设备时允许多个会话" #: frappe/core/doctype/user/user.js:393 msgid "Note: This will be shared with user." -msgstr "注:此信息将与用户共享。" +msgstr "此登录行为将通知对应用户" #: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 msgid "Note: Your request for account deletion will be fulfilled within {0} hours." @@ -17242,11 +17422,11 @@ msgstr "注:您的账户删除请求将在{0}小时内处理。" #: frappe/core/doctype/data_export/exporter.py:183 msgid "Notes:" -msgstr "备注:" +msgstr "注意事项:" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "Nothing New" -msgstr "无新内容" +msgstr "无新消息" #: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" @@ -17262,11 +17442,11 @@ msgstr "无内容可撤销" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" -msgstr "无内容显示" +msgstr "无数据" #: frappe/core/doctype/user_permission/user_permission_list.js:129 msgid "Nothing to update" -msgstr "无更新内容" +msgstr "无需更新" #. Label of the notification (Tab Break) field in DocType 'Auto Repeat' #. Label of a Link in the Tools Workspace @@ -17286,7 +17466,7 @@ msgstr "通知日志" #. Name of a DocType #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Notification Recipient" -msgstr "通知接收人" +msgstr "通知收件人" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -17322,7 +17502,7 @@ msgstr "通知:用户{0}未设置手机号码" #: frappe/public/js/frappe/ui/notifications/notifications.js:50 #: frappe/public/js/frappe/ui/notifications/notifications.js:187 msgid "Notifications" -msgstr "通知集" +msgstr "通知" #: frappe/public/js/frappe/ui/notifications/notifications.js:299 msgid "Notifications Disabled" @@ -17332,7 +17512,7 @@ msgstr "通知已禁用" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notifications and bulk mails will be sent from this outgoing server." -msgstr "通知和批量邮件将通过此发件服务器发送。" +msgstr "通知和简讯将从此服务器发送。" #. Label of the notify_on_every_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json @@ -17342,29 +17522,29 @@ msgstr "每次登录时通知用户" #. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Notify by Email" -msgstr "邮件通知" +msgstr "通过电子邮件发送通知" #. Label of the notify_by_email (Check) field in DocType 'DocShare' #: frappe/core/doctype/docshare/docshare.json msgid "Notify by email" -msgstr "通过邮件通知" +msgstr "通过电子邮件发送通知" #. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied" -msgstr "未回复时通知" +msgstr "如果没有回复的通知" #. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Notify if unreplied for (in mins)" -msgstr "未回复超过(分钟)时通知" +msgstr "如果一分钟内未回复,则发出通知" #. Label of the notify_on_login (Check) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Notify users with a popup when they log in" -msgstr "用户登录时显示弹出通知" +msgstr "用户登录后以弹框通知" -#: frappe/public/js/frappe/form/controls/datetime.js:25 +#: frappe/public/js/frappe/form/controls/datetime.js:28 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "现在" @@ -17372,24 +17552,24 @@ msgstr "现在" #. Label of the phone (Data) field in DocType 'Contact Phone' #: frappe/contacts/doctype/contact_phone/contact_phone.json msgid "Number" -msgstr "数值" +msgstr "数" #. Name of a DocType #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" -msgstr "数字卡片" +msgstr "数字卡" #. Name of a DocType #: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Number Card Link" -msgstr "数字卡片链接" +msgstr "数字卡链接" #. Label of the number_card_name (Link) field in DocType 'Workspace Number #. Card' #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" -msgstr "数字卡片名称" +msgstr "数字卡名称" #. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' #. Label of the number_cards (Table) field in DocType 'Workspace' @@ -17415,7 +17595,7 @@ msgstr "备份数量" #. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Number of Groups" -msgstr "群组数量" +msgstr "分组数量" #. Label of the number_of_queries (Int) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -17434,20 +17614,20 @@ msgstr "备份数量必须大于零。" #. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" -msgstr "网格中字段的列数(网格总列数应小于11)" +msgstr "表格总列数应小于11" #. Description of the 'Columns' (Int) field in DocType 'DocField' #. Description of the 'Columns' (Int) field in DocType 'Custom Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" -msgstr "列表视图或网格中字段的列数(总列数应小于11)" +msgstr "在单据列表或子表单列表中所占列数(合计列数应小于11)" #. Description of the 'Document Share Key Expiry (in Days)' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" -msgstr "邮件中共享的文档网页视图链接有效期(天数)" +msgstr "透过邮件共享的登录链接多久后过期" #. Label of the cache_keys (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -17467,12 +17647,12 @@ msgstr "OAuth(开放授权协议)" #. Name of a DocType #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "OAuth Authorization Code" -msgstr "OAuth授权码" +msgstr "OAuth的授权码" #. Name of a DocType #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "OAuth Bearer Token" -msgstr "OAuth持有者令牌" +msgstr "OAuth的承载令牌" #. Name of a DocType #. Label of a Link in the Integrations Workspace @@ -17500,13 +17680,18 @@ msgstr "OAuth错误" #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Provider Settings" -msgstr "OAuth提供商设置" +msgstr "OAuth的提供商设置" #. Name of a DocType #: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "OAuth Scope" msgstr "OAuth权限范围" +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + #: frappe/email/doctype/email_account/email_account.js:250 msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." msgstr "OAuth 已启用但未授权。请使用\"Authorise API Access\"按钮进行同样操作。" @@ -17524,12 +17709,12 @@ msgstr "或" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP App" -msgstr "OTP应用" +msgstr "OTP应用程序" #. Label of the otp_issuer_name (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP Issuer Name" -msgstr "OTP发行方名称" +msgstr "OTP发行人名称" #: frappe/twofactor.py:445 msgid "OTP Secret Reset - {0}" @@ -17537,7 +17722,7 @@ msgstr "OTP密钥重置 - {0}" #: frappe/twofactor.py:464 msgid "OTP Secret has been reset. Re-registration will be required on next login." -msgstr "OTP密钥已重置。下次登录需重新注册。" +msgstr "OTP Secret已被重置。下次登录时需要重新注册。" #: frappe/templates/includes/login/login.js:355 msgid "OTP setup using OTP App was not completed. Please contact Administrator." @@ -17552,7 +17737,7 @@ msgstr "发生次数" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "关闭" +msgstr "离线" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -17579,6 +17764,10 @@ msgstr "X轴偏移" msgid "Offset Y" msgstr "Y轴偏移" +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + #: frappe/www/update-password.html:38 msgid "Old Password" msgstr "旧密码" @@ -17591,7 +17780,7 @@ msgstr "新旧字段名相同。" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Older backups will be automatically deleted" -msgstr "较早备份将被自动删除" +msgstr "旧的备份将被自动删除" #. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health #. Report' @@ -17603,12 +17792,12 @@ msgstr "最早未计划任务" #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "On Hold" -msgstr "挂起" +msgstr "临时冻结" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "On Payment Authorization" -msgstr "支付授权时" +msgstr "付款授权" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -17638,7 +17827,7 @@ msgstr "支付完成时" #. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "On checking this option, URL will be treated like a jinja template string" -msgstr "勾选此项后,URL将被视为Jinja模板字符串" +msgstr "勾选后网址是可内嵌变量的jinja模板字符串" #: frappe/public/js/frappe/ui/filters/filter.js:66 #: frappe/public/js/frappe/ui/filters/filter.js:72 @@ -17650,24 +17839,24 @@ msgstr "在或之后" msgid "On or Before" msgstr "在或之前" -#: frappe/public/js/frappe/views/communication.js:960 +#: frappe/public/js/frappe/views/communication.js:963 msgid "On {0}, {1} wrote:" -msgstr "于{0},{1}写道:" +msgstr "{0},{1}写道:" #. Label of the onboard (Check) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:335 msgid "Onboard" -msgstr "入职" +msgstr "初始化步骤" #: frappe/public/js/frappe/widgets/widget_dialog.js:232 msgid "Onboarding Name" -msgstr "入职流程名称" +msgstr "使用向导名" #. Name of a DocType #: frappe/desk/doctype/onboarding_permission/onboarding_permission.json msgid "Onboarding Permission" -msgstr "入职权限" +msgstr "初始化权限" #. Label of the onboarding_status (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -17677,12 +17866,12 @@ msgstr "入职状态" #. Name of a DocType #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Onboarding Step" -msgstr "入职步骤" +msgstr "初始化步骤" #. Name of a DocType #: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Onboarding Step Map" -msgstr "入职步骤映射" +msgstr "初始化步骤对照表" #: frappe/public/js/frappe/widgets/onboarding_widget.js:264 msgid "Onboarding complete" @@ -17692,11 +17881,11 @@ msgstr "入职完成" #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:42 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." -msgstr "一旦提交,可提交的文档将无法更改。只能取消或修订。" +msgstr "一旦提交后无法再修改。只能先取消再点修订按钮,生成新版本后修改。" #: frappe/core/page/permission_manager/permission_manager_help.html:35 msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." -msgstr "设置后,用户只能访问存在链接的文档(例如:博客文章需关联博客作者)。" +msgstr "设置此选项,用户将只能访问包含了此链接的单据(如博客文章) 。" #: frappe/www/complete_signup.html:7 msgid "One Last Step" @@ -17708,32 +17897,32 @@ msgstr "来自{}的一次性密码(OTP)注册码" #: frappe/core/doctype/data_export/exporter.py:331 msgid "One of" -msgstr "其中之一" +msgstr "之一" #: frappe/client.py:213 msgid "Only 200 inserts allowed in one request" -msgstr "单次请求最多允许插入200条记录" +msgstr "只有200将允许一个请求" #: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" -msgstr "仅管理员可删除邮件队列" +msgstr "只有管理员可以删除邮件队列" #: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" -msgstr "仅管理员可编辑" +msgstr "只有管理员可以编辑" #: frappe/core/doctype/report/report.py:75 msgid "Only Administrator can save a standard report. Please rename and save." -msgstr "仅管理员可保存标准报告。请重命名后保存。" +msgstr "只有管理员可以保存标准报表。请修改为新报表名后保存。" -#: frappe/recorder.py:316 +#: frappe/recorder.py:314 msgid "Only Administrator is allowed to use Recorder" -msgstr "仅管理员可使用记录器" +msgstr "只允许管理员使用记录器" #. Label of the allow_edit (Link) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Only Allow Edit For" -msgstr "仅允许编辑者" +msgstr "角色(允许编辑)" #: frappe/core/doctype/doctype/doctype.py:1620 msgid "Only Options allowed for Data field are:" @@ -17742,7 +17931,7 @@ msgstr "数据字段仅允许以下选项:" #. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Only Send Records Updated in Last X Hours" -msgstr "仅发送最近X小时更新的记录" +msgstr "只发送最后X小时更新的记录" #: frappe/desk/doctype/workspace/workspace.js:32 msgid "Only Workspace Manager can edit public workspaces" @@ -17752,7 +17941,7 @@ msgstr "仅工作区管理员可编辑公共工作区" msgid "Only allowed to export customizations in developer mode" msgstr "仅开发者模式下允许导出自定义项" -#: frappe/model/document.py:1231 +#: frappe/model/document.py:1235 msgid "Only draft documents can be discarded" msgstr "仅草稿文档可丢弃" @@ -17760,11 +17949,11 @@ msgstr "仅草稿文档可丢弃" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" -msgstr "仅适用于" +msgstr "仅限" #: frappe/core/doctype/data_export/exporter.py:192 msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." -msgstr "新建记录仅需必填字段。可删除非必填列。" +msgstr "新记录中只有必填字段是必须的。可以删除非必填字段。" #: frappe/contacts/doctype/contact/contact.py:131 #: frappe/contacts/doctype/contact/contact.py:158 @@ -17781,9 +17970,9 @@ msgstr "仅报表生成器类型的报告可编辑" #: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Only standard DocTypes are allowed to be customized from Customize Form." -msgstr "仅标准文档类型可通过表单自定义进行定制。" +msgstr "只允许从“定制表单”定制标准DocType。" -#: frappe/model/delete_doc.py:240 +#: frappe/model/delete_doc.py:241 msgid "Only the Administrator can delete a standard DocType." msgstr "仅管理员可删除标准文档类型。" @@ -17791,7 +17980,7 @@ msgstr "仅管理员可删除标准文档类型。" msgid "Only the assignee can complete this to-do." msgstr "仅被分配者可完成此待办事项。" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:106 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 msgid "Only {0} emailed reports are allowed per user." msgstr "每位用户仅允许通过邮件发送{0}份报告。" @@ -17811,7 +18000,7 @@ msgstr "糟糕!出错了。" #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Open" -msgstr "打开" +msgstr "待处理" #: frappe/desk/doctype/todo/todo_list.js:14 msgctxt "Access" @@ -17821,7 +18010,7 @@ msgstr "打开" #: frappe/public/js/frappe/ui/keyboard.js:207 #: frappe/public/js/frappe/ui/keyboard.js:217 msgid "Open Awesomebar" -msgstr "打开智能栏" +msgstr "打开Awesomebar" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 #: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 @@ -17837,7 +18026,7 @@ msgstr "打开文档" #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Open Documents" -msgstr "打开文档" +msgstr "未结案单据" #: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" @@ -17855,7 +18044,7 @@ msgstr "打开设置" #: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Open Source Applications for the Web" -msgstr "开源Web应用" +msgstr "开源为Web应用程序" #. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -17869,7 +18058,7 @@ msgstr "打开含必填字段的对话框快速创建记录。对话框中需至 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 msgid "Open a module or tool" -msgstr "打开模块或工具" +msgstr "打开一个模块或工具" #: frappe/public/js/frappe/ui/keyboard.js:366 msgid "Open console" @@ -17879,7 +18068,7 @@ msgstr "" msgid "Open in a new tab" msgstr "在新标签页打开" -#: frappe/public/js/frappe/list/list_view.js:1290 +#: frappe/public/js/frappe/list/list_view.js:1288 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "打开列表项" @@ -17890,7 +18079,7 @@ msgstr "打开引用文档" #: frappe/www/qrcode.html:13 msgid "Open your authentication app on your mobile phone." -msgstr "在手机上打开身份验证应用。" +msgstr "在手机上打开授权认证应用程序。" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 @@ -17917,16 +18106,16 @@ msgstr "OpenLDAP" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Opened" -msgstr "已打开" +msgstr "开业" #. Label of the operation (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Operation" -msgstr "操作" +msgstr "工序" -#: frappe/utils/data.py:2117 +#: frappe/utils/data.py:2128 msgid "Operator must be one of {0}" -msgstr "运算符必须是{0}之一" +msgstr "运算符必须是{0}" #: frappe/core/doctype/file/file.js:34 #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 @@ -17934,7 +18123,7 @@ msgstr "运算符必须是{0}之一" msgid "Optimize" msgstr "优化" -#: frappe/core/doctype/file/file.js:105 +#: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." msgstr "正在优化图像..." @@ -17952,17 +18141,17 @@ msgstr "选项3" #: frappe/core/doctype/doctype/doctype.py:1638 msgid "Option {0} for field {1} is not a child table" -msgstr "字段{1}的选项{0}不是子表" +msgstr "为字段{1}设置的选项{0}未被定义为是子表" #. Description of the 'CC' (Code) field in DocType 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Optional: Always send to these ids. Each Email Address on a new row" -msgstr "可选:始终发送至这些ID。每行一个邮件地址" +msgstr "可选:总是发送给这些ID。每一行一个电子邮件地址" #. Description of the 'Condition' (Code) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Optional: The alert will be sent if this expression is true" -msgstr "可选:当表达式为真时发送警报" +msgstr "可选:在这个表达式为真时发送通知" #. Label of the options (Small Text) field in DocType 'DocField' #. Label of the options (Data) field in DocType 'Report Column' @@ -17984,7 +18173,7 @@ msgstr "选项" #: frappe/core/doctype/doctype/doctype.py:1366 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" -msgstr "“动态链接”类型字段必须指向另一个选项为“文档类型”的链接字段" +msgstr "选择“动态链接”类型的字段都必须指向另一个选项为'DocType“的链接字段" #. Label of the options_help (HTML) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json @@ -18009,7 +18198,7 @@ msgstr "{1}类型字段{0}必须设置选项" #: frappe/model/base_document.py:871 msgid "Options not set for link field {0}" -msgstr "未设置链接字段{0}的选项" +msgstr "链接字段未设置选项{0}" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' @@ -18021,28 +18210,32 @@ msgstr "橙色" #. Label of the order (Code) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" -msgstr "顺序" +msgstr "订购" + +#: frappe/database/query.py:767 +msgid "Order By must be a string" +msgstr "" #. Label of the sb0 (Section Break) field in DocType 'About Us Settings' #. Label of the company_history (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History" -msgstr "组织沿革" +msgstr "企业发展史" #. Label of the company_history_heading (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Org History Heading" -msgstr "组织沿革标题" +msgstr "公司发展历程标题" -#: frappe/public/js/frappe/form/print_utils.js:28 +#: frappe/public/js/frappe/form/print_utils.js:15 msgid "Orientation" msgstr "方向" #: frappe/core/doctype/version/version_view.html:13 #: frappe/core/doctype/version/version_view.html:75 msgid "Original Value" -msgstr "原始值" +msgstr "原值" #. Option for the 'Address Type' (Select) field in DocType 'Address' #. Option for the 'Type' (Select) field in DocType 'Communication' @@ -18054,18 +18247,18 @@ msgstr "原始值" #: frappe/desk/doctype/event/event.json #: frappe/desk/page/setup_wizard/install_fixtures.py:30 msgid "Other" -msgstr "其他" +msgstr "其它" #. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing" -msgstr "出站" +msgstr "Outgoing" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" -msgstr "出站(SMTP)设置" +msgstr "发邮件设置" #. Label of the outgoing_emails_column (Column Break) field in DocType 'System #. Health Report' @@ -18078,17 +18271,17 @@ msgstr "出站邮件(最近7天)" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" -msgstr "发件服务器" +msgstr "发送邮件服务器" #. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email #. Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Settings" -msgstr "出站设置" +msgstr "发邮件设置" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" -msgstr "出站邮件账户不正确" +msgstr "发件人邮箱帐号不正确" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -18106,26 +18299,28 @@ msgstr "输出" #: frappe/public/js/frappe/form/templates/form_dashboard.html:5 msgid "Overview" -msgstr "概览" +msgstr "概况" #: frappe/core/report/transaction_log_report/transaction_log_report.py:100 msgid "Owner" -msgstr "所有者" +msgstr "制单人" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" msgstr "PATCH方法" +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/page/print/print.js:71 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1744 +#: frappe/public/js/frappe/views/reports/query_report.js:1794 msgid "PDF" msgstr "PDF" #: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 msgid "PDF Generation in Progress" -msgstr "PDF生成中" +msgstr "PDF文件生成中" #. Label of the pdf_generator (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -18135,17 +18330,17 @@ msgstr "PDF生成器" #. Label of the pdf_page_height (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Height (in mm)" -msgstr "PDF页面高度(毫米)" +msgstr "PDF页高(毫米)" #. Label of the pdf_page_size (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Size" -msgstr "PDF页面尺寸" +msgstr "PDF页面大小" #. Label of the pdf_page_width (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "PDF Page Width (in mm)" -msgstr "PDF页面宽度(毫米)" +msgstr "PDF页宽(毫米)" #. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -18158,7 +18353,7 @@ msgstr "PDF生成失败" #: frappe/utils/pdf.py:106 msgid "PDF generation failed because of broken image links" -msgstr "因图像链接损坏导致PDF生成失败" +msgstr "PDF生成,因为破碎的图像链接失败" #: frappe/printing/page/print/print.js:616 msgid "PDF generation may not work as expected." @@ -18196,34 +18391,34 @@ msgstr "PUT方法" #: frappe/core/doctype/package_release/package_release.json #: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" -msgstr "软件包" +msgstr "包" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/package_import/package_import.json #: frappe/core/workspace/build/build.json msgid "Package Import" -msgstr "软件包导入" +msgstr "包导入" #. Label of the package_name (Data) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Package Name" -msgstr "软件包名称" +msgstr "包名" #. Name of a DocType #: frappe/core/doctype/package_release/package_release.json msgid "Package Release" -msgstr "软件包发布" +msgstr "包发布" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Packages" -msgstr "软件包集" +msgstr "包" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" -msgstr "软件包是轻量级应用(模块定义集合),可直接通过界面创建、导入或发布" +msgstr "包是可从用户界面创建、导入、或发布的包含模块的轻量级应用" #. Label of the page (Link) field in DocType 'Custom Role' #. Name of a DocType @@ -18267,11 +18462,11 @@ msgstr "页面构建块" #. Label of the page_html (Section Break) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "页面HTML" +msgstr "页面的HTML" #: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" -msgstr "页面高度(毫米)" +msgstr "页高(毫米)" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 msgid "Page Margins" @@ -18280,7 +18475,7 @@ msgstr "页面边距" #. Label of the page_name (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page Name" -msgstr "页面名称" +msgstr "网页名称" #. Label of the page_number (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -18301,24 +18496,24 @@ msgstr "页面设置" #: frappe/public/js/frappe/ui/keyboard.js:125 msgid "Page Shortcuts" -msgstr "页面快捷方式" +msgstr "页面快速访问" #: frappe/public/js/frappe/list/bulk_operations.js:66 msgid "Page Size" -msgstr "页面尺寸" +msgstr "纸张大小" #. Label of the page_title (Data) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Page Title" -msgstr "页面标题" +msgstr "页标题" #: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" -msgstr "页面宽度(毫米)" +msgstr "页宽(毫米)" #: frappe/www/qrcode.py:35 msgid "Page has expired!" -msgstr "页面已过期!" +msgstr "页已过期!" #: frappe/printing/doctype/print_settings/print_settings.py:70 #: frappe/public/js/frappe/list/bulk_operations.js:106 @@ -18327,7 +18522,7 @@ msgstr "页面高度和宽度不能为零" #: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" -msgstr "页面未找到" +msgstr "找不到网页" #. Description of a DocType #: frappe/website/doctype/web_page/web_page.json @@ -18339,7 +18534,7 @@ msgstr "在网站上显示的页面\n" #: frappe/public/js/frappe/web_form/web_form.js:264 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" -msgstr "第{0}页/共{1}页" +msgstr "第{0}页,共{1}页" #. Label of the parameter (Data) field in DocType 'SMS Parameter' #: frappe/core/doctype/sms_parameter/sms_parameter.json @@ -18349,12 +18544,12 @@ msgstr "参数" #: frappe/public/js/frappe/model/model.js:142 #: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" -msgstr "父级" +msgstr "父" #. Label of the parent_doctype (Link) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" -msgstr "父文档类型" +msgstr "父单据类型" #. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' #. Label of the parent_document_type (Link) field in DocType 'Number Card' @@ -18382,7 +18577,7 @@ msgstr "父字段" #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype.py:933 msgid "Parent Field (Tree)" -msgstr "父字段(树形)" +msgstr "父字段(树)" #: frappe/core/doctype/doctype/doctype.py:939 msgid "Parent Field must be a valid fieldname" @@ -18412,13 +18607,13 @@ msgstr "创建仪表板图表需要父文档类型" #: frappe/core/doctype/data_export/exporter.py:253 msgid "Parent is the name of the document to which the data will get added to." -msgstr "父项是数据将被添加到的文档名称" +msgstr "Parent是将数据添加到的单据的名称。" -#: frappe/public/js/frappe/ui/group_by/group_by.js:251 -msgid "Parent-to-child or child-to-parent grouping is not allowed." -msgstr "禁止父子层级互相嵌套的分组方式。" +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" -#: frappe/permissions.py:807 +#: frappe/permissions.py:820 msgid "Parentfield not specified in {0}: {1}" msgstr "{0}中未指定父字段:{1}" @@ -18455,7 +18650,7 @@ msgstr "通过" #. Option for the 'Status' (Select) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Passive" -msgstr "被动" +msgstr "已创建" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the password_settings (Section Break) field in DocType 'System @@ -18478,11 +18673,11 @@ msgstr "被动" msgid "Password" msgstr "密码" -#: frappe/core/doctype/user/user.py:1081 +#: frappe/core/doctype/user/user.py:1085 msgid "Password Email Sent" msgstr "密码邮件已发送" -#: frappe/core/doctype/user/user.py:458 +#: frappe/core/doctype/user/user.py:459 msgid "Password Reset" msgstr "密码重置" @@ -18502,11 +18697,11 @@ msgstr "密码修改成功" #. Label of the password (Password) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Password for Base DN" -msgstr "基础DN密码" +msgstr "密码基础DN" #: frappe/email/doctype/email_account/email_account.py:189 msgid "Password is required or select Awaiting Password" -msgstr "需要密码或选择等待密码" +msgstr "需要密码,或者选择等待密码" #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" @@ -18516,11 +18711,11 @@ msgstr "邮箱账户缺少密码" msgid "Password not found for {0} {1} {2}" msgstr "未找到{0} {1} {2}的密码" -#: frappe/core/doctype/user/user.py:1080 +#: frappe/core/doctype/user/user.py:1084 msgid "Password reset instructions have been sent to {}'s email" msgstr "密码重置说明已发送至{}的邮箱" -#: frappe/www/update-password.html:166 +#: frappe/www/update-password.html:191 msgid "Password set" msgstr "密码已设置" @@ -18528,11 +18723,11 @@ msgstr "密码已设置" msgid "Password size exceeded the maximum allowed size" msgstr "密码长度超过允许最大值" -#: frappe/core/doctype/user/user.py:871 +#: frappe/core/doctype/user/user.py:875 msgid "Password size exceeded the maximum allowed size." msgstr "密码长度超过允许最大值" -#: frappe/www/update-password.html:80 +#: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "密码不匹配" @@ -18540,10 +18735,6 @@ msgstr "密码不匹配" msgid "Passwords do not match!" msgstr "密码不匹配!" -#: frappe/email/doctype/newsletter/newsletter.py:157 -msgid "Past dates are not allowed for Scheduling." -msgstr "计划调度不允许使用过去日期" - #: frappe/public/js/frappe/views/file/file_view.js:151 msgid "Paste" msgstr "粘贴" @@ -18576,23 +18767,23 @@ msgstr "未在patches.txt中找到{}类型的补丁" #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:35 msgid "Path" -msgstr "路径" +msgstr "网址路径" #. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to CA Certs File" -msgstr "CA证书文件路径" +msgstr "CA Certs文件的路径" #. Label of the local_server_certificate_file (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to Server Certificate" -msgstr "服务器证书路径" +msgstr "服务器证书的路径" #. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Path to private Key File" -msgstr "私钥文件路径" +msgstr "私钥文件的路径" #: frappe/website/path_resolver.py:208 msgid "Path {0} it not a valid path" @@ -18622,7 +18813,7 @@ msgstr "待处理" #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Pending Approval" -msgstr "待审批" +msgstr "待批准" #. Label of the pending_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -18666,16 +18857,16 @@ msgstr "期间" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Perm Level" -msgstr "权限层级" +msgstr "权限级别" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Permanent" -msgstr "永久" +msgstr "常驻" #: frappe/public/js/frappe/form/form.js:1028 msgid "Permanently Cancel {0}?" -msgstr "永久取消{0}?" +msgstr "取消{0} ?" #: frappe/public/js/frappe/form/form.js:1074 msgid "Permanently Discard {0}?" @@ -18683,30 +18874,30 @@ msgstr "永久丢弃{0}?" #: frappe/public/js/frappe/form/form.js:861 msgid "Permanently Submit {0}?" -msgstr "永久提交{0}?" +msgstr "正式提交{0}?" #: frappe/public/js/frappe/model/model.js:684 msgid "Permanently delete {0}?" -msgstr "永久删除{0}?" +msgstr "永久删除{0} ?" -#: frappe/core/doctype/user_type/user_type.py:84 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 msgid "Permission Error" msgstr "权限错误" #. Name of a DocType #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Inspector" -msgstr "权限检查器" +msgstr "权限调试工具" #. Label of the permlevel (Int) field in DocType 'Custom Field' #: frappe/core/page/permission_manager/permission_manager.js:463 #: frappe/custom/doctype/custom_field/custom_field.json msgid "Permission Level" -msgstr "权限层级" +msgstr "权限级别" #: frappe/core/page/permission_manager/permission_manager_help.html:22 msgid "Permission Levels" -msgstr "权限层级" +msgstr "权限级别" #. Name of a DocType #: frappe/core/doctype/permission_log/permission_log.json @@ -18716,12 +18907,12 @@ msgstr "权限日志" #. Label of a shortcut in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Permission Manager" -msgstr "权限管理器" +msgstr "角色权限管理" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Permission Query" -msgstr "权限查询" +msgstr "列表权限过滤" #. Label of the permission_rules (Section Break) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json @@ -18764,36 +18955,36 @@ msgstr "权限错误" #: frappe/core/page/permission_manager/permission_manager_help.html:10 msgid "Permissions are automatically applied to Standard Reports and searches." -msgstr "权限会自动应用于标准报表和搜索" +msgstr "权限会自动应用于标准报表和搜索。" #: frappe/core/page/permission_manager/permission_manager_help.html:5 msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." -msgstr "通过设置读取、写入、创建、删除、提交、取消、修订、报告、导入、导出、打印、邮件和设置用户权限等权利,为角色和文档类型(称为DocType)分配权限" +msgstr "权限设置基于用户角色和单据类型,可设置的权限包括读,写,创建,删除,提交,取消,修改,报表,导入,导出,打印,电子邮件和设置用户权限限制。" #: frappe/core/page/permission_manager/permission_manager_help.html:26 msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." -msgstr "更高层级的权限是字段级权限。所有字段都有对应的权限层级设置,该层级定义的规则适用于字段。可用于为特定角色隐藏或设置字段只读" +msgstr "更高级权限是字段级权限。可以为每个字段设置所需的权限等级,特定的角色被分配对应的权限等级,据此就可以用不同的角色限制不同的用户有不同的字段访问权限。" #: frappe/core/page/permission_manager/permission_manager_help.html:24 msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." -msgstr "0层级的权限是文档级权限,即文档访问的主要权限" +msgstr "0级权限是单据级的权限,也就是说,它们是主要用于访问文件。" #: frappe/core/page/permission_manager/permission_manager_help.html:6 msgid "Permissions get applied on Users based on what Roles they are assigned." -msgstr "权限根据用户分配的角色进行应用" +msgstr "权限检查基于已分派给用户的角色。" #. Name of a report #. Label of a Link in the Users Workspace #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json #: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" -msgstr "用户许可文档" +msgstr "用户被授权单据" #. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow #. Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" -msgstr "许可角色" +msgstr "被授权角色" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -18813,7 +19004,7 @@ msgstr "个人数据删除步骤" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "个人数据下载请求" +msgstr "个人资料下载请求" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' @@ -18841,15 +19032,15 @@ msgstr "电话" msgid "Phone No." msgstr "电话号码" -#: frappe/utils/__init__.py:121 +#: frappe/utils/__init__.py:122 msgid "Phone Number {0} set in field {1} is not valid." msgstr "字段{1}中设置的电话号码{0}无效" -#: frappe/public/js/frappe/form/print_utils.js:40 +#: frappe/public/js/frappe/form/print_utils.js:53 #: frappe/public/js/frappe/views/reports/report_view.js:1579 #: frappe/public/js/frappe/views/reports/report_view.js:1582 msgid "Pick Columns" -msgstr "选择列" +msgstr "选择报表输出字段" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -18859,14 +19050,14 @@ msgstr "饼图" #. Label of the pincode (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Pincode" -msgstr "邮编" +msgstr "邮政编号" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" -msgstr "粉色" +msgstr "粉红色" #. Label of the placeholder (Data) field in DocType 'DocField' #. Label of the placeholder (Data) field in DocType 'Custom Field' @@ -18897,13 +19088,13 @@ msgstr "请为邮箱账户{}授权OAuth" #: frappe/website/doctype/website_theme/website_theme.py:77 msgid "Please Duplicate this Website Theme to customize." -msgstr "请复制此网站主题进行自定义" +msgstr "请复制此网址主题定制。" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 msgid "Please Install the ldap3 library via pip to use ldap functionality." -msgstr "请通过pip安装ldap3库以使用LDAP功能" +msgstr "请通过pip安装ldap3库以使用ldap功能。" -#: frappe/public/js/frappe/views/reports/query_report.js:307 +#: frappe/public/js/frappe/views/reports/query_report.js:308 msgid "Please Set Chart" msgstr "请设置图表" @@ -18913,19 +19104,19 @@ msgstr "请更新短信设置" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 msgid "Please add a subject to your email" -msgstr "请添加邮件主题" +msgstr "请在您的电子邮件中添加主题" #: frappe/templates/includes/comments/comments.html:168 msgid "Please add a valid comment." msgstr "请添加有效评论" -#: frappe/core/doctype/user/user.py:1063 +#: frappe/core/doctype/user/user.py:1067 msgid "Please ask your administrator to verify your sign-up" -msgstr "请让管理员验证您的注册" +msgstr "请联络管理员确认您的注册" #: frappe/public/js/frappe/form/controls/select.js:101 msgid "Please attach a file first." -msgstr "请先附加文件" +msgstr "请附上文件第一。" #: frappe/printing/doctype/letter_head/letter_head.py:76 msgid "Please attach an image file to set HTML for Footer." @@ -18951,9 +19142,9 @@ msgstr "请检查仪表板图表设置的过滤值:{}" msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "请检查为字段{0}设置的“提取自”的值" -#: frappe/core/doctype/user/user.py:1061 +#: frappe/core/doctype/user/user.py:1065 msgid "Please check your email for verification" -msgstr "请检查邮箱进行验证" +msgstr "请在您的电子邮件中查看验证码" #: frappe/email/smtp.py:134 msgid "Please check your email login credentials." @@ -18961,7 +19152,7 @@ msgstr "请检查邮箱登录凭证" #: frappe/twofactor.py:243 msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." -msgstr "请查看注册邮箱获取操作说明。不要关闭此窗口,您需要返回此处" +msgstr "请查看您注册的电子邮件以获取有关如何继续的说明。不要关闭此窗口,因为后面还得回到这里。" #: frappe/desk/doctype/workspace/workspace.js:23 msgid "Please click Edit on the Workspace for best results" @@ -18977,11 +19168,11 @@ msgstr "请点击以下链接并按页面指示操作。{0}" #: frappe/templates/emails/password_reset.html:2 msgid "Please click on the following link to set your new password" -msgstr "请点击以下链接设置新密码" +msgstr "请点击以下链接来设置新密码" #: frappe/www/confirm_workflow_action.html:4 msgid "Please confirm your action to {0} this document." -msgstr "请确认要对此文档执行{0}操作" +msgstr "确认 {0} 本单据。" #: frappe/printing/page/print/print.js:618 msgid "Please contact your system manager to install correct version." @@ -19001,11 +19192,11 @@ msgstr "请从{0}删除字段或添加所需文档类型" #: frappe/core/doctype/data_export/exporter.py:184 msgid "Please do not change the template headings." -msgstr "请勿修改模板标题" +msgstr "请不要更改模板标题。" #: frappe/printing/doctype/print_format/print_format.js:18 msgid "Please duplicate this to make changes" -msgstr "请复制此项进行修改" +msgstr "请复制后修改" #: frappe/core/doctype/system_settings/system_settings.py:163 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." @@ -19016,9 +19207,9 @@ msgstr "禁用用户名/密码登录前,请至少启用一个社交登录密 #: frappe/printing/page/print/print.js:638 #: frappe/printing/page/print/print.js:668 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1431 +#: frappe/public/js/frappe/utils/utils.js:1434 msgid "Please enable pop-ups" -msgstr "请启用弹窗" +msgstr "请启用弹出窗口" #: frappe/public/js/frappe/microtemplate.js:162 #: frappe/public/js/frappe/microtemplate.js:177 @@ -19031,45 +19222,45 @@ msgstr "请先启用{}再继续" #: frappe/utils/oauth.py:191 msgid "Please ensure that your profile has an email address" -msgstr "请确保个人资料包含邮箱地址" +msgstr "请确保您的个人资料有一个电子邮件地址," -#: frappe/integrations/doctype/social_login_key/social_login_key.py:82 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 msgid "Please enter Access Token URL" msgstr "请输入访问令牌URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:80 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" -msgstr "请输入授权URL" +msgstr "请输入授权网址" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:78 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" -msgstr "请输入基础URL" +msgstr "请输入基本网址" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:86 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 msgid "Please enter Client ID before social login is enabled" -msgstr "启用社交登录前请输入客户端ID" +msgstr "在启用社交登录之前,请输入客户端ID" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:89 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 msgid "Please enter Client Secret before social login is enabled" -msgstr "启用社交登录前请输入客户端密钥" +msgstr "在启用社交登录之前,请输入客户端密码" #: frappe/integrations/doctype/connected_app/connected_app.js:8 msgid "Please enter OpenID Configuration URL" msgstr "请输入OpenID配置URL" -#: frappe/integrations/doctype/social_login_key/social_login_key.py:84 +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 msgid "Please enter Redirect URL" -msgstr "请输入重定向URL" +msgstr "请输入重定向网址" #: frappe/templates/includes/comments/comments.html:163 msgid "Please enter a valid email address." -msgstr "请输入有效邮箱地址" +msgstr "请输入有效的电子邮件地址。" #: frappe/templates/includes/contact.js:15 msgid "Please enter both your email and message so that we can get back to you. Thanks!" msgstr "请填写邮箱和留言以便回复,谢谢!" -#: frappe/www/update-password.html:234 +#: frappe/www/update-password.html:259 msgid "Please enter the password" msgstr "请输入密码" @@ -19080,13 +19271,13 @@ msgstr "请输入{0}的密码" #: frappe/core/doctype/sms_settings/sms_settings.py:43 msgid "Please enter valid mobile nos" -msgstr "请输入有效手机号" +msgstr "请输入有效的手机号" -#: frappe/www/update-password.html:117 +#: frappe/www/update-password.html:142 msgid "Please enter your new password." msgstr "请输入新密码" -#: frappe/www/update-password.html:110 +#: frappe/www/update-password.html:135 msgid "Please enter your old password." msgstr "请输入旧密码" @@ -19100,11 +19291,11 @@ msgstr "请登录后发表评论" #: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." -msgstr "请确保参考通信文档没有循环链接" +msgstr "请确保参考通信单据未被递归引用。" -#: frappe/model/document.py:986 +#: frappe/model/document.py:988 msgid "Please refresh to get the latest document." -msgstr "请刷新获取最新文档" +msgstr "请刷新获取最新数据。" #: frappe/printing/page/print/print.js:535 msgid "Please remove the printer mapping in Printer Settings and try again." @@ -19112,19 +19303,15 @@ msgstr "请在打印机设置中移除打印机映射后重试" #: frappe/public/js/frappe/form/form.js:358 msgid "Please save before attaching." -msgstr "附加前请先保存" - -#: frappe/email/doctype/newsletter/newsletter.py:131 -msgid "Please save the Newsletter before sending" -msgstr "发送前请先保存新闻稿" +msgstr "请安装前保存。" #: frappe/public/js/frappe/form/sidebar/assign_to.js:52 msgid "Please save the document before assignment" -msgstr "分配前请先保存文档" +msgstr "分派待办前请先保存单据" #: frappe/public/js/frappe/form/sidebar/assign_to.js:72 msgid "Please save the document before removing assignment" -msgstr "移除分配前请先保存文档" +msgstr "请删除分派之前保存的单据" #: frappe/public/js/frappe/views/reports/report_view.js:1709 msgid "Please save the report first" @@ -19136,7 +19323,7 @@ msgstr "请保存后编辑模板" #: frappe/printing/doctype/print_format/print_format.js:30 msgid "Please select DocType first" -msgstr "请先选择文档类型" +msgstr "请首先选择单据类型" #: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 msgid "Please select Entity Type first" @@ -19144,13 +19331,13 @@ msgstr "请先选择实体类型" #: frappe/core/doctype/system_settings/system_settings.py:113 msgid "Please select Minimum Password Score" -msgstr "请选择最低密码强度" +msgstr "请选择最低密码分数" -#: frappe/public/js/frappe/views/reports/query_report.js:1183 +#: frappe/public/js/frappe/views/reports/query_report.js:1184 msgid "Please select X and Y fields" -msgstr "请选择X和Y字段" +msgstr "请选择X和Y轴字段" -#: frappe/utils/__init__.py:128 +#: frappe/utils/__init__.py:129 msgid "Please select a country code for field {1}." msgstr "请为字段{1}选择国家代码" @@ -19160,23 +19347,23 @@ msgstr "请先选择文件" #: frappe/utils/file_manager.py:50 msgid "Please select a file or url" -msgstr "请选择文件或URL" +msgstr "请选择一个文件或URL" #: frappe/model/rename_doc.py:685 msgid "Please select a valid csv file with data" -msgstr "请选择包含数据的有效CSV文件" +msgstr "请选择与数据的有效csv文件" -#: frappe/utils/data.py:299 +#: frappe/utils/data.py:309 msgid "Please select a valid date filter" msgstr "请选择有效日期过滤器" #: frappe/core/doctype/user_permission/user_permission_list.js:203 msgid "Please select applicable Doctypes" -msgstr "请选择适用文档类型" +msgstr "请选择单据类型" -#: frappe/model/db_query.py:1141 +#: frappe/model/db_query.py:1142 msgid "Please select atleast 1 column from {0} to sort/group" -msgstr "请从{0}选择至少1列进行排序/分组" +msgstr "请选择从{0}进行排序/组ATLEAST 1柱" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 msgid "Please select prefix first" @@ -19184,7 +19371,7 @@ msgstr "请先选择前缀" #: frappe/core/doctype/data_export/data_export.js:42 msgid "Please select the Document Type." -msgstr "请选择文档类型" +msgstr "请选择单据类型。" #. Description of the 'Directory Server' (Select) field in DocType 'LDAP #. Settings' @@ -19198,19 +19385,19 @@ msgstr "请选择{0}" #: frappe/contacts/doctype/contact/contact.py:298 msgid "Please set Email Address" -msgstr "请设置邮箱地址" +msgstr "请设置电子邮件地址" #: frappe/printing/page/print/print.js:549 msgid "Please set a printer mapping for this print format in the Printer Settings" -msgstr "请在打印机设置中为此打印格式设置打印机映射" +msgstr "请在“打印机设置”中为此打印格式设置打印机映射" -#: frappe/public/js/frappe/views/reports/query_report.js:1406 +#: frappe/public/js/frappe/views/reports/query_report.js:1407 msgid "Please set filters" -msgstr "请设置过滤器" +msgstr "请设置过滤条件" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:251 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." -msgstr "请在报表过滤器表中设置过滤值" +msgstr "请设置在报表过滤表过滤条件值。" #: frappe/model/naming.py:572 msgid "Please set the document name" @@ -19222,17 +19409,17 @@ msgstr "请先将仪表板中的以下文档设为标准文档" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 msgid "Please set the series to be used." -msgstr "请设置要使用的序列" +msgstr "请设置要使用的单据编号模板。" #: frappe/core/doctype/system_settings/system_settings.py:126 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" -msgstr "设为认证方式前,请通过短信设置配置短信功能" +msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 msgid "Please setup a message first" -msgstr "请先设置消息" +msgstr "请先设置一条消息" -#: frappe/core/doctype/user/user.py:423 +#: frappe/core/doctype/user/user.py:424 msgid "Please setup default outgoing Email Account from Settings > Email Account" msgstr "请通过设置 > 邮箱账户配置默认发件账户" @@ -19242,9 +19429,9 @@ msgstr "请通过工具 > 邮箱账户配置默认发件账户" #: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" -msgstr "请具体说明" +msgstr "请先输入" -#: frappe/permissions.py:783 +#: frappe/permissions.py:796 msgid "Please specify a valid parent DocType for {0}" msgstr "请为{0}指定有效的父文档类型" @@ -19258,7 +19445,7 @@ msgstr "请指定分钟偏移量" #: frappe/email/doctype/notification/notification.py:145 msgid "Please specify which date field must be checked" -msgstr "请指定需要检查的日期字段" +msgstr "请指定必须检查的日期字段" #: frappe/email/doctype/notification/notification.py:149 msgid "Please specify which datetime field must be checked" @@ -19266,12 +19453,12 @@ msgstr "请指定需要检查的日期时间字段" #: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which value field must be checked" -msgstr "请指定需要检查的数值字段" +msgstr "请指定必须检查的值字段" #: frappe/public/js/frappe/request.js:187 #: frappe/public/js/frappe/views/translation_manager.js:102 msgid "Please try again" -msgstr "请重试" +msgstr "请再试一次" #: frappe/integrations/google_oauth.py:58 msgid "Please update {} before continuing." @@ -19281,14 +19468,19 @@ msgstr "继续前请更新{}" msgid "Please use a valid LDAP search filter" msgstr "请使用有效的LDAP搜索过滤器" -#: frappe/email/doctype/newsletter/newsletter.py:333 -msgid "Please verify your Email Address" -msgstr "请验证邮箱地址" +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" #: frappe/utils/password.py:218 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "更多信息请访问https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key" +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -19320,7 +19512,7 @@ msgstr "端口" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Portal Menu" -msgstr "门户菜单" +msgstr "门户网站菜单" #. Name of a DocType #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -19332,11 +19524,11 @@ msgstr "门户菜单项" #: frappe/website/doctype/portal_settings/portal_settings.json #: frappe/website/workspace/website/website.json msgid "Portal Settings" -msgstr "门户设置" +msgstr "门户网站设置" -#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/form/print_utils.js:18 msgid "Portrait" -msgstr "纵向" +msgstr "纵向打印" #. Label of the position (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -19349,7 +19541,7 @@ msgstr "位置" #: frappe/templates/discussions/reply_section.html:53 #: frappe/templates/discussions/topic_modal.html:11 msgid "Post" -msgstr "提交" +msgstr "帖子" #: frappe/templates/discussions/reply_section.html:40 msgid "Post it here, our mentors will help you out." @@ -19372,11 +19564,15 @@ msgstr "过账时间戳" #: frappe/website/doctype/blog_post/blog_post.py:264 msgid "Posts by {0}" -msgstr "{0}发布的文章" +msgstr "帖子{0}" #: frappe/website/doctype/blog_post/blog_post.py:256 msgid "Posts filed under {0}" -msgstr "归类于{0}的文章" +msgstr "帖子下提出{0}" + +#: frappe/database/query.py:1518 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" #. Label of the precision (Select) field in DocType 'DocField' #. Label of the precision (Select) field in DocType 'Custom Field' @@ -19391,11 +19587,11 @@ msgstr "精度" #: frappe/core/doctype/doctype/doctype.py:1400 msgid "Precision should be between 1 and 6" -msgstr "精度应在1到6之间" +msgstr "精度应为1和6之间" #: frappe/utils/password_strength.py:187 msgid "Predictable substitutions like '@' instead of 'a' don't help very much." -msgstr "可预测的替换(如用'@'代替'a')安全性不高" +msgstr "可预见的替换像'@'而不是'一'不要太大帮助。" #: frappe/desk/page/setup_wizard/install_fixtures.py:34 msgid "Prefer not to say" @@ -19404,12 +19600,12 @@ msgstr "不愿透露" #. Label of the is_primary_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Billing Address" -msgstr "首选账单地址" +msgstr "首选开票地址" #. Label of the is_shipping_address (Check) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Preferred Shipping Address" -msgstr "首选收货地址" +msgstr "首选送货地址" #. Label of the prefix (Data) field in DocType 'Document Naming Rule' #. Label of the prefix (Autocomplete) field in DocType 'Document Naming @@ -19425,7 +19621,7 @@ msgstr "前缀" #: frappe/core/doctype/report/report.json #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 msgid "Prepared Report" -msgstr "预制报表" +msgstr "后台运行报表" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json @@ -19435,23 +19631,23 @@ msgstr "预制报表分析" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" -msgstr "预制报表用户" +msgstr "后台运行报表用户" -#: frappe/desk/query_report.py:306 +#: frappe/desk/query_report.py:307 msgid "Prepared report render failed" msgstr "预制报表渲染失败" -#: frappe/public/js/frappe/views/reports/query_report.js:472 +#: frappe/public/js/frappe/views/reports/query_report.js:473 msgid "Preparing Report" -msgstr "正在准备报表" +msgstr "准备报表" -#: frappe/public/js/frappe/views/communication.js:428 +#: frappe/public/js/frappe/views/communication.js:431 msgid "Prepend the template to the email message" -msgstr "将模板添加到邮件正文前部" +msgstr "将模板内容追加到邮件正文(消息)" #: frappe/public/js/frappe/ui/keyboard.js:139 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "按Alt键触发菜单和侧边栏的附加快捷键" +msgstr "按Alt键可在菜单和侧边栏中触发其他快速访问" #: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" @@ -19466,8 +19662,6 @@ msgstr "按Enter键保存" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/newsletter/newsletter.js:14 -#: frappe/email/doctype/newsletter/newsletter.js:42 #: frappe/email/doctype/notification/notification.js:190 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json @@ -19502,7 +19696,7 @@ msgstr "预览模式" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" -msgstr "生成名称预览" +msgstr "自动生成的单据编号预览" #: frappe/public/js/frappe/views/render_preview.js:19 msgid "Preview on {0}" @@ -19512,7 +19706,7 @@ msgstr "在{0}上预览" msgid "Preview type" msgstr "预览类型" -#: frappe/email/doctype/email_group/email_group.js:90 +#: frappe/email/doctype/email_group/email_group.js:81 msgid "Preview:" msgstr "预览:" @@ -19522,7 +19716,7 @@ msgstr "预览:" #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" -msgstr "上一条" +msgstr "上一个" #: frappe/public/js/frappe/ui/slides.js:351 msgctxt "Go to previous slide" @@ -19532,7 +19726,7 @@ msgstr "上一条" #. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Previous Hash" -msgstr "前哈希值" +msgstr "先前的哈希" #: frappe/public/js/frappe/form/form.js:2214 msgid "Previous Submission" @@ -19541,20 +19735,20 @@ msgstr "前次提交" #. Option for the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Primary" -msgstr "主要" +msgstr "首选" #: frappe/public/js/frappe/form/templates/address_list.html:27 msgid "Primary Address" -msgstr "主要地址" +msgstr "首选地址" #. Label of the primary_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Primary Color" -msgstr "主色调" +msgstr "原色" #: frappe/public/js/frappe/form/templates/contact_list.html:23 msgid "Primary Contact" -msgstr "主要联系人" +msgstr "首选联系人" #: frappe/public/js/frappe/form/templates/contact_list.html:69 msgid "Primary Email" @@ -19583,23 +19777,23 @@ msgstr "文档类型{0}的主键存在值,不可修改" #: frappe/printing/page/print/print.js:65 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 -#: frappe/public/js/frappe/form/toolbar.js:357 -#: frappe/public/js/frappe/form/toolbar.js:369 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1730 +#: frappe/public/js/frappe/views/reports/query_report.js:1780 #: frappe/public/js/frappe/views/reports/report_view.js:1537 #: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 msgid "Print" msgstr "打印" -#: frappe/public/js/frappe/list/list_view.js:2019 +#: frappe/public/js/frappe/list/list_view.js:2017 msgctxt "Button in list view actions menu" msgid "Print" msgstr "打印" #: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" -msgstr "打印文档" +msgstr "打印单据" #. Label of the print_format (Link) field in DocType 'Auto Repeat' #. Label of a Link in the Build Workspace @@ -19625,12 +19819,12 @@ msgstr "打印格式" #: frappe/printing/page/print_format_builder/print_format_builder.js:67 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 msgid "Print Format Builder" -msgstr "打印格式构建器" +msgstr "打印格式生成器" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Print Format Builder (New)" -msgstr "打印格式构建器(新)" +msgstr "打印设计器(新)" #. Label of the print_format_builder_beta (Check) field in DocType 'Print #. Format' @@ -19647,6 +19841,11 @@ msgstr "打印格式错误" msgid "Print Format Field Template" msgstr "打印格式字段模板" +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Help" @@ -19657,6 +19856,10 @@ msgstr "打印格式帮助" msgid "Print Format Type" msgstr "打印格式类型" +#: frappe/public/js/frappe/views/reports/query_report.js:1577 +msgid "Print Format not found" +msgstr "" + #: frappe/www/printview.py:451 msgid "Print Format {0} is disabled" msgstr "打印格式{0}已禁用" @@ -19676,7 +19879,7 @@ msgstr "打印标题" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide" -msgstr "打印隐藏" +msgstr "不打印" #. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' #. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' @@ -19686,15 +19889,15 @@ msgstr "打印隐藏" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Hide If No Value" -msgstr "无值时打印隐藏" +msgstr "无值不打印" -#: frappe/public/js/frappe/views/communication.js:165 +#: frappe/public/js/frappe/views/communication.js:168 msgid "Print Language" msgstr "打印语言" -#: frappe/public/js/frappe/form/print_utils.js:197 +#: frappe/public/js/frappe/form/print_utils.js:210 msgid "Print Sent to the printer!" -msgstr "打印已发送至打印机!" +msgstr "已发送到打印机!" #. Label of the server_printer (Section Break) field in DocType 'Print #. Settings' @@ -19710,7 +19913,7 @@ msgstr "打印服务器" #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 #: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:71 +#: frappe/public/js/frappe/form/print_utils.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "打印设置" @@ -19747,16 +19950,16 @@ msgstr "打印宽度" #. Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Print Width of the field, if the field is a column in a table" -msgstr "字段的打印宽度(当字段为表格列时)" +msgstr "表中的列(字段)打印宽度" #: frappe/public/js/frappe/form/form.js:170 msgid "Print document" -msgstr "打印文档" +msgstr "打印单据" #. Label of the with_letterhead (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Print with letterhead" -msgstr "带信头打印" +msgstr "打印表头" #: frappe/printing/page/print/print.js:830 msgid "Printer" @@ -19783,7 +19986,7 @@ msgstr "未设置打印机映射" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Printing" -msgstr "正在打印" +msgstr "打印" #: frappe/utils/print_format.py:291 msgid "Printing failed" @@ -19812,7 +20015,7 @@ msgstr "优先级" #: frappe/desk/doctype/note/note_list.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" -msgstr "私有" +msgstr "当前帐号可见" #. Label of the private_files_size (Float) field in DocType 'System Health #. Report' @@ -19820,27 +20023,31 @@ msgstr "私有" msgid "Private Files (MB)" msgstr "私有文件(MB)" +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + #. Description of the 'Auto Reply Message' (Text Editor) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" -msgstr "专业建议:添加Reference: {{ reference_doctype }} {{ reference_name }}发送文档引用" +msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}发送单据引用" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" msgstr "继续" -#: frappe/public/js/frappe/views/reports/query_report.js:930 +#: frappe/public/js/frappe/views/reports/query_report.js:931 msgid "Proceed Anyway" msgstr "仍然继续" #: frappe/public/js/frappe/form/controls/table.js:104 msgid "Processing" -msgstr "处理中" +msgstr "处理" #: frappe/email/doctype/email_queue/email_queue_list.js:52 msgid "Processing..." -msgstr "处理中..." +msgstr "处理..." #: frappe/desk/page/setup_wizard/install_fixtures.py:51 msgid "Prof" @@ -19849,13 +20056,13 @@ msgstr "教授" #. Group in User's connections #: frappe/core/doctype/user/user.json msgid "Profile" -msgstr "个人资料" +msgstr "个人信息" #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" -msgstr "进度" +msgstr "进展" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:407 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 msgid "Project" msgstr "项目" @@ -19874,17 +20081,17 @@ msgstr "属性" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Property Depends On" -msgstr "属性依赖项" +msgstr "动态必填与只读属性" #. Name of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter" -msgstr "属性设置器" +msgstr "属性设置" #. Description of a DocType #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property Setter overrides a standard DocType or Field property" -msgstr "属性设置器覆盖标准文档类型或字段属性" +msgstr "物业二传手覆盖标准的DocType或实地房产" #. Label of the property_type (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json @@ -19897,7 +20104,7 @@ msgstr "属性类型" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Protect Attached Files" -msgstr "受保护附件" +msgstr "保护上传的附件(文件)" #: frappe/core/doctype/file/file.py:501 msgid "Protected File" @@ -19907,14 +20114,14 @@ msgstr "受保护文件" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" -msgstr "提供允许上传的文件扩展名列表。每行应包含一个允许的文件类型。未设置时允许所有扩展名。示例:
CSV
JPG
PNG" +msgstr "提供允许上传文件类型的列表。每行填写一种文件扩展名。如果留空,则不限制上传文件类型。例如:
CSV
JPG
PNG" #. Label of the provider (Data) field in DocType 'User Social Login' #. Label of the provider (Select) field in DocType 'Geolocation Settings' #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "Provider" -msgstr "服务提供商" +msgstr "提供商" #. Label of the provider_name (Data) field in DocType 'Connected App' #. Label of the provider_name (Data) field in DocType 'Social Login Key' @@ -19923,7 +20130,7 @@ msgstr "服务提供商" #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Provider Name" -msgstr "提供商名称" +msgstr "提供者名称" #. Option for the 'Event Type' (Select) field in DocType 'Event' #. Label of the public (Check) field in DocType 'Note' @@ -19942,6 +20149,10 @@ msgstr "公开" msgid "Public Files (MB)" msgstr "公开文件(MB)" +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json #: frappe/public/js/frappe/form/footer/form_timeline.js:632 @@ -19950,14 +20161,7 @@ msgstr "公开文件(MB)" msgid "Publish" msgstr "发布" -#. Label of the publish_as_a_web_page_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Publish as a web page" -msgstr "发布为网页" - #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Newsletter' #. Label of the published (Check) field in DocType 'Blog Category' #. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' @@ -19965,7 +20169,6 @@ msgstr "发布为网页" #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json @@ -19977,7 +20180,7 @@ msgstr "发布为网页" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" -msgstr "已发布" +msgstr "已发" #. Label of the published_on (Date) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json @@ -20039,7 +20242,7 @@ msgstr "采购主数据管理员" #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Purchase User" -msgstr "采购用户" +msgstr "采购员" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' @@ -20087,9 +20290,9 @@ msgstr "二维码" #: frappe/www/qrcode.html:6 msgid "QR Code for Login Verification" -msgstr "登录验证二维码" +msgstr "用于登录验证的QR码" -#: frappe/public/js/frappe/form/print_utils.js:206 +#: frappe/public/js/frappe/form/print_utils.js:219 msgid "QZ Tray Failed: " msgstr "QZ托盘失败: " @@ -20103,7 +20306,7 @@ msgstr "QZ托盘失败: " #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/public/js/frappe/utils/common.js:401 msgid "Quarterly" -msgstr "季度" +msgstr "每季" #. Label of the query (Data) field in DocType 'Recorder Query' #. Label of the query (Code) field in DocType 'Report' @@ -20115,7 +20318,7 @@ msgstr "查询" #. Label of the section_break_6 (Section Break) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Query / Script" -msgstr "查询/脚本" +msgstr "SQL查询 / Python脚本" #. Label of the query_options (Small Text) field in DocType 'Contact Us #. Settings' @@ -20170,11 +20373,11 @@ msgstr "队列类型" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" -msgstr "后台队列处理(测试版)" +msgstr "启用后台提交(试验功能)" #: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" -msgstr "队列应为{0}之一" +msgstr "队列应该是{0}" #. Label of the queue (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -20186,10 +20389,9 @@ msgstr "队列" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/submission_queue/submission_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:208 #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Queued" -msgstr "已排队" +msgstr "排队" #. Label of the queued_at (Datetime) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json @@ -20199,7 +20401,7 @@ msgstr "排队时间" #. Label of the queued_by (Data) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" -msgstr "排队人" +msgstr "队列创建者" #: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." @@ -20207,21 +20409,13 @@ msgstr "已加入提交队列,可通过{0}跟踪进度" #: frappe/desk/page/backups/backups.py:96 msgid "Queued for backup. You will receive an email with the download link" -msgstr "已加入备份队列,下载链接将通过邮件发送" - -#: frappe/email/doctype/newsletter/newsletter.js:95 -msgid "Queued {0} emails" -msgstr "已排队{0}封邮件" +msgstr "排队备份。您将收到一封包含下载链接的电子邮件" #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" msgstr "队列列表" -#: frappe/email/doctype/newsletter/newsletter.js:90 -msgid "Queuing emails..." -msgstr "正在加入邮件队列..." - #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" msgstr "正在将{0}加入提交队列" @@ -20235,19 +20429,19 @@ msgstr "快速录入" #: frappe/core/page/permission_manager/permission_manager_help.html:3 msgid "Quick Help for Setting Permissions" -msgstr "权限设置快速指南" +msgstr "权限设置的快速帮助" #. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick #. List' #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" -msgstr "快速列表过滤" +msgstr "筛选条件" #. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' #. Label of the quick_lists (Table) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Quick Lists" -msgstr "快速列表" +msgstr "快速访问列表" #: frappe/public/js/frappe/views/reports/report_utils.js:304 msgid "Quoting must be between 0 and 3" @@ -20262,12 +20456,12 @@ msgstr "原始信息日志" #. Name of a DocType #: frappe/core/doctype/rq_job/rq_job.json msgid "RQ Job" -msgstr "RQ作业" +msgstr "RQ后台任务" #. Name of a DocType #: frappe/core/doctype/rq_worker/rq_worker.json msgid "RQ Worker" -msgstr "RQ工作进程" +msgstr "RQ后台进程" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' @@ -20284,7 +20478,7 @@ msgstr "范围" #. Script' #: frappe/core/doctype/server_script/server_script.json msgid "Rate Limiting" -msgstr "速率限制" +msgstr "调用次数限制" #. Label of the section_break_12 (Section Break) field in DocType 'Blog #. Settings' @@ -20296,7 +20490,7 @@ msgstr "速率限制" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rate limit for email link login" -msgstr "邮件链接登录速率限制" +msgstr "通过邮件链接登录次数限制" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -20311,14 +20505,14 @@ msgstr "评分" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "Raw Commands" -msgstr "原始命令" +msgstr "原生命令" #. Label of the raw (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Raw Email" -msgstr "原始邮件" +msgstr "原始电子邮件" #. Label of the raw_printing (Check) field in DocType 'Print Format' #. Label of the raw_printing_section (Section Break) field in DocType 'Print @@ -20326,7 +20520,7 @@ msgstr "原始邮件" #: frappe/printing/doctype/print_format/print_format.json #: frappe/printing/doctype/print_settings/print_settings.json msgid "Raw Printing" -msgstr "原始打印" +msgstr "原生打印" #: frappe/printing/page/print/print.js:165 msgid "Raw Printing Setting" @@ -20342,11 +20536,11 @@ msgstr "在控制台重新运行" #: frappe/email/doctype/email_account/email_account.py:726 msgid "Re:" -msgstr "回复:" +msgstr "回覆:" #: frappe/core/doctype/communication/communication.js:268 #: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:364 +#: frappe/public/js/frappe/views/communication.js:367 msgid "Re: {0}" msgstr "回复:{0}" @@ -20365,7 +20559,7 @@ msgstr "回复:{0}" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" -msgstr "读取" +msgstr "读" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the read_only (Check) field in DocType 'DocField' @@ -20390,12 +20584,12 @@ msgstr "只读" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Read Only Depends On" -msgstr "只读依赖项" +msgstr "是否只读先决条件" #. Label of the read_only_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" -msgstr "只读依赖项(JS)" +msgstr "只读先决条件(JS)" #: frappe/public/js/frappe/ui/toolbar/navbar.html:16 #: frappe/templates/includes/navbar/navbar_items.html:97 @@ -20405,24 +20599,24 @@ msgstr "只读模式" #. Label of the read_time (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "Read Time" -msgstr "读取时间" +msgstr "阅读时间" #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" -msgstr "收件人已读" +msgstr "由收件人阅读" #. Label of the read_by_recipient_on (Datetime) field in DocType #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient On" -msgstr "收件人阅读时间" +msgstr "由收件人阅读" #: frappe/desk/doctype/note/note.js:10 msgid "Read mode" msgstr "阅读模式" -#: frappe/utils/safe_exec.py:95 +#: frappe/utils/safe_exec.py:98 msgid "Read the documentation to know more" msgstr "查阅文档以了解更多" @@ -20442,13 +20636,13 @@ msgstr "实时通信(SocketIO)" msgid "Reason" msgstr "原因" -#: frappe/public/js/frappe/views/reports/query_report.js:884 +#: frappe/public/js/frappe/views/reports/query_report.js:885 msgid "Rebuild" -msgstr "重建" +msgstr "重新生成" #: frappe/public/js/frappe/views/treeview.js:509 msgid "Rebuild Tree" -msgstr "重建树结构" +msgstr "重新生成树形结构" #: frappe/utils/nestedset.py:177 msgid "Rebuilding of tree is not supported for {}" @@ -20457,7 +20651,7 @@ msgstr "不支持对{}进行树结构重建" #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Received" -msgstr "已接收" +msgstr "已收货" #: frappe/integrations/doctype/token_cache/token_cache.py:49 msgid "Received an invalid token type." @@ -20467,13 +20661,13 @@ msgstr "收到无效令牌类型" #. 'Notification Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Document Field" -msgstr "通过文档字段指定接收人" +msgstr "收件人(单据字段)" #. Label of the receiver_by_role (Link) field in DocType 'Notification #. Recipient' #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "Receiver By Role" -msgstr "通过角色指定接收人" +msgstr "收件人(用户角色)" #. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json @@ -20482,11 +20676,11 @@ msgstr "接收人参数" #: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." -msgstr "近年份容易被猜中" +msgstr "近年来,很容易被猜到。" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 msgid "Recents" -msgstr "最近记录" +msgstr "最近" #. Label of the recipients (Table) field in DocType 'Email Queue' #. Label of the recipient (Data) field in DocType 'Email Queue Recipient' @@ -20498,7 +20692,7 @@ msgstr "收件人" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" -msgstr "收件人已退订" +msgstr "收件人取消订阅" #. Label of the recipients (Small Text) field in DocType 'Auto Repeat' #. Label of the column_break_5 (Section Break) field in DocType 'Notification' @@ -20506,17 +20700,17 @@ msgstr "收件人已退订" #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/email/doctype/notification/notification.json msgid "Recipients" -msgstr "收件人列表" +msgstr "收件人" #. Name of a DocType #: frappe/core/doctype/recorder/recorder.json msgid "Recorder" -msgstr "记录器" +msgstr "程序运行记录" #. Name of a DocType #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Recorder Query" -msgstr "记录器查询" +msgstr "执行记录器查询" #. Name of a DocType #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json @@ -20525,7 +20719,7 @@ msgstr "记录器建议索引" #: frappe/core/doctype/user_permission/user_permission_help.html:2 msgid "Records for following doctypes will be filtered" -msgstr "以下文档类型的记录将被过滤" +msgstr "以下单据类型的记录将被过滤" #: frappe/core/doctype/doctype/doctype.py:1608 msgid "Recursive Fetch From" @@ -20553,54 +20747,54 @@ msgstr "重定向URI" #. DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Redirect URI Bound To Auth Code" -msgstr "绑定至授权码的重定向URI" +msgstr "重定向URI势必授权码" #. Label of the redirect_uris (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Redirect URIs" -msgstr "重定向URI列表" +msgstr "重定向的URI" #. Label of the redirect_url (Small Text) field in DocType 'User' #. Label of the redirect_url (Data) field in DocType 'Social Login Key' #: frappe/core/doctype/user/user.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Redirect URL" -msgstr "重定向URL" +msgstr "URL重定向" #. Description of the 'Default App' (Select) field in DocType 'System Settings' #. Description of the 'Default App' (Select) field in DocType 'User' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json msgid "Redirect to the selected app after login" -msgstr "登录后跳转至选定应用" +msgstr "登录后自动跳转到默认应用" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." -msgstr "确认成功后跳转至此URL" +msgstr "确认成功后跳转到此网址" #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" -msgstr "重定向规则" +msgstr "重定向" #: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" -msgstr "Redis缓存服务器未运行,请联系管理员/技术支持" +msgstr "Redis缓存服务器无法运行。请联系管理员/技术支持" -#: frappe/public/js/frappe/form/toolbar.js:527 +#: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" -msgstr "重做" +msgstr "恢复" #: frappe/public/js/frappe/form/form.js:164 -#: frappe/public/js/frappe/form/toolbar.js:535 +#: frappe/public/js/frappe/form/toolbar.js:538 msgid "Redo last action" msgstr "重做上一步操作" #. Label of the ref_doctype (Link) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "关联文档类型" +msgstr "源单据类型" #: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." @@ -20641,18 +20835,18 @@ msgstr "参考日期时间" #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" -msgstr "关联文档名称" +msgstr "源单据" #. Label of the reference_doctype (Link) field in DocType 'Error Log' #. Label of the ref_doctype (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "关联文档类型" +msgstr "源单据类型" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" -msgstr "必须填写关联文档类型和名称" +msgstr "请输入源单据类型和源单据" #. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' #. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion @@ -20670,7 +20864,7 @@ msgstr "关联文档名称" #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json msgid "Reference Doctype" -msgstr "关联文档类型" +msgstr "源单据类型" #. Label of the reference_document (Dynamic Link) field in DocType 'Auto #. Repeat' @@ -20686,7 +20880,7 @@ msgstr "关联文档类型" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Reference Document" -msgstr "关联文档" +msgstr "源单据" #. Label of the reference_docname (Dynamic Link) field in DocType 'Document #. Share Key' @@ -20695,7 +20889,7 @@ msgstr "关联文档" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Reference Document Name" -msgstr "关联文档名称" +msgstr "源单据" #. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' #. Label of the reference_doctype (Link) field in DocType 'Activity Log' @@ -20738,7 +20932,7 @@ msgstr "关联文档名称" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Document Type" -msgstr "关联文档类型" +msgstr "源单据类型" #. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' #. Label of the reference_name (Dynamic Link) field in DocType 'Comment' @@ -20764,7 +20958,7 @@ msgstr "关联文档类型" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Reference Name" -msgstr "关联名称" +msgstr "源单据" #. Label of the reference_owner (Read Only) field in DocType 'Activity Log' #. Label of the reference_owner (Data) field in DocType 'Comment' @@ -20773,7 +20967,7 @@ msgstr "关联名称" #: frappe/core/doctype/comment/comment.json #: frappe/core/doctype/communication/communication.json msgid "Reference Owner" -msgstr "关联所有者" +msgstr "源单据制单人" #. Label of the reference_report (Data) field in DocType 'Report' #. Label of the reference_report (Link) field in DocType 'Onboarding Step' @@ -20782,19 +20976,19 @@ msgstr "关联所有者" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Reference Report" -msgstr "关联报表" +msgstr "参考报表" #. Label of the reference_type (Link) field in DocType 'Permission Log' #. Label of the reference_type (Link) field in DocType 'ToDo' #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/todo/todo.json msgid "Reference Type" -msgstr "关联类型" +msgstr "源单据类型" #. Label of the reference_name (Dynamic Link) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json msgid "Reference name" -msgstr "关联名称" +msgstr "源单据" #: frappe/templates/emails/auto_reply.html:3 msgid "Reference: {0} {1}" @@ -20807,11 +21001,11 @@ msgid "Referrer" msgstr "来源页" #: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:558 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1719 +#: frappe/public/js/frappe/views/reports/query_report.js:1769 #: frappe/public/js/frappe/views/treeview.js:496 #: frappe/public/js/frappe/widgets/chart_widget.js:291 #: frappe/public/js/frappe/widgets/number_card_widget.js:340 @@ -20850,16 +21044,16 @@ msgstr "正在刷新" msgid "Refreshing..." msgstr "正在刷新..." -#: frappe/core/doctype/user/user.py:1025 +#: frappe/core/doctype/user/user.py:1029 msgid "Registered but disabled" -msgstr "已注册但已禁用" +msgstr "已注册但被禁用" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/translation/translation.json msgid "Rejected" -msgstr "已拒绝" +msgstr "拒绝" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 msgid "Relay Server URL missing" @@ -20885,27 +21079,27 @@ msgstr "版本说明" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 msgid "Relink" -msgstr "重新关联" +msgstr "重新链接" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "重新关联通讯记录" +msgstr "重新链接沟通" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Relinked" -msgstr "已重新关联" +msgstr "重新链接" #. Label of a standard navbar item #. Type: Action #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py -#: frappe/public/js/frappe/form/toolbar.js:444 +#: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" -msgstr "重新加载" +msgstr "刷新" #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Reload File" -msgstr "重新加载文件" +msgstr "重新加载数据" #: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" @@ -20922,7 +21116,7 @@ msgstr "重新加载报表" #: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Remember Last Selected Value" -msgstr "记住上次选中值" +msgstr "保存最后一次输入值" #. Label of the remind_at (Datetime) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json @@ -20930,13 +21124,13 @@ msgstr "记住上次选中值" msgid "Remind At" msgstr "提醒时间" -#: frappe/public/js/frappe/form/toolbar.js:476 +#: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" msgstr "提醒我" #: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" -msgstr "在之后提醒" +msgstr "提醒频率" #. Name of a DocType #: frappe/automation/doctype/reminder/reminder.json @@ -20949,7 +21143,7 @@ msgstr "无法创建过去的提醒" #: frappe/public/js/frappe/form/reminders.js:96 msgid "Reminder set at {0}" -msgstr "提醒设置于{0}" +msgstr "已设置在 {0} 时提醒" #: frappe/public/js/frappe/form/templates/form_sidebar.html:14 #: frappe/public/js/frappe/ui/filters/edit_filter.html:4 @@ -20959,37 +21153,37 @@ msgstr "移除" #: frappe/core/doctype/rq_job/rq_job_list.js:8 msgid "Remove Failed Jobs" -msgstr "移除失败作业" +msgstr "删除运行出错的任务" #: frappe/printing/page/print_format_builder/print_format_builder.js:493 msgid "Remove Field" -msgstr "移除字段" +msgstr "删除字段" #: frappe/printing/page/print_format_builder/print_format_builder.js:427 msgid "Remove Section" -msgstr "移除章节" +msgstr "删除分区" #: frappe/custom/doctype/customize_form/customize_form.js:138 msgid "Remove all customizations?" -msgstr "移除所有自定义?" +msgstr "删除所有定制?" #: frappe/public/js/form_builder/components/Section.vue:286 msgid "Remove all fields in the column" -msgstr "移除本列所有字段" +msgstr "删除本栏全部字段" #: frappe/public/js/form_builder/components/Section.vue:278 #: frappe/public/js/frappe/utils/datatable.js:9 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 msgid "Remove column" -msgstr "移除列" +msgstr "移除栏" #: frappe/public/js/form_builder/components/Field.vue:260 msgid "Remove field" -msgstr "移除字段" +msgstr "删除字段" #: frappe/public/js/form_builder/components/Section.vue:279 msgid "Remove last column" -msgstr "移除最后一列" +msgstr "删除最后一栏" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 msgid "Remove page break" @@ -20998,7 +21192,7 @@ msgstr "移除分页符" #: frappe/public/js/form_builder/components/Section.vue:266 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 msgid "Remove section" -msgstr "移除章节" +msgstr "删除段" #: frappe/public/js/form_builder/components/Tabs.vue:140 msgid "Remove tab" @@ -21012,24 +21206,24 @@ msgstr "已移除" #: frappe/custom/doctype/custom_field/custom_field.js:137 #: frappe/public/js/frappe/form/toolbar.js:254 #: frappe/public/js/frappe/form/toolbar.js:258 -#: frappe/public/js/frappe/form/toolbar.js:432 +#: frappe/public/js/frappe/form/toolbar.js:435 #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" -msgstr "重命名" +msgstr "修改单据编号(名称)" #: frappe/custom/doctype/custom_field/custom_field.js:116 #: frappe/custom/doctype/custom_field/custom_field.js:136 msgid "Rename Fieldname" -msgstr "重命名字段名" +msgstr "修改字段名" #: frappe/public/js/frappe/model/model.js:710 msgid "Rename {0}" -msgstr "重命名{0}" +msgstr "修改{0}的单据编号" #: frappe/core/doctype/doctype/doctype.py:698 msgid "Renamed files and replaced code in controllers, please check!" -msgstr "已重命名文件并替换控制器代码,请检查!" +msgstr "已变更文件名并替换了控制器类中的代码,请检查!" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 msgid "Render labels to the left and values to the right in this section" @@ -21040,34 +21234,34 @@ msgstr "本部分标签左对齐,值右对齐" msgid "Reopen" msgstr "重新打开" -#: frappe/public/js/frappe/form/toolbar.js:544 +#: frappe/public/js/frappe/form/toolbar.js:547 msgid "Repeat" msgstr "重复" #. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Repeat Header and Footer" -msgstr "重复页眉页脚" +msgstr "非首页也显示页首页尾" #. Label of the repeat_on (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat On" -msgstr "重复于" +msgstr "重复" #. Label of the repeat_till (Date) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Repeat Till" -msgstr "重复截止" +msgstr "重复截止日期" #. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Day" -msgstr "按日重复" +msgstr "自动重复日" #. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" -msgstr "按指定日重复" +msgstr "自动重复日" #. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -21085,7 +21279,7 @@ msgstr "像“AAA”重复很容易被猜到" #: frappe/utils/password_strength.py:105 msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" -msgstr "重复像“ABCABCABC”只比“ABC”较难猜测一点" +msgstr "重复像“ABCABCABC”只稍硬比“ABC”猜测" #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 msgid "Repeats {0}" @@ -21120,7 +21314,7 @@ msgstr "回复" #: frappe/core/doctype/communication/communication.js:62 msgid "Reply All" -msgstr "回复全部" +msgstr "全部回复" #. Label of the report (Check) field in DocType 'Custom DocPerm' #. Label of the report (Link) field in DocType 'Custom Role' @@ -21140,6 +21334,8 @@ msgstr "回复全部" #. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' #. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/custom_role/custom_role.json #: frappe/core/doctype/docperm/docperm.json @@ -21155,8 +21351,11 @@ msgstr "回复全部" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/frappe/form/print_utils.js:25 #: frappe/public/js/frappe/request.js:615 -#: frappe/public/js/frappe/utils/utils.js:920 +#: frappe/public/js/frappe/utils/utils.js:923 msgid "Report" msgstr "报表" @@ -21166,7 +21365,7 @@ msgstr "报表" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "报表构建器" +msgstr "报表生成器" #. Name of a DocType #: frappe/core/doctype/report_column/report_column.json @@ -21191,7 +21390,7 @@ msgstr "报表过滤器" #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Filters" -msgstr "报表过滤器" +msgstr "报表过滤条件" #. Label of the report_hide (Check) field in DocType 'DocField' #. Label of the report_hide (Check) field in DocType 'Custom Field' @@ -21200,7 +21399,7 @@ msgstr "报表过滤器" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Report Hide" -msgstr "隐藏报表" +msgstr "报表隐藏" #. Label of the report_information_section (Section Break) field in DocType #. 'Access Log' @@ -21212,7 +21411,7 @@ msgstr "报表信息" #: frappe/core/doctype/report/report.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" -msgstr "报表管理员" +msgstr "报表管理" #. Label of the report_name (Data) field in DocType 'Access Log' #. Label of the report_name (Data) field in DocType 'Prepared Report' @@ -21225,7 +21424,7 @@ msgstr "报表管理员" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1904 +#: frappe/public/js/frappe/views/reports/query_report.js:1954 msgid "Report Name" msgstr "报表名称" @@ -21265,7 +21464,7 @@ msgstr "报告缺陷" #: frappe/core/doctype/doctype/doctype.py:1809 msgid "Report cannot be set for Single types" -msgstr "单一类型文档无法设置报表" +msgstr "报表不能单类型设置" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 #: frappe/desk/doctype/number_card/number_card.js:191 @@ -21277,11 +21476,11 @@ msgstr "报表无数据,请调整过滤器或更换报表名称" msgid "Report has no numeric fields, please change the Report Name" msgstr "报表无数字字段,请更换报表名称" -#: frappe/public/js/frappe/views/reports/query_report.js:1011 +#: frappe/public/js/frappe/views/reports/query_report.js:1012 msgid "Report initiated, click to view status" -msgstr "报表已初始化,点击查看状态" +msgstr "生成报表结果的后台任务已启动,点击查看任务状态" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 msgid "Report limit reached" msgstr "达到报表限制" @@ -21289,15 +21488,15 @@ msgstr "达到报表限制" msgid "Report timed out." msgstr "报表超时" -#: frappe/desk/query_report.py:597 +#: frappe/desk/query_report.py:610 msgid "Report updated successfully" -msgstr "报表更新成功" +msgstr "报表已成功更新" #: frappe/public/js/frappe/views/reports/report_view.js:1357 msgid "Report was not saved (there were errors)" -msgstr "报表未保存(存在错误)" +msgstr "报表尚未保存(有错误)" -#: frappe/public/js/frappe/views/reports/query_report.js:1942 +#: frappe/public/js/frappe/views/reports/query_report.js:1992 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "超过10列的报表更适合横向模式" @@ -21310,9 +21509,9 @@ msgstr "报表{0}" msgid "Report {0} deleted" msgstr "报表{0}已删除" -#: frappe/desk/query_report.py:53 +#: frappe/desk/query_report.py:54 msgid "Report {0} is disabled" -msgstr "报表{0}已禁用" +msgstr "报表{0}无效" #: frappe/desk/reportview.py:341 msgid "Report {0} saved" @@ -21333,23 +21532,23 @@ msgstr "报表" msgid "Reports & Masters" msgstr "报表与主数据" -#: frappe/public/js/frappe/views/reports/query_report.js:927 +#: frappe/public/js/frappe/views/reports/query_report.js:928 msgid "Reports already in Queue" msgstr "报表已加入队列" #. Description of a DocType #: frappe/core/doctype/user/user.json msgid "Represents a User in the system." -msgstr "表示系统中的用户" +msgstr "表示系统中一个用户。" #. Description of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Represents the states allowed in one document and role assigned to change the state." -msgstr "表示文档允许的状态及可变更状态的对应角色" +msgstr "代表一个单据和角色分派给改变国家允许的状态。" #: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" -msgstr "请求体" +msgstr "请求内容" #. Label of the data (Code) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json @@ -21377,7 +21576,7 @@ msgstr "请求ID" #. Label of the rate_limit_count (Int) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Request Limit" -msgstr "请求限制" +msgstr "可调用次数(多少秒内)" #. Label of the request_method (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -21387,7 +21586,7 @@ msgstr "请求方法" #. Label of the request_structure (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Request Structure" -msgstr "请求结构" +msgstr "请求数据格式" #: frappe/public/js/frappe/request.js:231 msgid "Request Timed Out" @@ -21397,7 +21596,7 @@ msgstr "请求超时" #: frappe/integrations/doctype/webhook/webhook.json #: frappe/public/js/frappe/request.js:244 msgid "Request Timeout" -msgstr "请求超时时间" +msgstr "请求超时" #. Label of the request_url (Small Text) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -21407,7 +21606,7 @@ msgstr "请求URL" #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" -msgstr "请求数量" +msgstr "请求号码" #. Label of the require_trusted_certificate (Select) field in DocType 'LDAP #. Settings' @@ -21429,7 +21628,7 @@ msgstr "需要任何有效的 fdn 路径。例如 ou=users,dc=example,dc=com" #: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" -msgstr "回复:{0}" +msgstr "分辨率:{0}" #: frappe/desk/doctype/form_tour/form_tour.js:101 #: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 @@ -21440,12 +21639,12 @@ msgstr "重置" #: frappe/custom/doctype/customize_form/customize_form.js:136 msgid "Reset All Customizations" -msgstr "重置所有自定义" +msgstr "恢复标准设置" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 msgid "Reset Changes" -msgstr "重置变更" +msgstr "放弃修改" #: frappe/public/js/frappe/widgets/chart_widget.js:306 msgid "Reset Chart" @@ -21465,28 +21664,28 @@ msgstr "重置LDAP密码" #: frappe/custom/doctype/customize_form/customize_form.js:128 msgid "Reset Layout" -msgstr "重置布局" +msgstr "重置" #: frappe/core/doctype/user/user.js:230 msgid "Reset OTP Secret" -msgstr "重置OTP密钥" +msgstr "重置一次性密码" #: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" -msgstr "重置密码" +msgstr "重设密码" #. Label of the reset_password_key (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Reset Password Key" -msgstr "密码重置密钥" +msgstr "重设密码钥匙" #. Label of the reset_password_link_expiry_duration (Duration) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" -msgstr "密码重置链接有效期" +msgstr "重置密码间隔" #. Label of the reset_password_template (Link) field in DocType 'System #. Settings' @@ -21496,7 +21695,7 @@ msgstr "密码重置模板" #: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" -msgstr "重置{0}的权限?" +msgstr "重置权限{0} ?" #: frappe/public/js/form_builder/components/Field.vue:114 msgid "Reset To Default" @@ -21508,7 +21707,7 @@ msgstr "重置排序" #: frappe/public/js/frappe/form/grid_row.js:417 msgid "Reset to default" -msgstr "重置为默认" +msgstr "恢复默认设置" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 msgid "Reset to defaults" @@ -21518,6 +21717,31 @@ msgstr "重置为默认值" msgid "Reset your password" msgstr "重置密码" +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + #. Label of the response (Text Editor) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' @@ -21549,16 +21773,16 @@ msgstr "恢复" #: frappe/core/page/permission_manager/permission_manager.js:509 msgid "Restore Original Permissions" -msgstr "恢复原始权限" +msgstr "恢复原权限" #: frappe/website/doctype/portal_settings/portal_settings.js:20 msgid "Restore to default settings?" -msgstr "恢复默认设置?" +msgstr "恢复到默认设置?" #. Label of the restored (Check) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Restored" -msgstr "已恢复" +msgstr "恢复" #: frappe/core/doctype/deleted_document/deleted_document.py:74 msgid "Restoring Deleted Document" @@ -21577,19 +21801,19 @@ msgstr "限制IP" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "限制域名" +msgstr "限制行业" #. Label of the restrict_to_domain (Link) field in DocType 'Workspace' #. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Restrict to Domain" -msgstr "限制域名" +msgstr "限制行业" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" -msgstr "仅允许用户从此IP地址登录。多个IP可用逗号分隔,支持部分IP如(111.111.111)" +msgstr "仅此IP地址限制用户。多个IP地址,可以通过用逗号分隔的补充。也接受像(111.111.111)部分的IP地址" #: frappe/public/js/frappe/list/list_view.js:196 msgctxt "Title of message showing restrictions in list view" @@ -21603,7 +21827,7 @@ msgstr "结果" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Resume Sending" -msgstr "恢复发送" +msgstr "重新发送" #. Label of the retry (Int) field in DocType 'Email Queue' #: frappe/core/doctype/data_import/data_import.js:110 @@ -21614,11 +21838,11 @@ msgstr "重试" #: frappe/email/doctype/email_queue/email_queue_list.js:47 msgid "Retry Sending" -msgstr "重试发送" +msgstr "重新发送" #: frappe/www/qrcode.html:15 msgid "Return to the Verification screen and enter the code displayed by your authentication app" -msgstr "返回验证界面并输入身份验证应用显示的代码" +msgstr "返回验证屏幕,并输入您的身份验证应用程序显示的代码" #. Label of the reverse (Check) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -21641,12 +21865,10 @@ msgstr "撤销" #. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json msgid "Revoked" -msgstr "已撤销" +msgstr "撤销" -#. Option for the 'Content Type' (Select) field in DocType 'Newsletter' #. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -21660,7 +21882,7 @@ msgstr "富文本" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Right" -msgstr "右对齐" +msgstr "右" #: frappe/printing/page/print_format_builder/print_format_builder.js:484 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 @@ -21671,17 +21893,17 @@ msgstr "右对齐" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Bottom" -msgstr "右下" +msgstr "右侧底部" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Right Center" -msgstr "右中" +msgstr "右侧中间" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Robots.txt" -msgstr "Robots.txt文件" +msgstr "机器人自动回复文字" #. Label of the role (Link) field in DocType 'Custom DocPerm' #. Label of the roles (Table) field in DocType 'Custom Role' @@ -21734,7 +21956,7 @@ msgstr "角色名称" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" -msgstr "页面和报告的角色权限" +msgstr "网页和报表角色权限" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' @@ -21747,9 +21969,9 @@ msgstr "角色权限" #: frappe/core/page/permission_manager/permission_manager.js:4 #: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" -msgstr "角色权限管理器" +msgstr "角色权限管理" -#: frappe/public/js/frappe/list/list_view.js:1788 +#: frappe/public/js/frappe/list/list_view.js:1786 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "角色权限管理器" @@ -21763,7 +21985,7 @@ msgstr "角色权限管理器" #: frappe/core/doctype/user_role_profile/user_role_profile.json #: frappe/core/workspace/users/users.json msgid "Role Profile" -msgstr "角色配置文件" +msgstr "岗位" #. Label of the role_profiles (Table MultiSelect) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -21781,9 +22003,9 @@ msgstr "角色复制" #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json msgid "Role and Level" -msgstr "角色与层级" +msgstr "角色和级别" -#: frappe/core/doctype/user/user.py:364 +#: frappe/core/doctype/user/user.py:365 msgid "Role has been set as per the user type {0}" msgstr "已根据用户类型{0}设置角色" @@ -21811,21 +22033,21 @@ msgstr "角色" #. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Roles & Permissions" -msgstr "角色与权限" +msgstr "角色和权限" #. Label of the roles (Table) field in DocType 'Role Profile' #. Label of the roles (Table) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles Assigned" -msgstr "分配的角色" +msgstr "角色分派" #. Label of the roles_html (HTML) field in DocType 'Role Profile' #. Label of the roles_html (HTML) field in DocType 'User' #: frappe/core/doctype/role_profile/role_profile.json #: frappe/core/doctype/user/user.json msgid "Roles HTML" -msgstr "角色HTML" +msgstr "角色的HTML" #. Label of the roles_html (HTML) field in DocType 'Role Permission for Page #. and Report' @@ -21835,21 +22057,21 @@ msgstr "角色HTML" #: frappe/core/page/permission_manager/permission_manager_help.html:7 msgid "Roles can be set for users from their User page." -msgstr "可在用户页面为用户设置角色。" +msgstr "可以在用户主数据页面为用户分派角色。" #: frappe/utils/nestedset.py:280 msgid "Root {0} cannot be deleted" -msgstr "根节点{0}无法删除" +msgstr "根{0}无法删除" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "轮询" +msgstr "依序轮流" #. Label of the rounding_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rounding Method" -msgstr "舍入方法" +msgstr "圆整方式" #. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' @@ -21857,7 +22079,6 @@ msgstr "舍入方法" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Newsletter' #. Label of the route (Data) field in DocType 'Blog Category' #. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' @@ -21871,7 +22092,6 @@ msgstr "舍入方法" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json @@ -21881,30 +22101,30 @@ msgstr "舍入方法" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Route" -msgstr "路由" +msgstr "网址路径" #. Name of a DocType #: frappe/desk/doctype/route_history/route_history.json msgid "Route History" -msgstr "路由历史" +msgstr "网址路径浏览历史" #. Label of the route_redirects (Table) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Route Redirects" -msgstr "路由重定向" +msgstr "网址重定向" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Route: Example \"/app\"" -msgstr "路线:例如“/app”" +msgstr "路径: 例如 \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:777 +#: frappe/model/base_document.py:852 frappe/model/document.py:779 msgid "Row" msgstr "行" #: frappe/core/doctype/version/version_view.html:73 msgid "Row #" -msgstr "行号" +msgstr "行#" #: frappe/core/doctype/doctype/doctype.py:1831 #: frappe/core/doctype/doctype/doctype.py:1841 @@ -21913,7 +22133,7 @@ msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色 #: frappe/model/base_document.py:982 msgid "Row #{0}:" -msgstr "行号{0}:" +msgstr "行#{0}:" #: frappe/core/doctype/doctype/doctype.py:491 msgid "Row #{}: Fieldname is required" @@ -21945,7 +22165,7 @@ msgstr "行号" #: frappe/core/doctype/version/version_view.html:68 msgid "Row Values Changed" -msgstr "行值已变更" +msgstr "明细表变更" #: frappe/core/doctype/data_import/data_import.js:367 msgid "Row {0}" @@ -21953,11 +22173,11 @@ msgstr "第{0}行" #: frappe/custom/doctype/customize_form/customize_form.py:352 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" -msgstr "行{0}:不允许禁用标准字段的必填属性" +msgstr "第{0}行:不允许更改系统标准字段的必填属性" #: frappe/custom/doctype/customize_form/customize_form.py:341 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" -msgstr "行{0}:不允许为标准字段启用提交时允许" +msgstr "行{0}:不允许启用允许对提交的标准字段" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' @@ -21971,7 +22191,7 @@ msgstr "新增行" #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/core/doctype/version/version_view.html:32 msgid "Rows Removed" -msgstr "移除行" +msgstr "已删除行" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -21989,7 +22209,7 @@ msgstr "规则" msgid "Rule Conditions" msgstr "规则条件" -#: frappe/permissions.py:662 +#: frappe/permissions.py:675 msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." msgstr "该文档类型、角色、权限层级和所有者条件的组合规则已存在。" @@ -22001,13 +22221,13 @@ msgstr "规则" #. Description of the 'Transitions' (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Rules defining transition of state in the workflow." -msgstr "定义工作流状态转换的规则。" +msgstr "工作流状态转换规则。" #. Description of the 'Transition Rules' (Section Break) field in DocType #. 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." -msgstr "状态转换规则,如下一状态和允许变更状态的角色等。" +msgstr "定义在满足什么条件的情况下哪个角色的用户可以通过点击业务单据上的工作流菜单按钮将状态转换到下一个状态。" #. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -22017,13 +22237,13 @@ msgstr "优先级数值更高的规则将优先应用。" #. Label of the dormant_days (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Run Jobs only Daily if Inactive For (Days)" -msgstr "若闲置超过(天)则仅每日运行作业" +msgstr "仅在几天未执行后改为每天执行" #. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Run scheduled jobs only if checked" -msgstr "仅勾选时运行计划作业" +msgstr "只有勾选后,才会运行计划任务" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Minutes" @@ -22085,13 +22305,13 @@ msgstr "SQL" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json msgid "SQL Conditions. Example: status=\"Open\"" -msgstr "SQL 条件。例如:status=\"Open\"" +msgstr "SQL条件。例如:status='Open',字符串引号请使用英文半角的单引号" #. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder/recorder.js:85 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" -msgstr "SQL执行计划" +msgstr "SQL解析" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -22106,7 +22326,7 @@ msgstr "SQL查询" #. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "SSL/TLS Mode" -msgstr "SSL/TLS模式" +msgstr "SSL / TLS模式" #: frappe/public/js/frappe/color_picker/color_picker.js:20 msgid "SWATCHES" @@ -22127,13 +22347,13 @@ msgstr "销售主数据管理员" #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Sales User" -msgstr "销售用户" +msgstr "销售员" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Salesforce" -msgstr "Salesforce" +msgstr "销售队伍" #. Label of the salutation (Link) field in DocType 'Contact' #. Name of a DocType @@ -22141,16 +22361,16 @@ msgstr "Salesforce" #: frappe/contacts/doctype/contact/contact.json #: frappe/contacts/doctype/salutation/salutation.json msgid "Salutation" -msgstr "称呼" +msgstr "称谓" #: frappe/integrations/doctype/webhook/webhook.py:109 msgid "Same Field is entered more than once" -msgstr "同一字段被多次输入" +msgstr "相同字段不止一次输入" #. Label of the sample (HTML) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Sample" -msgstr "示例" +msgstr "样本" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -22166,7 +22386,7 @@ msgstr "示例" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Saturday" -msgstr "周六" +msgstr "星期六" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 @@ -22178,12 +22398,12 @@ msgstr "周六" #: frappe/public/js/frappe/list/list_settings.js:36 #: frappe/public/js/frappe/list/list_settings.js:247 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:342 -#: frappe/public/js/frappe/views/reports/query_report.js:1896 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/reports/query_report.js:1946 #: frappe/public/js/frappe/views/reports/report_view.js:1726 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 @@ -22210,13 +22430,13 @@ msgstr "另存为" msgid "Save Customizations" msgstr "保存自定义" -#: frappe/public/js/frappe/views/reports/query_report.js:1899 +#: frappe/public/js/frappe/views/reports/query_report.js:1949 msgid "Save Report" -msgstr "保存报告" +msgstr "保存报表" #: frappe/public/js/frappe/views/kanban/kanban_view.js:97 msgid "Save filters" -msgstr "保存筛选器" +msgstr "保存过滤条件" #. Label of the save_on_complete (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -22229,7 +22449,7 @@ msgstr "保存文档。" #: frappe/model/rename_doc.py:106 #: frappe/printing/page/print_format_builder/print_format_builder.js:858 -#: frappe/public/js/frappe/form/toolbar.js:285 +#: frappe/public/js/frappe/form/toolbar.js:286 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" @@ -22243,7 +22463,7 @@ msgstr "已保存的筛选器" #: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 #: frappe/public/js/frappe/views/workspace/workspace.js:348 msgid "Saving" -msgstr "正在保存" +msgstr "保存" #: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" @@ -22262,7 +22482,7 @@ msgstr "保存将导出此文档及其关联步骤为JSON格式。" #: frappe/public/js/print_format_builder/store.js:36 #: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." -msgstr "保存中..." +msgstr "保存..." #: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" @@ -22270,38 +22490,23 @@ msgstr "扫描二维码" #: frappe/www/qrcode.html:14 msgid "Scan the QR Code and enter the resulting code displayed." -msgstr "扫描二维码并输入显示的验证码。" +msgstr "扫描QR码并输入显示的结果代码。" #. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/email/doctype/newsletter/newsletter.js:125 msgid "Schedule" -msgstr "计划" +msgstr "计划任务" -#: frappe/email/doctype/newsletter/newsletter.js:106 -msgid "Schedule Newsletter" -msgstr "计划发送新闻稿" - -#: frappe/public/js/frappe/views/communication.js:94 +#: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" -msgstr "计划发送时间" - -#: frappe/email/doctype/newsletter/newsletter.js:70 -msgid "Schedule sending" -msgstr "计划发送" - -#. Label of the schedule_sending (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Schedule sending at a later time" -msgstr "稍后计划发送" +msgstr "定时发送" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json -#: frappe/email/doctype/newsletter/newsletter_list.js:7 msgid "Scheduled" -msgstr "已计划" +msgstr "计划内" #. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' #: frappe/core/doctype/scheduler_event/scheduler_event.json @@ -22316,7 +22521,7 @@ msgstr "计划作业" #. Name of a DocType #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json msgid "Scheduled Job Log" -msgstr "计划作业日志" +msgstr "后台任务运行日志" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -22326,23 +22531,12 @@ msgstr "计划作业日志" #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Scheduled Job Type" -msgstr "计划作业类型" +msgstr "已排程后台任务" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Scheduled Jobs Logs" -msgstr "计划作业日志" - -#. Label of the schedule_settings_section (Section Break) field in DocType -#. 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled Sending" -msgstr "计划发送" - -#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Scheduled To Send" -msgstr "计划发送" +msgstr "后台任务日志" #: frappe/core/doctype/server_script/server_script.py:148 msgid "Scheduled execution for script {0} has updated" @@ -22350,7 +22544,7 @@ msgstr "脚本{0}的计划执行已更新" #: frappe/email/doctype/auto_email_report/auto_email_report.js:26 msgid "Scheduled to send" -msgstr "计划发送" +msgstr "计划送" #. Label of the scheduler_section (Section Break) field in DocType 'System #. Health Report' @@ -22365,11 +22559,11 @@ msgstr "调度器" #: frappe/core/doctype/scheduler_event/scheduler_event.json #: frappe/core/doctype/server_script/server_script.json msgid "Scheduler Event" -msgstr "调度事件" +msgstr "后台任务事件" #: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler Inactive" -msgstr "调度器未激活" +msgstr "后台任务未启动" #. Label of the scheduler_status (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -22382,15 +22576,15 @@ msgstr "维护模式激活时无法重新启用调度器。" #: frappe/core/doctype/data_import/data_import.py:106 msgid "Scheduler is inactive. Cannot import data." -msgstr "调度器未激活,无法导入数据。" +msgstr "后台任务未启动,无法导入数据" #: frappe/core/doctype/rq_job/rq_job_list.js:19 msgid "Scheduler: Active" -msgstr "调度器:激活" +msgstr "后台任务:运行中" #: frappe/core/doctype/rq_job/rq_job_list.js:21 msgid "Scheduler: Inactive" -msgstr "调度器:未激活" +msgstr "后台任务:未运行" #. Label of the scope (Data) field in DocType 'OAuth Scope' #: frappe/integrations/doctype/oauth_scope/oauth_scope.json @@ -22412,6 +22606,11 @@ msgstr "范围" msgid "Scopes" msgstr "范围" +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + #. Label of the report_script (Code) field in DocType 'Report' #. Label of the script (Code) field in DocType 'Server Script' #. Label of the script (Code) field in DocType 'Client Script' @@ -22430,12 +22629,12 @@ msgstr "脚本" #. Name of a role #: frappe/core/doctype/server_script/server_script.json msgid "Script Manager" -msgstr "脚本管理器" +msgstr "脚本管理员" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Script Report" -msgstr "脚本报告" +msgstr "脚本报表" #. Label of the script_type (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -22445,14 +22644,14 @@ msgstr "脚本类型" #. Description of a DocType #: frappe/website/doctype/website_script/website_script.json msgid "Script to attach to all web pages." -msgstr "附加到所有网页的脚本。" +msgstr "插入到所有网页的脚本" #. Label of a Card Break in the Build Workspace #. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_page/web_page.json msgid "Scripting" -msgstr "脚本编写" +msgstr "脚本" #. Label of the section_break_6 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -22480,7 +22679,7 @@ msgstr "搜索" #. Label of the search_bar (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Search Bar" -msgstr "搜索栏" +msgstr "搜索框" #. Label of the search_fields (Data) field in DocType 'DocType' #. Label of the search_fields (Data) field in DocType 'Customize Form' @@ -22505,7 +22704,7 @@ msgstr "搜索结果" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 msgid "Search by filename or extension" -msgstr "按文件名或扩展名搜索" +msgstr "按文件名或后缀搜索" #: frappe/core/doctype/doctype/doctype.py:1467 msgid "Search field {0} is not valid" @@ -22517,7 +22716,7 @@ msgstr "搜索字段" #: frappe/public/js/form_builder/components/AddFieldButton.vue:19 msgid "Search fieldtypes..." -msgstr "搜索字段类型..." +msgstr "搜索字段类型" #: frappe/public/js/frappe/ui/toolbar/search.js:50 #: frappe/public/js/frappe/ui/toolbar/search.js:69 @@ -22531,19 +22730,19 @@ msgstr "搜索{0}" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 msgid "Search in a document type" -msgstr "在文档类型中搜索" +msgstr "在单据类型中搜索" #: frappe/public/js/frappe/ui/toolbar/navbar.html:29 msgid "Search or type a command ({0})" -msgstr "搜索或输入命令({0})" +msgstr "搜索或输入命令({0})" #: frappe/public/js/form_builder/components/SearchBox.vue:8 msgid "Search properties..." -msgstr "搜索属性..." +msgstr "搜索属性" #: frappe/templates/includes/search_box.html:8 msgid "Search results for" -msgstr "搜索结果" +msgstr "搜索..." #: frappe/templates/includes/navbar/navbar_search.html:6 #: frappe/templates/includes/search_box.html:2 @@ -22553,13 +22752,18 @@ msgstr "搜索..." #: frappe/public/js/frappe/ui/toolbar/search.js:210 msgid "Searching ..." -msgstr "正在搜索..." +msgstr "搜索中..." + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" #. Option for the 'Type' (Select) field in DocType 'Web Template' #: frappe/public/js/form_builder/components/Section.vue:263 #: frappe/website/doctype/web_template/web_template.json msgid "Section" -msgstr "节" +msgstr "段" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -22572,7 +22776,7 @@ msgstr "节" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Section Break" -msgstr "节分隔符" +msgstr "段" #: frappe/printing/page/print_format_builder/print_format_builder.js:421 msgid "Section Heading" @@ -22591,7 +22795,7 @@ msgstr "节标题" #: frappe/public/js/form_builder/components/Section.vue:217 #: frappe/public/js/form_builder/components/Section.vue:240 msgid "Section must have at least one column" -msgstr "节必须包含至少一列" +msgstr "段至少须包括一栏" #. Label of the sb3 (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -22602,14 +22806,14 @@ msgstr "安全设置" msgid "See all Activity" msgstr "查看所有活动" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:854 msgid "See all past reports." -msgstr "查看所有历史报告。" +msgstr "点这儿可以查看之前的历史报表。" #: frappe/public/js/frappe/form/form.js:1235 #: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 msgid "See on Website" -msgstr "在网站上查看" +msgstr "在门户网站查看" #: frappe/website/doctype/web_form/templates/web_form.html:153 msgctxt "Button in web form" @@ -22618,7 +22822,7 @@ msgstr "查看之前的响应" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" -msgstr "查看位于{0}的文档" +msgstr "请参阅{0}处的单据" #. Label of the seen (Check) field in DocType 'Comment' #. Label of the seen (Check) field in DocType 'Communication' @@ -22630,17 +22834,17 @@ msgstr "查看位于{0}的文档" #: frappe/core/doctype/error_log/error_log_list.js:5 #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Seen" -msgstr "已查看" +msgstr "已阅" #. Label of the seen_by_section (Section Break) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Seen By" -msgstr "查看人" +msgstr "谁查看过" #. Label of the seen_by (Table) field in DocType 'Note' #: frappe/desk/doctype/note/note.json msgid "Seen By Table" -msgstr "查看人表" +msgstr "查看人列表" #. Label of the select (Check) field in DocType 'Custom DocPerm' #. Option for the 'Type' (Select) field in DocType 'DocField' @@ -22662,7 +22866,7 @@ msgstr "查看人表" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" -msgstr "选择" +msgstr "单选" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 @@ -22670,8 +22874,8 @@ msgstr "选择" msgid "Select All" msgstr "全选" -#: frappe/public/js/frappe/views/communication.js:174 -#: frappe/public/js/frappe/views/communication.js:595 +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:598 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" @@ -22687,7 +22891,7 @@ msgid "Select Column" msgstr "选择列" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:45 +#: frappe/public/js/frappe/form/print_utils.js:58 msgid "Select Columns" msgstr "选择列" @@ -22715,36 +22919,36 @@ msgstr "选择日期范围" #: frappe/public/js/frappe/doctype/index.js:171 #: frappe/website/doctype/web_form/web_form.json msgid "Select DocType" -msgstr "选择文档类型" +msgstr "选择单据类型" #. Label of the reference_doctype (Link) field in DocType 'Data Export' #: frappe/core/doctype/data_export/data_export.json msgid "Select Doctype" -msgstr "选择文档类型" +msgstr "选择单据类型" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 #: frappe/workflow/page/workflow_builder/workflow_builder.js:50 msgid "Select Document Type" -msgstr "选择文档类型" +msgstr "选择单据类型" #: frappe/core/page/permission_manager/permission_manager.js:179 msgid "Select Document Type or Role to start." -msgstr "选择文档类型或角色以开始。" +msgstr "请选择单据类型或角色。" #: frappe/core/page/permission_manager/permission_manager_help.html:34 msgid "Select Document Types to set which User Permissions are used to limit access." -msgstr "选择文档类型以设置用于限制访问的用户权限。" +msgstr "选择用户权限限制单据类型。" #: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 #: frappe/public/js/frappe/doctype/index.js:200 -#: frappe/public/js/frappe/form/toolbar.js:835 +#: frappe/public/js/frappe/form/toolbar.js:838 msgid "Select Field" msgstr "选择字段" #: frappe/public/js/frappe/ui/group_by/group_by.html:35 #: frappe/public/js/frappe/ui/group_by/group_by.js:141 msgid "Select Field..." -msgstr "选择字段..." +msgstr "选择字段" #: frappe/public/js/frappe/form/grid_row.js:473 #: frappe/public/js/frappe/list/list_settings.js:236 @@ -22754,7 +22958,7 @@ msgstr "选择字段" #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" -msgstr "选择要插入的字段" +msgstr "选择字段" #: frappe/public/js/frappe/data_import/data_exporter.js:148 msgid "Select Fields To Update" @@ -22762,7 +22966,7 @@ msgstr "选择要更新的字段" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" -msgstr "选择筛选器" +msgstr "选择过滤条件" #: frappe/desk/doctype/event/event.py:103 msgid "Select Google Calendar to which event should be synced." @@ -22774,7 +22978,7 @@ msgstr "选择要同步联系人的Google联系人。" #: frappe/public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "选择分组依据..." +msgstr "选择分组字段" #: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" @@ -22791,7 +22995,7 @@ msgstr "选择列表视图" #: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" -msgstr "选择必填项" +msgstr "选择必填字段" #: frappe/custom/doctype/customize_form/customize_form.js:280 msgid "Select Module" @@ -22808,7 +23012,7 @@ msgid "Select Page" msgstr "选择页面" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 -#: frappe/public/js/frappe/views/communication.js:157 +#: frappe/public/js/frappe/views/communication.js:160 msgid "Select Print Format" msgstr "选择打印格式" @@ -22823,7 +23027,7 @@ msgstr "选择报告" #: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" -msgstr "为{0}选择表格列" +msgstr "选择{0}的列" #: frappe/desk/page/setup_wizard/setup_wizard.js:408 msgid "Select Time Zone" @@ -22833,7 +23037,7 @@ msgstr "选择时区" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Select Transaction" -msgstr "选择事务" +msgstr "选择单据类型" #: frappe/workflow/page/workflow_builder/workflow_builder.js:68 msgid "Select Workflow" @@ -22852,19 +23056,19 @@ msgstr "选择工作空间" #: frappe/website/doctype/website_settings/website_settings.js:23 msgid "Select a Brand Image first." -msgstr "请先选择品牌图片。" +msgstr "首先选择一个品牌形象。" #: frappe/printing/page/print_format_builder/print_format_builder.js:108 msgid "Select a DocType to make a new format" -msgstr "选择文档类型以创建新格式" +msgstr "请选择单据类型 创建新打印格式" #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "选择字段以编辑其属性。" +msgstr "选择字段在此编辑属性" #: frappe/public/js/frappe/views/treeview.js:358 msgid "Select a group node first." -msgstr "请先选择组节点。" +msgstr "请先选择一个组节点。" #: frappe/core/doctype/doctype/doctype.py:1942 msgid "Select a valid Sender Field for creating documents from Email" @@ -22880,44 +23084,44 @@ msgstr "选择图片" #: frappe/www/apps.html:10 msgid "Select an app to continue" -msgstr "选择应用以继续" +msgstr "选择一个应用" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 msgid "Select an existing format to edit or start a new format." -msgstr "选择现有格式进行编辑或新建格式。" +msgstr "选择现有或创建一个新格式。" #. Description of the 'Brand Image' (Attach Image) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Select an image of approx width 150px with a transparent background for best results." -msgstr "选择约150px宽、透明背景的图片以获得最佳效果。" +msgstr "为了最佳效果,请选择一个宽度约150像素,背景透明的图片。" #: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" -msgstr "至少选择1条记录进行打印" +msgstr "选择打印ATLEAST 1项纪录" #: frappe/core/doctype/success_action/success_action.js:18 msgid "Select atleast 2 actions" -msgstr "至少选择2个操作" +msgstr "选择至少2个操作" -#: frappe/public/js/frappe/list/list_view.js:1304 +#: frappe/public/js/frappe/list/list_view.js:1302 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "选择列表项" -#: frappe/public/js/frappe/list/list_view.js:1256 -#: frappe/public/js/frappe/list/list_view.js:1272 +#: frappe/public/js/frappe/list/list_view.js:1254 +#: frappe/public/js/frappe/list/list_view.js:1270 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "选择多个列表项" #: frappe/public/js/frappe/views/calendar/calendar.js:167 msgid "Select or drag across time slots to create a new event." -msgstr "选择或拖动时间槽以创建新事件。" +msgstr "选择或拖动一个时间范围,创建新事件。" #: frappe/public/js/frappe/list/bulk_operations.js:239 msgid "Select records for assignment" -msgstr "选择要分配的记录" +msgstr "选择待分派记录" #: frappe/public/js/frappe/list/bulk_operations.js:260 msgid "Select records for removing assignment" @@ -22926,11 +23130,11 @@ msgstr "选择要移除分配的记录" #. Description of the 'Insert After' (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json msgid "Select the label after which you want to insert new field." -msgstr "选择要插入新字段后的标签。" +msgstr "选择希望在其后插入新字段的标签,。" #: frappe/public/js/frappe/utils/diffview.js:102 msgid "Select two versions to view the diff." -msgstr "选择两个版本来查看差异。" +msgstr "选择两个版本比较差异" #: frappe/public/js/frappe/form/link_selector.js:24 #: frappe/public/js/frappe/form/multi_select_dialog.js:80 @@ -22942,11 +23146,9 @@ msgstr "选择{0}" #: frappe/model/workflow.py:117 msgid "Self approval is not allowed" -msgstr "不允许自我审批" +msgstr "不允许申请者自己批准" -#: frappe/email/doctype/newsletter/newsletter.js:66 -#: frappe/email/doctype/newsletter/newsletter.js:74 -#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41 +#: frappe/www/contact.html:41 msgid "Send" msgstr "发送" @@ -22965,23 +23167,18 @@ msgstr "最早在参考时间的前后该分钟数发送。实际发送可能因 #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Send After" -msgstr "之后发送" +msgstr "发送后" #. Label of the event (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send Alert On" -msgstr "发送警报于" +msgstr "通知发送时机" #. Label of the send_email_alert (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Send Email Alert" msgstr "发送邮件提醒" -#. Label of the schedule_send (Datetime) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Email At" -msgstr "发送邮件于" - #. Label of the send_email (Check) field in DocType 'Workflow Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Send Email On State" @@ -22991,34 +23188,34 @@ msgstr "在状态变更时发送邮件" #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Email Print Attachments as PDF (Recommended)" -msgstr "以PDF格式发送打印附件(推荐)" +msgstr "使用PDF格式发送打印附件(推荐)" #. Label of the send_email_to_creator (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Send Email To Creator" -msgstr "发送邮件给创建者" +msgstr "发邮件给单据创建者" #. Label of the send_me_a_copy (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Me A Copy of Outgoing Emails" -msgstr "发送外发邮件副本给我" +msgstr "外发邮件时抄送给自己" #. Label of the send_notification_to (Small Text) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send Notification to" -msgstr "发送通知给" +msgstr "通知发送到" #. Label of the document_follow_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Documents Followed By Me" -msgstr "发送我关注的文档通知" +msgstr "发送我关注单据变更通知给我" #. Label of the thread_notify (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Notifications For Email Threads" -msgstr "发送邮件线程通知" +msgstr "发送邮件沟通通知给我" #: frappe/email/doctype/auto_email_report/auto_email_report.js:21 msgid "Send Now" @@ -23027,11 +23224,11 @@ msgstr "立即发送" #. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Send Print as PDF" -msgstr "发送打印为PDF" +msgstr "使用PDF格式发送打印" -#: frappe/public/js/frappe/views/communication.js:147 +#: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" -msgstr "发送已读回执" +msgstr "发送阅读回执" #. Label of the send_system_notification (Check) field in DocType #. 'Notification' @@ -23039,42 +23236,20 @@ msgstr "发送已读回执" msgid "Send System Notification" msgstr "发送系统通知" -#: frappe/email/doctype/newsletter/newsletter.js:153 -msgid "Send Test Email" -msgstr "发送测试邮件" - #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "发送给所有负责人" - -#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Unsubscribe Link" -msgstr "发送退订链接" - -#. Label of the send_webview_link (Check) field in DocType 'Newsletter' -#: frappe/email/doctype/newsletter/newsletter.json -msgid "Send Web View Link" -msgstr "发送网页视图链接" +msgstr "发送给所有待办执行人" #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "发送欢迎邮件" - -#: frappe/email/doctype/newsletter/newsletter.js:10 -msgid "Send a test email" -msgstr "发送测试邮件" - -#: frappe/email/doctype/newsletter/newsletter.js:166 -msgid "Send again" -msgstr "重新发送" +msgstr "发送欢迎电子邮件" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if date matches this field's value" -msgstr "当日期匹配此字段值时发送提醒" +msgstr "如果日期匹配该字段的值则发送预警通知" #. Description of the 'Reference Datetime' (Select) field in DocType #. 'Notification' @@ -23085,18 +23260,18 @@ msgstr "当日期时间匹配此字段值时发送提醒" #. Description of the 'Value Changed' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send alert if this field's value changes" -msgstr "当此字段值变更时发送提醒" +msgstr "如果这个字段的值改变则发送预警通知" #. Label of the send_reminder (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Send an email reminder in the morning" -msgstr "上午发送邮件提醒" +msgstr "早上发送邮件提醒" #. Description of the 'Days Before or After' (Int) field in DocType #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send days before or after the reference date" -msgstr "在参考日期前后发送天数" +msgstr "参考日几天前或后发送" #. Description of the 'Send Email On State' (Check) field in DocType 'Workflow #. Document State' @@ -23108,51 +23283,43 @@ msgstr "当文档转换到该状态时发送邮件。" #. 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Send enquiries to this email address" -msgstr "发送查询到此邮箱" +msgstr "向此邮件地址发送询价" #: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 msgid "Send login link" msgstr "发送登录链接" -#: frappe/public/js/frappe/views/communication.js:141 +#: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" -msgstr "发送副本给我" - -#: frappe/email/doctype/newsletter/newsletter.js:46 -msgid "Send now" -msgstr "立即发送" +msgstr "抄送给自己" #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Send only if there is any data" -msgstr "仅当有数据时发送" +msgstr "仅在有数据时发送" #. Label of the send_unsubscribe_message (Check) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Send unsubscribe message in email" -msgstr "在邮件中包含退订信息" +msgstr "发电子邮件退订消息" #. Label of the sender (Data) field in DocType 'Event' #. Label of the sender (Data) field in DocType 'ToDo' #. Label of the sender (Link) field in DocType 'Auto Email Report' #. Label of the sender (Data) field in DocType 'Email Queue' -#. Label of the send_from (Data) field in DocType 'Newsletter' #. Label of the sender (Link) field in DocType 'Notification' #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender" msgstr "发件人" -#. Label of the sender_email (Data) field in DocType 'Newsletter' #. Label of the sender_email (Data) field in DocType 'Notification' -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.json msgid "Sender Email" -msgstr "发件人邮箱" +msgstr "发件人电子邮箱" #. Label of the sender_field (Data) field in DocType 'DocType' #. Label of the sender_field (Data) field in DocType 'Customize Form' @@ -23166,9 +23333,7 @@ msgid "Sender Field should have Email in options" msgstr "发件人字段选项中应包含邮箱" #. Label of the sender_name (Data) field in DocType 'SMS Log' -#. Label of the sender_name (Data) field in DocType 'Newsletter' #: frappe/core/doctype/sms_log/sms_log.json -#: frappe/email/doctype/newsletter/newsletter.json msgid "Sender Name" msgstr "发件人名称" @@ -23188,17 +23353,8 @@ msgstr "Sendgrid" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/newsletter/newsletter.js:201 msgid "Sending" -msgstr "正在发送" - -#: frappe/email/doctype/newsletter/newsletter.js:203 -msgid "Sending emails" -msgstr "发送邮件中" - -#: frappe/email/doctype/newsletter/newsletter.js:164 -msgid "Sending..." -msgstr "发送中..." +msgstr "发送中" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Sent or Received' (Select) field in DocType 'Communication' @@ -23207,8 +23363,6 @@ msgstr "发送中..." #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.js:196 -#: frappe/email/doctype/newsletter/newsletter_list.js:5 msgid "Sent" msgstr "已发送" @@ -23222,17 +23376,17 @@ msgstr "已发送文件夹名称" #. Label of the sent_on (Date) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent On" -msgstr "发送于" +msgstr "发送日期" #. Label of the read_receipt (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "已发送已读回执" +msgstr "发送阅读回执" #. Label of the sent_to (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sent To" -msgstr "发送至" +msgstr "发给" #. Label of the sent_or_received (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -23242,7 +23396,7 @@ msgstr "已发送或已接收" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Sent/Received Email" -msgstr "已发送/已接收邮件" +msgstr "收/发电子邮件" #. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json @@ -23252,17 +23406,17 @@ msgstr "分隔符" #. Label of the sequence_id (Float) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Sequence Id" -msgstr "序列ID" +msgstr "工序顺序号" #. Label of the naming_series_options (Text) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Series List for this Transaction" -msgstr "此交易的序列列表" +msgstr "本单据类型单据编号模板清单" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 msgid "Series Updated for {}" -msgstr "{}的序列已更新" +msgstr "单据类型 {} 的编号模板已更新" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 msgid "Series counter for {} updated to {} successfully" @@ -23271,14 +23425,14 @@ msgstr "{}的序列计数器成功更新至{}" #: frappe/core/doctype/doctype/doctype.py:1109 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" -msgstr "序列{0}已在{1}中使用" +msgstr "单据编号模板{0}已经被{1}使用" #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Server Action" msgstr "服务器操作" -#: frappe/app.py:376 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "服务器错误" @@ -23295,11 +23449,11 @@ msgstr "服务器IP" #: frappe/core/doctype/server_script/server_script.json #: frappe/core/workspace/build/build.json msgid "Server Script" -msgstr "服务器脚本" +msgstr "Python脚本" -#: frappe/utils/safe_exec.py:94 +#: frappe/utils/safe_exec.py:97 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." -msgstr "服务器脚本已禁用。请从bench配置启用服务器脚本" +msgstr "服务器(python)脚本已禁用,可通过后台bench命令 bench set-config -g server_script_enabled 1 启用" #: frappe/core/doctype/server_script/server_script.js:39 msgid "Server Scripts feature is not available on this site." @@ -23336,26 +23490,26 @@ msgstr "会话默认设置" #. Label of the session_defaults (Table) field in DocType 'Session Default #. Settings' #: frappe/core/doctype/session_default_settings/session_default_settings.json -#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355 +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" msgstr "会话默认值" -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" msgstr "会话默认值已保存" -#: frappe/app.py:353 +#: frappe/app.py:373 msgid "Session Expired" msgstr "会话已过期" #. Label of the session_expiry (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" -msgstr "会话过期时间(闲置超时)" +msgstr "会话超时(无操作超时)" #: frappe/core/doctype/system_settings/system_settings.py:120 msgid "Session Expiry must be in format {0}" -msgstr "会话过期时间格式必须为{0}" +msgstr "会话到期格式必须是{0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 @@ -23363,7 +23517,7 @@ msgstr "会话过期时间格式必须为{0}" #: frappe/desk/doctype/number_card/number_card.js:387 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" -msgstr "设置" +msgstr "有值" #: frappe/public/js/frappe/ui/filters/filter.js:607 msgctxt "Field value is set" @@ -23376,14 +23530,14 @@ msgstr "设置" msgid "Set Banner from Image" msgstr "从图像设置横幅" -#: frappe/public/js/frappe/views/reports/query_report.js:199 +#: frappe/public/js/frappe/views/reports/query_report.js:200 msgid "Set Chart" msgstr "设置图表" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "设置此仪表板上所有图表的默认选项(例如:“colors”:[“#d1d8dd”,“#ff5858”])" +msgstr "设置此数据面板图表的默认选项,例如:颜色:[\"#d1d8dd\", \"#ff5858\"]" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 #: frappe/desk/doctype/number_card/number_card.js:367 @@ -23395,14 +23549,14 @@ msgstr "设置动态过滤器" #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" -msgstr "设置过滤器" +msgstr "设置过滤条件" #: frappe/public/js/frappe/widgets/chart_widget.js:436 #: frappe/public/js/frappe/widgets/quick_list_widget.js:105 msgid "Set Filters for {0}" msgstr "为{0}设置过滤器" -#: frappe/public/js/frappe/views/reports/query_report.js:2052 +#: frappe/public/js/frappe/views/reports/query_report.js:2102 msgid "Set Level" msgstr "设置层级" @@ -23414,7 +23568,7 @@ msgstr "设置限制" #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "为交易设置命名序列选项" +msgstr "设置单据编号模板选项" #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23443,7 +23597,7 @@ msgstr "设置属性" #. 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Set Property After Alert" -msgstr "在警报后设置属性" +msgstr "发送通知后变更字段值" #: frappe/public/js/frappe/form/link_selector.js:207 #: frappe/public/js/frappe/form/link_selector.js:208 @@ -23454,30 +23608,30 @@ msgstr "设置数量" #. Page and Report' #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json msgid "Set Role For" -msgstr "设置角色归属" +msgstr "权限对象" #: frappe/core/doctype/user/user.js:131 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "设置用户权限" +msgstr "设置用户权限限制" #. Label of the value (Small Text) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" -msgstr "设置值" +msgstr "设定值" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 msgid "Set all private" -msgstr "全部设为私有" +msgstr "设为私有" #: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 msgid "Set all public" -msgstr "全部设为公开" +msgstr "设为公共" #: frappe/printing/doctype/print_format/print_format.js:49 msgid "Set as Default" -msgstr "设为默认" +msgstr "设置为默认值" #: frappe/website/doctype/website_theme/website_theme.js:33 msgid "Set as Default Theme" @@ -23488,7 +23642,7 @@ msgstr "设为默认主题" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" -msgstr "用户设置" +msgstr "用户输入" #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "Set dynamic filter values in JavaScript for the required fields here." @@ -23577,15 +23731,15 @@ msgstr "将路径设置为白名单函数,该函数将以以下格式返回数 #: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" -msgstr "将此地址模板设为默认(无其他默认模板存在)" +msgstr "将此地址模板设置为默认,因为没有其他的默认项" #: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 msgid "Setting up Global Search documents." -msgstr "正在配置全局搜索文档" +msgstr "设置全局搜索单据" #: frappe/desk/page/setup_wizard/setup_wizard.js:285 msgid "Setting up your system" -msgstr "系统设置中" +msgstr "设置您的系统" #. Label of the settings_tab (Tab Break) field in DocType 'DocType' #. Label of the settings_tab (Tab Break) field in DocType 'User' @@ -23598,7 +23752,7 @@ msgstr "系统设置中" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/public/js/frappe/form/templates/print_layout.html:25 #: frappe/public/js/frappe/ui/apps_switcher.js:137 -#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 #: frappe/public/js/frappe/views/workspace/workspace.js:362 #: frappe/website/doctype/web_form/web_form.json #: frappe/website/doctype/web_page/web_page.json @@ -23614,12 +23768,12 @@ msgstr "设置下拉菜单" #. Description of a DocType #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Settings for Contact Us Page" -msgstr "联系我们页面设置" +msgstr "联系我们页面的设置" #. Description of a DocType #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Settings for the About Us Page" -msgstr "关于我们页面设置" +msgstr "关于我们页面的设置" #. Description of a DocType #: frappe/website/doctype/blog_settings/blog_settings.json @@ -23644,26 +23798,26 @@ msgstr "设置 > 用户" msgid "Setup > User Permissions" msgstr "设置 > 用户权限" -#: frappe/public/js/frappe/views/reports/query_report.js:1765 +#: frappe/public/js/frappe/views/reports/query_report.js:1815 #: frappe/public/js/frappe/views/reports/report_view.js:1704 msgid "Setup Auto Email" -msgstr "设置自动邮件" +msgstr "设置电子邮件自动发送" #. Label of the setup_complete (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Setup Complete" -msgstr "设置完成" +msgstr "安装完成" #. Label of the setup_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" -msgstr "为交易设置序列" +msgstr "设置单据编号模板" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" -msgstr "设置失败" +msgstr "始始化失败" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23677,37 +23831,37 @@ msgstr "设置失败" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "共享" +msgstr "分享" #: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" -msgstr "共享给" +msgstr "分享" #: frappe/public/js/frappe/form/templates/set_sharing.html:49 msgid "Share this document with" -msgstr "将此文档共享给" +msgstr "分享给" #: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" -msgstr "将{0}共享给" +msgstr "分享给{0}" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Shared" -msgstr "已共享" +msgstr "分享" #: frappe/desk/form/assign_to.py:132 msgid "Shared with the following Users with Read access:{0}" -msgstr "已与以下具有读取权限的用户共享:{0}" +msgstr "单据分享(读权限)给了以下用户:{0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shipping" -msgstr "发货" +msgstr "送货" #: frappe/public/js/frappe/form/templates/address_list.html:31 msgid "Shipping Address" -msgstr "收货地址" +msgstr "送货地址" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -23721,18 +23875,20 @@ msgstr "简称" #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" -msgstr "短键盘模式易被猜测" +msgstr "短键盘模式容易被猜中" #. Label of the shortcuts (Table) field in DocType 'Workspace' #. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "快捷键" +msgstr "快捷方式" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 #: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 msgid "Show" msgstr "显示" @@ -23759,6 +23915,12 @@ msgstr "显示绝对值" msgid "Show All" msgstr "显示全部" +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + #: frappe/desk/doctype/calendar_view/calendar_view.js:10 msgid "Show Calendar" msgstr "显示日历" @@ -23766,7 +23928,7 @@ msgstr "显示日历" #. Label of the symbol_on_right (Check) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Show Currency Symbol on Right Side" -msgstr "货币符号显示在右侧" +msgstr "在金额右边显示货币符号" #. Label of the show_dashboard (Check) field in DocType 'DocField' #. Label of the show_dashboard (Check) field in DocType 'Custom Field' @@ -23776,7 +23938,7 @@ msgstr "货币符号显示在右侧" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/dashboard/dashboard.js:6 msgid "Show Dashboard" -msgstr "显示仪表盘" +msgstr "显示数据面板" #. Label of the show_document (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -23806,7 +23968,7 @@ msgstr "显示表单引导" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Show Full Error and Allow Reporting of Issues to the Developer" -msgstr "显示完整错误并允许向开发者报告问题" +msgstr "显示完整错误并允许向开发人员报告问题" #. Label of the show_full_form (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -23832,26 +23994,26 @@ msgstr "显示标签" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" -msgstr "显示语言选择器" +msgstr "显示语言选择框" #. Label of the line_breaks (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Line Breaks after Sections" -msgstr "节段后显示换行符" +msgstr "章节后,显示换行符" -#: frappe/public/js/frappe/form/toolbar.js:407 +#: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" msgstr "显示链接" #. Label of the show_failed_logs (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Show Only Failed Logs" -msgstr "仅显示失败日志" +msgstr "只显示出错信息" #. Label of the show_percentage_stats (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Percentage Stats" -msgstr "显示百分比统计" +msgstr "显示统计百分比" #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" @@ -23862,23 +24024,29 @@ msgstr "显示权限" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Show Preview" -msgstr "显示预览" +msgstr "预览" #. Label of the show_preview_popup (Check) field in DocType 'DocType' #. Label of the show_preview_popup (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Preview Popup" -msgstr "显示预览弹窗" +msgstr "显示链接字段鼠标悬停预览弹窗" #. Label of the show_processlist (Check) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "Show Processlist" -msgstr "显示进程列表" +msgstr "显示进程清单" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" #: frappe/core/doctype/error_log/error_log.js:9 msgid "Show Related Errors" -msgstr "显示相关错误" +msgstr "显示同类错误" #. Label of the show_report (Button) field in DocType 'Access Log' #: frappe/core/doctype/access_log/access_log.json @@ -23895,15 +24063,21 @@ msgstr "显示已保存" #. Label of the show_section_headings (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Show Section Headings" -msgstr "显示节段标题" +msgstr "显示节标题" #. Label of the show_sidebar (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" -msgstr "显示侧边栏" +msgstr "显示左边栏" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1704 +#: frappe/public/js/frappe/list/list_view.js:1702 msgid "Show Tags" msgstr "显示标签" @@ -23918,7 +24092,7 @@ msgstr "显示标题" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" -msgstr "在链接字段显示标题" +msgstr "在链接字段中以标题字段值显示" #: frappe/public/js/frappe/views/reports/report_view.js:1527 msgid "Show Totals" @@ -23932,9 +24106,15 @@ msgstr "显示引导" msgid "Show Traceback" msgstr "显示回溯信息" +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" -msgstr "显示警告" +msgstr "显示警告信息" #: frappe/public/js/frappe/views/calendar/calendar.js:179 msgid "Show Weekends" @@ -23944,7 +24124,7 @@ msgstr "显示周末" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" -msgstr "在'我的账户'页面显示账户删除链接" +msgstr "在我的账号页显示帐号删除链接" #: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" @@ -23952,7 +24132,7 @@ msgstr "显示所有版本" #: frappe/public/js/frappe/form/footer/form_timeline.js:69 msgid "Show all activity" -msgstr "显示所有活动" +msgstr "显示全部日志" #: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 msgid "Show all blogs" @@ -23961,7 +24141,7 @@ msgstr "显示所有博客" #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" -msgstr "显示为抄送" +msgstr "显示为CC" #. Label of the show_attachments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -23972,7 +24152,7 @@ msgstr "显示附件" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" -msgstr "登录页显示页脚" +msgstr "在登录页显示页脚" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' @@ -23983,12 +24163,18 @@ msgstr "显示完整表单而非快速录入弹窗" #. Label of the document_type (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Show in Module Section" -msgstr "在模块区域显示" +msgstr "模块主页中的显示位置" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" #. Label of the show_in_filter (Check) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Show in filter" -msgstr "在过滤器中显示" +msgstr "在过滤条件中显示" #. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json @@ -24014,7 +24200,7 @@ msgstr "在时间轴显示" #. Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show percentage difference according to this time interval" -msgstr "按此时段显示百分比差异" +msgstr "根据此频率显示百分比差异" #. Label of the show_sidebar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -24024,15 +24210,15 @@ msgstr "显示侧边栏" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show title in browser window as \"Prefix - title\"" -msgstr "在浏览器窗口中将标题显示为“前缀 - 标题”" +msgstr "标题显示在浏览器窗口中的“前缀 - 标题”" #: frappe/public/js/frappe/widgets/onboarding_widget.js:148 msgid "Show {0} List" -msgstr "显示{0}列表" +msgstr "查看 {0} 清单" #: frappe/public/js/frappe/views/reports/report_view.js:501 msgid "Showing only Numeric fields from Report" -msgstr "仅显示报表中的数值字段" +msgstr "仅显示来自报表的数字字段" #: frappe/public/js/frappe/data_import/import_preview.js:153 msgid "Showing only first {0} rows out of {1}" @@ -24047,7 +24233,7 @@ msgstr "侧边栏" #. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' #: frappe/website/doctype/website_sidebar/website_sidebar.json msgid "Sidebar Items" -msgstr "侧边栏项目" +msgstr "边栏项目" #. Label of the section_break_4 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -24057,7 +24243,7 @@ msgstr "侧边栏设置" #. Label of the section_break_17 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "侧边栏与评论" +msgstr "边栏和评论" #. Label of the sign_up_and_confirmation_section (Section Break) field in #. DocType 'Email Group' @@ -24065,12 +24251,12 @@ msgstr "侧边栏与评论" msgid "Sign Up and Confirmation" msgstr "注册与确认" -#: frappe/core/doctype/user/user.py:1018 +#: frappe/core/doctype/user/user.py:1022 msgid "Sign Up is disabled" -msgstr "注册功能已禁用" +msgstr "禁止注册" #: frappe/templates/signup.html:16 frappe/www/login.html:140 -#: frappe/www/login.html:156 frappe/www/update-password.html:58 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 msgid "Sign up" msgstr "注册" @@ -24106,19 +24292,19 @@ msgstr "此网站已禁用注册功能" #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "简单的 Python 表达式,示例:状态为 (“已关闭”、“已取消”)" +msgstr "简单的Python表达式,示例:状态(“已关闭”,“已取消”)" #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "简单的 Python 表达式,示例:状态为(“无效”)" +msgstr "简单python表达式,如表示在无效状态下 Status in (\"\"Invalid\"\")" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "简单的 Python 表达式,示例:status == 'Open' 和 type == 'Bug'" +msgstr "简单的Python表达式,例如:status =='Open'并输入=='Bug'" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -24127,13 +24313,13 @@ msgstr "并发会话" #: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Single DocTypes cannot be customized." -msgstr "单文档类型不可自定义" +msgstr "不支持定制单笔记录单据类型" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/doctype/doctype_list.js:67 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" -msgstr "单类型仅有一条记录,无关联表。值存储在tabSingles中" +msgstr "单笔记录单据类型只有一条记录,适用于存储系统或模块配置信息,没有独立的后台数据库表。所有单笔记录类型的数据被统一保存在名为tabSingles后台数据库表内。" #: frappe/database/database.py:284 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." @@ -24156,8 +24342,10 @@ msgstr "跳过" #. Label of the skip_authorization (Check) field in DocType 'OAuth Client' #. Label of the skip_authorization (Select) field in DocType 'OAuth Provider #. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Skip Authorization" msgstr "跳过授权" @@ -24198,7 +24386,7 @@ msgstr "Skype" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Slack" -msgstr "Slack" +msgstr "Slack(即时通讯工具)" #. Label of the slack_webhook_url (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -24214,7 +24402,7 @@ msgstr "Slack Webhook错误" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" -msgstr "Slack Webhook URL" +msgstr "Slack Webhook网址" #. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' @@ -24225,7 +24413,7 @@ msgstr "幻灯片" #. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow Items" -msgstr "幻灯片项目" +msgstr "幻灯片条目" #. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json @@ -24235,7 +24423,7 @@ msgstr "幻灯片名称" #. Description of a DocType #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Slideshow like display for the website" -msgstr "网站幻灯片展示" +msgstr "像幻灯片那样显示,用于网站。" #. Label of the slug (Data) field in DocType 'UTM Campaign' #. Label of the slug (Data) field in DocType 'UTM Medium' @@ -24269,7 +24457,7 @@ msgstr "最小货币分数值" #. DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" -msgstr "最小流通分数单位(硬币)。例如:美元的1分应输入为0.01" +msgstr "最小货币(分数)单位(硬币)。如最小货币是分,这里就输入0.01" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "Snippet and more variables: {0}" @@ -24319,7 +24507,17 @@ msgstr "SocketIO传输模式" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Soft-Bounced" -msgstr "软退信" +msgstr "软退回" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." @@ -24332,15 +24530,15 @@ msgstr "某些邮箱需要不同的发送文件夹名称,例如“INBOX.Sent #: frappe/public/js/frappe/desk.js:20 msgid "Some of the features might not work in your browser. Please update your browser to the latest version." -msgstr "部分功能可能无法在您的浏览器中使用,请升级至最新版本" +msgstr "您的浏览器中的某些功能可能无法正常工作。请将您的浏览器更新到最新版本。" #: frappe/public/js/frappe/views/translation_manager.js:101 msgid "Something went wrong" -msgstr "发生错误" +msgstr "出了些问题" #: frappe/integrations/doctype/google_calendar/google_calendar.py:133 msgid "Something went wrong during the token generation. Click on {0} to generate a new one." -msgstr "令牌生成过程中出错,点击{0}生成新令牌" +msgstr "在令牌生成期间出了点问题。单击{0}以生成新的。" #: frappe/templates/includes/login/login.js:293 msgid "Something went wrong." @@ -24348,19 +24546,19 @@ msgstr "出现错误" #: frappe/public/js/frappe/views/pageview.js:114 msgid "Sorry! I could not find what you were looking for." -msgstr "抱歉!未找到您需要的内容" +msgstr "抱歉,无法找你要的信息。" #: frappe/public/js/frappe/views/pageview.js:122 msgid "Sorry! You are not permitted to view this page." -msgstr "抱歉!您无权查看此页面" +msgstr "抱歉,你不允许查看此页面。" #: frappe/public/js/frappe/utils/datatable.js:6 msgid "Sort Ascending" -msgstr "升序排序" +msgstr "升序" #: frappe/public/js/frappe/utils/datatable.js:7 msgid "Sort Descending" -msgstr "降序排序" +msgstr "倒序" #. Label of the sort_field (Select) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -24374,21 +24572,21 @@ msgstr "排序字段" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Sort Options" -msgstr "排序选项" +msgstr "按选项值排序" #. Label of the sort_order (Select) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Order" -msgstr "排序顺序" +msgstr "排序" #: frappe/core/doctype/doctype/doctype.py:1550 msgid "Sort field {0} must be a valid fieldname" -msgstr "排序字段{0}必须是有效字段名" +msgstr "排序字段{0}必须是有效的字段名" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' #: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1717 +#: frappe/public/js/frappe/utils/utils.js:1720 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 @@ -24398,7 +24596,7 @@ msgstr "来源" #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" -msgstr "来源名称" +msgstr "源名称" #. Label of the source_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json @@ -24409,7 +24607,7 @@ msgstr "源文本" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 msgid "Spacer" -msgstr "间距" +msgstr "空白分隔线" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -24423,7 +24621,7 @@ msgstr "SparkPost" #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" -msgstr "不允许使用特殊字符" +msgstr "不能使用特殊字符" #: frappe/model/naming.py:68 msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" @@ -24460,7 +24658,7 @@ msgstr "序号" #: frappe/core/doctype/recorder/recorder.js:82 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Stack Trace" -msgstr "堆栈跟踪" +msgstr "调用栈" #. Label of the standard (Select) field in DocType 'Page' #. Label of the standard (Check) field in DocType 'Desktop Icon' @@ -24478,13 +24676,13 @@ msgstr "堆栈跟踪" msgid "Standard" msgstr "标准" -#: frappe/model/delete_doc.py:78 +#: frappe/model/delete_doc.py:79 msgid "Standard DocType can not be deleted." msgstr "标准文档类型不可删除" #: frappe/core/doctype/doctype/doctype.py:228 msgid "Standard DocType cannot have default print format, use Customize Form" -msgstr "标准文档类型不能有默认打印格式,请使用自定义表单" +msgstr "不能为标准DocType设置默认打印格式,请使用定制表单功能" #: frappe/desk/doctype/dashboard/dashboard.py:58 msgid "Standard Not Set" @@ -24494,13 +24692,13 @@ msgstr "未设置标准" msgid "Standard Permissions" msgstr "标准权限" -#: frappe/printing/doctype/print_format/print_format.py:75 +#: frappe/printing/doctype/print_format/print_format.py:81 msgid "Standard Print Format cannot be updated" -msgstr "标准打印格式不可更新" +msgstr "不能更新标准打印格式" #: frappe/printing/doctype/print_style/print_style.py:31 msgid "Standard Print Style cannot be changed. Please duplicate to edit." -msgstr "标准打印样式不可修改,请复制后进行编辑" +msgstr "标准打印样式无法更改。请重复编辑。" #: frappe/desk/reportview.py:354 msgid "Standard Reports cannot be deleted" @@ -24514,7 +24712,7 @@ msgstr "标准报表不可编辑" #. Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Standard Sidebar Menu" -msgstr "标准侧边栏菜单" +msgstr "标准工具栏菜单" #: frappe/website/doctype/web_form/web_form.js:40 msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." @@ -24526,11 +24724,11 @@ msgstr "带控件的标准富文本编辑器" #: frappe/core/doctype/role/role.py:46 msgid "Standard roles cannot be disabled" -msgstr "标准角色不可禁用" +msgstr "标准角色不能被禁用" #: frappe/core/doctype/role/role.py:32 msgid "Standard roles cannot be renamed" -msgstr "标准角色不可重命名" +msgstr "不允许变更标准角色名" #: frappe/core/doctype/user_type/user_type.py:61 msgid "Standard user type {0} can not be deleted." @@ -24578,11 +24776,11 @@ msgstr "发起新讨论" #: frappe/core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" -msgstr "在此行下方开始输入数据" +msgstr "请在此线下开始输入数据" #: frappe/printing/page/print_format_builder/print_format_builder.js:165 msgid "Start new Format" -msgstr "开始新格式" +msgstr "创建新的打印格式" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -24592,21 +24790,21 @@ msgstr "启动TLS" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Started" -msgstr "已启动" +msgstr "入门" #. Label of the started_at (Datetime) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Started At" -msgstr "开始于" +msgstr "开始时间" #: frappe/desk/page/setup_wizard/setup_wizard.js:286 msgid "Starting Frappe ..." -msgstr "正在启动Frappe..." +msgstr "开始Frappe ..." #. Label of the starts_on (Datetime) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Starts on" -msgstr "开始于" +msgstr "开始时间" #. Label of the state (Data) field in DocType 'Token Cache' #. Label of the state (Link) field in DocType 'Workflow Document State' @@ -24629,7 +24827,7 @@ msgstr "状态属性" #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "State/Province" -msgstr "州/省" +msgstr "省/市/自治州" #. Label of the document_states_section (Tab Break) field in DocType 'DocType' #. Label of the states (Table) field in DocType 'Customize Form' @@ -24638,7 +24836,7 @@ msgstr "州/省" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/workflow/doctype/workflow/workflow.json msgid "States" -msgstr "状态列表" +msgstr "状态" #. Label of the parameters (Table) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json @@ -24648,19 +24846,19 @@ msgstr "静态参数" #. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Statistics" -msgstr "统计" +msgstr "统计信息" #. Label of the stats_section (Section Break) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/form/dashboard.js:43 #: frappe/public/js/frappe/form/templates/form_dashboard.html:13 msgid "Stats" -msgstr "统计" +msgstr "统计信息" #. Label of the stats_time_interval (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Stats Time Interval" -msgstr "统计时间间隔" +msgstr "频率" #. Label of the status (Select) field in DocType 'Auto Repeat' #. Label of the status (Select) field in DocType 'Contact' @@ -24681,7 +24879,6 @@ msgstr "统计时间间隔" #. Label of the status (Select) field in DocType 'ToDo' #. Label of the status (Select) field in DocType 'Email Queue' #. Label of the status (Select) field in DocType 'Email Queue Recipient' -#. Label of the status_section (Section Break) field in DocType 'Newsletter' #. Label of the status (Select) field in DocType 'Integration Request' #. Label of the status (Select) field in DocType 'OAuth Bearer Token' #. Label of the status (Select) field in DocType 'Personal Data Deletion @@ -24706,7 +24903,6 @@ msgstr "统计时间间隔" #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/public/js/frappe/list/list_settings.js:359 @@ -24717,7 +24913,7 @@ msgstr "统计时间间隔" msgid "Status" msgstr "状态" -#: frappe/www/update-password.html:163 +#: frappe/www/update-password.html:188 msgid "Status Updated" msgstr "状态已更新" @@ -24732,7 +24928,7 @@ msgstr "状态:{0}" #. Label of the step (Link) field in DocType 'Onboarding Step Map' #: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json msgid "Step" -msgstr "步骤" +msgstr "步" #. Label of the steps (Table) field in DocType 'Form Tour' #. Label of the steps (Table) field in DocType 'Module Onboarding' @@ -24743,7 +24939,7 @@ msgstr "步骤列表" #: frappe/www/qrcode.html:11 msgid "Steps to verify your login" -msgstr "验证登录的步骤" +msgstr "验证您的登录的步骤" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json @@ -24775,12 +24971,12 @@ msgstr "按表的存储使用量" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Store Attached PDF Document" -msgstr "存储附件PDF文档" +msgstr "存储PDF附件" #. Description of the 'Last Known Versions' (Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." -msgstr "存储各安装应用最新版本的JSON数据,用于显示版本说明" +msgstr "商店的最后为人所知的版本的安装的应用程序的JSON。它是用来显示发布说明。" #. Description of the 'Last Reset Password Key Generated On' (Datetime) field #. in DocType 'User' @@ -24790,13 +24986,13 @@ msgstr "存储上次重置密码密钥生成的时间" #: frappe/utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" -msgstr "键盘直线排列易被猜测" +msgstr "键盘上连串的字符容易被猜中" #. Label of the strip_exif_metadata_from_uploaded_images (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" -msgstr "去除上传图像的EXIF标签" +msgstr "从上传的图片中删除EXIF标签" #: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" @@ -24807,7 +25003,7 @@ msgstr "强" #: frappe/website/doctype/web_page/web_page.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style" -msgstr "样式" +msgstr "风格" #. Label of the section_break_9 (Section Break) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -24817,7 +25013,7 @@ msgstr "样式设置" #. Description of the 'Style' (Select) field in DocType 'Workflow State' #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" -msgstr "样式代表按钮颜色:成功-绿色,危险-红色,反色-黑色,主要-深蓝,信息-浅蓝,警告-橙色" +msgstr "风格代表按钮的颜色:成功 - 绿色,危险 - 红色,反转 - 黑色,主按钮 - 深蓝色,信息 - 浅蓝,警告 - 橙色" #. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -24827,7 +25023,7 @@ msgstr "样式表" #. Description of the 'Fraction' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "Sub-currency. For e.g. \"Cent\"" -msgstr "子货币。例如“美分”" +msgstr "子货币,例如分" #. Description of the 'Subdomain' (Small Text) field in DocType 'Website #. Settings' @@ -24847,8 +25043,6 @@ msgstr "子域名" #. Label of the subject (Small Text) field in DocType 'Event' #. Label of the subject (Text) field in DocType 'Notification Log' #. Label of the subject (Data) field in DocType 'Email Template' -#. Label of the subject (Small Text) field in DocType 'Newsletter' -#. Label of the subject_section (Section Break) field in DocType 'Newsletter' #. Label of the subject (Data) field in DocType 'Notification' #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/core/doctype/activity_log/activity_log.json @@ -24857,10 +25051,9 @@ msgstr "子域名" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/email/doctype/notification/notification.js:200 #: frappe/email/doctype/notification/notification.json -#: frappe/public/js/frappe/views/communication.js:116 +#: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" msgstr "主题" @@ -24899,7 +25092,7 @@ msgstr "提交队列" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/list/list_view.js:2086 +#: frappe/public/js/frappe/list/list_view.js:2084 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "提交" @@ -24927,7 +25120,7 @@ msgstr "提交" #. Label of the submit_after_import (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Submit After Import" -msgstr "导入后提交" +msgstr "将上传单据状态设为已提交" #: frappe/core/page/permission_manager/permission_manager_help.html:39 msgid "Submit an Issue" @@ -24955,9 +25148,9 @@ msgstr "提交此文档以完成此步骤" #: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" -msgstr "提交此文档以确认" +msgstr "点提交按钮进行确认" -#: frappe/public/js/frappe/list/list_view.js:2091 +#: frappe/public/js/frappe/list/list_view.js:2089 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "是否提交{0}个文档?" @@ -24972,7 +25165,7 @@ msgstr "已提交" #: frappe/workflow/doctype/workflow/workflow.py:103 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" -msgstr "已提交文档无法转回草稿。转换行{0}" +msgstr "行{0}中的已提交的单据不能转换为草稿。" #: frappe/public/js/workflow_builder/utils.js:176 msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" @@ -24990,14 +25183,14 @@ msgstr "正在提交{0}" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Subsidiary" -msgstr "子公司" +msgstr "分支机构" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' #. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json #: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" -msgstr "副标题" +msgstr "子标题" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -25024,7 +25217,7 @@ msgstr "成功" #. Name of a DocType #: frappe/core/doctype/success_action/success_action.json msgid "Success Action" -msgstr "成功操作" +msgstr "成功后的操作" #. Label of the success_message (Data) field in DocType 'Module Onboarding' #: frappe/desk/doctype/module_onboarding/module_onboarding.json @@ -25051,14 +25244,14 @@ msgstr "成功消息" msgid "Success title" msgstr "成功标题" -#: frappe/www/update-password.html:81 +#: frappe/www/update-password.html:94 msgid "Success! You are good to go 👍" -msgstr "成功!一切就绪 👍" +msgstr "成功!你很好去👍" #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" -msgstr "成功任务数" +msgstr "成功任务数量" #: frappe/model/workflow.py:307 msgid "Successful Transactions" @@ -25066,7 +25259,7 @@ msgstr "成功事务" #: frappe/model/rename_doc.py:699 msgid "Successful: {0} to {1}" -msgstr "成功:从{0}到{1}" +msgstr "成功:{0} {1}" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 @@ -25075,7 +25268,7 @@ msgstr "更新成功" #: frappe/core/doctype/data_import/data_import.js:423 msgid "Successfully imported {0}" -msgstr "成功导入{0}" +msgstr "成功导入了{0}" #: frappe/core/doctype/data_import/data_import.js:144 msgid "Successfully imported {0} out of {1} records." @@ -25087,11 +25280,11 @@ msgstr "已成功重置所有用户的入职状态。" #: frappe/public/js/frappe/views/translation_manager.js:22 msgid "Successfully updated translations" -msgstr "翻译更新成功" +msgstr "成功更新翻译" #: frappe/core/doctype/data_import/data_import.js:431 msgid "Successfully updated {0}" -msgstr "成功更新{0}" +msgstr "成功更新了{0}" #: frappe/core/doctype/data_import/data_import.js:149 msgid "Successfully updated {0} out of {1} records." @@ -25106,7 +25299,7 @@ msgstr "建议优化" msgid "Suggested Indexes" msgstr "建议索引" -#: frappe/core/doctype/user/user.py:722 +#: frappe/core/doctype/user/user.py:726 msgid "Suggested Username: {0}" msgstr "建议用户名:{0}" @@ -25117,15 +25310,15 @@ msgstr "建议用户名:{0}" #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/ui/group_by/group_by.js:20 msgid "Sum" -msgstr "合计" +msgstr "汇总" -#: frappe/public/js/frappe/ui/group_by/group_by.js:337 +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 msgid "Sum of {0}" -msgstr "{0}的合计" +msgstr "{0}的总和" #: frappe/public/js/frappe/views/interaction.js:88 msgid "Summary" -msgstr "摘要" +msgstr "概要" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -25141,7 +25334,7 @@ msgstr "摘要" #: frappe/desk/doctype/event/event.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Sunday" -msgstr "星期日" +msgstr "星期天" #: frappe/email/doctype/email_queue/email_queue_list.js:27 msgid "Suspend Sending" @@ -25158,7 +25351,7 @@ msgstr "切换主题" #: frappe/templates/includes/navbar/navbar_login.html:17 msgid "Switch To Desk" -msgstr "切换至工作台" +msgstr "切换到主页(桌面)" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" @@ -25186,7 +25379,7 @@ msgstr "同步日历" #: frappe/integrations/doctype/google_contacts/google_contacts.js:28 msgid "Sync Contacts" -msgstr "同步联系人" +msgstr "通讯录同步" #. Label of the sync_as_public (Check) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json @@ -25209,7 +25402,7 @@ msgstr "与Google日历同步" #. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Sync with Google Contacts" -msgstr "与Google联系人同步" +msgstr "同步谷歌联系人" #: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 msgid "Sync {0} Fields" @@ -25222,13 +25415,13 @@ msgstr "已同步字段" #: frappe/integrations/doctype/google_calendar/google_calendar.js:31 #: frappe/integrations/doctype/google_contacts/google_contacts.js:31 msgid "Syncing" -msgstr "同步中" +msgstr "同步" #: frappe/integrations/doctype/google_calendar/google_calendar.js:19 msgid "Syncing {0} of {1}" msgstr "正在同步{1}中的{0}" -#: frappe/utils/data.py:2494 +#: frappe/utils/data.py:2529 msgid "Syntax Error" msgstr "语法错误" @@ -25406,6 +25599,7 @@ msgstr "系统日志" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -25465,6 +25659,11 @@ msgctxt "Number system" msgid "T" msgstr "T" +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -25472,7 +25671,7 @@ msgstr "T" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Tab Break" -msgstr "选项卡分隔" +msgstr "页签" #: frappe/public/js/form_builder/components/Tabs.vue:135 msgid "Tab Label" @@ -25502,12 +25701,12 @@ msgstr "表格分页符" #: frappe/core/doctype/version/version_view.html:72 msgid "Table Field" -msgstr "表格字段" +msgstr "表字段" #. Label of the table_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Table Fieldname" -msgstr "表格字段名" +msgstr "表字段名" #: frappe/core/doctype/doctype/doctype.py:1203 msgid "Table Fieldname Missing" @@ -25516,7 +25715,7 @@ msgstr "缺失表格字段名" #. Label of the table_html (HTML) field in DocType 'Version' #: frappe/core/doctype/version/version.json msgid "Table HTML" -msgstr "表格HTML" +msgstr "表HTML" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25525,7 +25724,7 @@ msgstr "表格HTML" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Table MultiSelect" -msgstr "表格多选" +msgstr "表-多选" #: frappe/custom/doctype/customize_form/customize_form.js:229 msgid "Table Trimmed" @@ -25533,9 +25732,9 @@ msgstr "表格已截断" #: frappe/public/js/frappe/form/grid.js:1169 msgid "Table updated" -msgstr "表格已更新" +msgstr "表更新" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1574 msgid "Table {0} cannot be empty" msgstr "表{0}不能为空" @@ -25564,7 +25763,7 @@ msgstr "标签链接" #: frappe/public/js/frappe/model/model.js:133 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" -msgstr "标签集" +msgstr "标签" #: frappe/public/js/frappe/ui/capture.js:220 msgid "Take Photo" @@ -25599,13 +25798,13 @@ msgstr "团队成员标题" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Subtitle" -msgstr "团队成员副标题" +msgstr "团队成员子标题" #. Label of the telemetry_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Telemetry" -msgstr "遥测" +msgstr "系统使用情况上报" #. Label of the template (Link) field in DocType 'Auto Repeat' #. Label of the template (Code) field in DocType 'Address Template' @@ -25641,11 +25840,11 @@ msgstr "模板警告" #: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 msgid "Templates" -msgstr "模板集" +msgstr "模板" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1033 msgid "Temporarily Disabled" -msgstr "已临时禁用" +msgstr "暂时禁用" #: frappe/core/doctype/translation/test_translation.py:47 #: frappe/core/doctype/translation/test_translation.py:54 @@ -25662,13 +25861,9 @@ msgstr "测试任务ID" msgid "Test Spanish" msgstr "测试西班牙语" -#: frappe/email/doctype/newsletter/newsletter.py:92 -msgid "Test email sent to {0}" -msgstr "测试邮件已发送至{0}" - #: frappe/core/doctype/file/test_file.py:379 msgid "Test_Folder" -msgstr "测试文件夹" +msgstr "Test_Folder" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -25691,7 +25886,7 @@ msgstr "文本对齐" #. Label of the text_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "文本颜色" +msgstr "文字颜色" #. Label of the text_content (Code) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -25711,7 +25906,7 @@ msgstr "文本编辑器" #: frappe/templates/emails/password_reset.html:5 msgid "Thank you" -msgstr "感谢" +msgstr "谢谢" #: frappe/www/contact.py:39 msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" @@ -25727,19 +25922,15 @@ msgstr "感谢您花时间填写此表单" #: frappe/templates/emails/auto_reply.html:1 msgid "Thank you for your email" -msgstr "感谢您的邮件" +msgstr "谢谢您的邮件" #: frappe/website/doctype/help_article/templates/help_article.html:27 msgid "Thank you for your feedback!" msgstr "感谢您的反馈!" -#: frappe/email/doctype/newsletter/newsletter.py:332 -msgid "Thank you for your interest in subscribing to our updates" -msgstr "感谢您订阅我们的更新" - #: frappe/templates/includes/contact.js:36 msgid "Thank you for your message" -msgstr "感谢您的留言" +msgstr "谢谢您的留言" #: frappe/templates/emails/new_user.html:16 msgid "Thanks" @@ -25764,7 +25955,7 @@ msgstr "从 Google Cloud Console 下的 \n" "\"API & Services\" > \"Credentials\"\n" "下的 Google Cloud Console 获取的浏览器 API 密钥" -#: frappe/database/database.py:475 +#: frappe/database/database.py:474 msgid "The changes have been reverted." msgstr "更改已还原。" @@ -25832,11 +26023,11 @@ msgstr "国家ISO 3166 ALPHA-2代码。" #: frappe/public/js/frappe/views/interaction.js:301 msgid "The document could not be correctly assigned" -msgstr "文档未能正确分配" +msgstr "无法正确分派单据" #: frappe/public/js/frappe/views/interaction.js:295 msgid "The document has been assigned to {0}" -msgstr "文档已分配给{0}" +msgstr "该单据已分派给{0}" #. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard #. Chart' @@ -25863,13 +26054,13 @@ msgstr "以下分配日期重复:{0}" msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" msgstr "以下页眉脚本将当前日期添加至类名为'header-content'的页眉HTML元素中" -#: frappe/core/doctype/data_import/importer.py:1086 +#: frappe/core/doctype/data_import/importer.py:1089 msgid "The following values are invalid: {0}. Values must be one of {1}" msgstr "以下值无效:{0}。有效值应为{1}之一" -#: frappe/core/doctype/data_import/importer.py:1043 +#: frappe/core/doctype/data_import/importer.py:1046 msgid "The following values do not exist for {0}: {1}" -msgstr "以下值在{0}中不存在:{1}" +msgstr "以下单据 {0}:{1} 不存在" #: frappe/core/doctype/user_type/user_type.py:89 msgid "The limit has not set for the user type {0} in the site config file." @@ -25894,7 +26085,7 @@ msgstr "元图像是代表页面内容的唯一图像。卡片图像宽度至少 #. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "The name that will appear in Google Calendar" -msgstr "将在Google日历中显示的名称" +msgstr "将显示在Google日历中的名称" #. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -25904,15 +26095,15 @@ msgstr "下次导览将从用户上次结束处开始。" #. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "The number of seconds until the request expires" -msgstr "请求有效期的秒数" +msgstr "请求逾期时间(秒)" -#: frappe/www/update-password.html:88 +#: frappe/www/update-password.html:101 msgid "The password of your account has expired." -msgstr "您的账户密码已过期。" +msgstr "您账户的密码已过期。" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 msgid "The process for deletion of {0} data associated with {1} has been initiated." -msgstr "已启动删除与{1}关联的{0}数据流程。" +msgstr "删除与{1}关联的{0}数据的过程已启动。" #. Description of the 'App ID' (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json @@ -25923,17 +26114,17 @@ msgstr "从\n" "\"IAM & Admin\" > \"Settings\"\n" "下的 Google Cloud Console 获取的项目编号" -#: frappe/core/doctype/user/user.py:989 +#: frappe/core/doctype/user/user.py:993 msgid "The reset password link has been expired" msgstr "重置密码链接已过期" -#: frappe/core/doctype/user/user.py:991 +#: frappe/core/doctype/user/user.py:995 msgid "The reset password link has either been used before or is invalid" msgstr "重置密码链接已被使用或无效" -#: frappe/app.py:368 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" -msgstr "您请求的资源不可用" +msgstr "您正在查找的资源不可用" #: frappe/core/doctype/user_type/user_type.py:114 msgid "The role {0} should be a custom role." @@ -25943,13 +26134,13 @@ msgstr "角色{0}应为自定义角色。" msgid "The selected document {0} is not a {1}." msgstr "所选文档{0}不是{1}类型。" -#: frappe/utils/response.py:331 +#: frappe/utils/response.py:338 msgid "The system is being updated. Please refresh again after a few moments." msgstr "系统正在更新。请稍后刷新页面。" #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." -msgstr "系统提供多种预定义角色。可添加新角色设置更细粒度权限。" +msgstr "本系统提供了许多预定义角色。您可以添加新角色设定更精细的权限。" #: frappe/core/doctype/user_type/user_type.py:97 msgid "The total number of user document types limit has been crossed." @@ -25990,7 +26181,7 @@ msgstr "主题配置" #. Label of the theme_url (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme URL" -msgstr "主题URL" +msgstr "主题网址" #: frappe/workflow/doctype/workflow/workflow.js:125 msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." @@ -25998,13 +26189,13 @@ msgstr "存在文档的工作流状态未包含在此工作流中。建议在移 #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "There are no upcoming events for you." -msgstr "您没有即将发生的事件。" +msgstr "你没有待处理事项" #: frappe/website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" msgstr "此{1}无{0},何不创建一个!" -#: frappe/public/js/frappe/views/reports/query_report.js:963 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "There are {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26015,31 +26206,31 @@ msgstr "网页表单最多允许9个分页符字段" #: frappe/core/doctype/doctype/doctype.py:1443 msgid "There can be only one Fold in a form" -msgstr "表单中只能有一个折叠区域" +msgstr "一个表单只能有一个折叠" #: frappe/contacts/doctype/address/address.py:183 msgid "There is an error in your Address Template {0}" -msgstr "地址模板{0}存在错误" +msgstr "地址模板有一个错误{0}" #: frappe/core/doctype/data_export/exporter.py:162 msgid "There is no data to be exported" -msgstr "无数据可导出" +msgstr "没有可导出的数据" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." -msgstr "当前无新内容可显示。" +msgstr "暂无可显示新消息" #: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" -msgstr "文件URL存在问题:{0}" +msgstr "有一些问题与文件的URL:{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:960 +#: frappe/public/js/frappe/views/reports/query_report.js:961 msgid "There is {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" #: frappe/core/page/permission_manager/permission_manager.py:156 msgid "There must be atleast one permission rule." -msgstr "必须至少存在一条权限规则。" +msgstr "至少要一个权限规则。" #: frappe/www/error.py:17 msgid "There was an error building this page" @@ -26047,23 +26238,23 @@ msgstr "构建此页面时出错" #: frappe/public/js/frappe/views/kanban/kanban_view.js:182 msgid "There was an error saving filters" -msgstr "保存筛选器时出错" +msgstr "保存过滤条件时出错" #: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" -msgstr "存在错误" +msgstr "出错了" #: frappe/public/js/frappe/views/interaction.js:277 msgid "There were errors while creating the document. Please try again." -msgstr "创建文档时出错。请重试。" +msgstr "创建单据时出错。请再试一次。" -#: frappe/public/js/frappe/views/communication.js:837 +#: frappe/public/js/frappe/views/communication.js:840 msgid "There were errors while sending email. Please try again." -msgstr "发送邮件时出错。请重试。" +msgstr "邮件发送失败,请重试。" #: frappe/model/naming.py:494 msgid "There were some errors setting the name, please contact the administrator" -msgstr "设置名称时出错,请联系管理员" +msgstr "设置名称时出现错误,请与管理员联系" #. Description of the 'Announcement Widget' (Text Editor) field in DocType #. 'Navbar Settings' @@ -26071,6 +26262,12 @@ msgstr "设置名称时出错,请联系管理员" msgid "These announcements will appear inside a dismissible alert below the Navbar." msgstr "这些公告将显示在导航栏下方可关闭的提示框中。" +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + #. Description of the 'LDAP Custom Settings' (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -26080,7 +26277,7 @@ msgstr "使用“自定义”LDAP目录时需配置这些设置" #. Description of the 'Defaults' (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." -msgstr "这些值将在事务中自动更新,并可用于限制该用户对包含这些值的事务的权限。" +msgstr "这些值将在交易中自动更新,也将是有益的权限限制在含有这些值交易这个用户。" #: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" @@ -26094,11 +26291,11 @@ msgstr "第三方认证" #: frappe/geo/doctype/currency/currency.js:8 msgid "This Currency is disabled. Enable to use in transactions" -msgstr "此货币已禁用。启用后方可用于交易" +msgstr "该货币已被禁用,请启用以便能在业务交易中使用" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:390 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 msgid "This Kanban Board will be private" -msgstr "此看板将设为私有" +msgstr "此看板只适用于本帐号" #: frappe/public/js/frappe/ui/filters/filter.js:666 msgid "This Month" @@ -26106,7 +26303,7 @@ msgstr "本月" #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" -msgstr "本季度" +msgstr "本季" #: frappe/public/js/frappe/ui/filters/filter.js:662 msgid "This Week" @@ -26120,24 +26317,24 @@ msgstr "本年" msgid "This action is irreversible. Do you wish to continue?" msgstr "此操作不可逆。是否继续?" -#: frappe/__init__.py:757 +#: frappe/__init__.py:546 msgid "This action is only allowed for {}" msgstr "此操作仅允许{}执行" #: frappe/public/js/frappe/form/toolbar.js:117 #: frappe/public/js/frappe/model/model.js:706 msgid "This cannot be undone" -msgstr "此操作不可撤销" +msgstr "不可撤销" #. Description of the 'Is Public' (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "This card will be available to all Users if this is set" -msgstr "设置后此卡片将对所有用户可见" +msgstr "如勾选,所有用户均可查看此数字卡" #. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "This chart will be available to all Users if this is set" -msgstr "设置后此图表将对所有用户可见" +msgstr "如勾选,所有用户可查看此统计图表" #: frappe/custom/doctype/customize_form/customize_form.js:212 msgid "This doctype has no orphan fields to trim" @@ -26147,13 +26344,13 @@ msgstr "此文档类型无孤立字段需清理" msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "此文档类型有待执行迁移,修改前请运行'bench migrate'以避免丢失更改。" -#: frappe/model/delete_doc.py:112 +#: frappe/model/delete_doc.py:113 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "此文档正被其他用户修改,暂时无法删除。请稍后重试。" #: frappe/www/confirm_workflow_action.html:8 msgid "This document has been modified after the email was sent." -msgstr "此文档在邮件发送后已被修改。" +msgstr "发电子邮件后,此单据已被修改。" #: frappe/public/js/frappe/form/form.js:1305 msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." @@ -26163,13 +26360,13 @@ msgstr "此文档存在未保存更改,可能不会反映在最终PDF中。
\n" +"eval:doc.myfield=='my value'\n" +"案例2:年龄大于18
\n" "eval:doc.age>18" #: frappe/core/doctype/file/file.py:500 @@ -26203,20 +26400,20 @@ msgstr "本文件为公开文件,无需登录即可访问。请设为私有以 #: frappe/core/doctype/file/file.js:20 msgid "This file is public. It can be accessed without authentication." -msgstr "此文件为公开文件,无需认证即可访问。" +msgstr "此为公开文件,用户无需登录即可访问" #: frappe/public/js/frappe/form/form.js:1199 msgid "This form has been modified after you have loaded it" -msgstr "此表单在您加载后已被修改" +msgstr "重新加载后表单就已被修改," #: frappe/public/js/frappe/form/form.js:2257 msgid "This form is not editable due to a Workflow." -msgstr "由于工作流限制,此表单不可编辑。" +msgstr "此表单因工作流状态不能被编辑。" #. Description of the 'Is Default' (Check) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json msgid "This format is used if country specific format is not found" -msgstr "未找到国家特定格式时使用此格式" +msgstr "此格式用于如果找不到特定国家的格式" #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 msgid "This geolocation provider is not supported yet." @@ -26226,31 +26423,31 @@ msgstr "暂不支持此地理位置服务提供商。" #. Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "This goes above the slideshow." -msgstr "此内容显示在幻灯片上方。" +msgstr "在幻灯片上面。" -#: frappe/public/js/frappe/views/reports/query_report.js:2128 +#: frappe/public/js/frappe/views/reports/query_report.js:2178 msgid "This is a background report. Please set the appropriate filters and then generate a new one." -msgstr "此为后台报告。请设置合适筛选条件后生成新报告。" +msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" #: frappe/utils/password_strength.py:158 msgid "This is a top-10 common password." -msgstr "此为前10常见密码。" +msgstr "这是一个前10名的常用密码。" #: frappe/utils/password_strength.py:160 msgid "This is a top-100 common password." -msgstr "此为前100常见密码。" +msgstr "这是一个前100名的常用密码。" #: frappe/utils/password_strength.py:162 msgid "This is a very common password." -msgstr "此为非常常见的密码。" +msgstr "这是一个非常普遍的密码。" #: frappe/core/doctype/rq_job/rq_job.js:9 msgid "This is a virtual doctype and data is cleared periodically." -msgstr "此为虚拟文档类型,数据定期清除。" +msgstr "这是个虚拟单据,数据会被定期清理" #: frappe/templates/emails/auto_reply.html:5 msgid "This is an automatically generated reply" -msgstr "此为自动生成的回复" +msgstr "这是一个自动生成的回复" #. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog #. Post' @@ -26260,53 +26457,45 @@ msgstr "此为Google搜索结果页预览示例。" #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." -msgstr "此密码与常用密码相似。" +msgstr "这类似于一个通常使用的密码。" #. Description of the 'Current Value' (Int) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "This is the number of the last created transaction with this prefix" -msgstr "此为使用此前缀最后创建的事务编号" +msgstr "此流水号段(前缀)的当前流水号" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 msgid "This link has already been activated for verification." -msgstr "此链接已验证激活。" +msgstr "此链接已激活以进行验证。" #: frappe/utils/verified_command.py:49 msgid "This link is invalid or expired. Please make sure you have pasted correctly." -msgstr "此链接无效或已过期。请确认粘贴正确。" +msgstr "此链接是无效或过期。请确保你已经正确粘贴。" #: frappe/printing/page/print/print.js:410 msgid "This may get printed on multiple pages" -msgstr "可能分多页打印" +msgstr "可能会打印多页" #: frappe/utils/goal.py:109 msgid "This month" -msgstr "本月" +msgstr "这个月" -#: frappe/email/doctype/newsletter/newsletter.js:223 -msgid "This newsletter is scheduled to be sent on {0}" -msgstr "此简讯计划于{0}发送" - -#: frappe/email/doctype/newsletter/newsletter.js:50 -msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?" -msgstr "此简讯原计划稍后发送。确定要立即发送吗?" - -#: frappe/public/js/frappe/views/reports/query_report.js:1035 +#: frappe/public/js/frappe/views/reports/query_report.js:1036 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。" #: frappe/templates/emails/auto_email_report.html:57 msgid "This report was generated on {0}" -msgstr "此报告生成于{0}" +msgstr "此报表是在{0}上生成的" -#: frappe/public/js/frappe/views/reports/query_report.js:851 +#: frappe/public/js/frappe/views/reports/query_report.js:852 msgid "This report was generated {0}." -msgstr "此报告生成于{0}。" +msgstr "报表{0}已生成。" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." -msgstr "此请求尚未获得用户批准。" +msgstr "此请求尚未得到用户的批准。" #: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." @@ -26314,7 +26503,7 @@ msgstr "此站点处于只读模式,完整功能将尽快恢复。" #: frappe/core/doctype/doctype/doctype.js:73 msgid "This site is running in developer mode. Any change made here will be updated in code." -msgstr "此站点运行于开发者模式,此处修改将同步至代码。" +msgstr "本站点已设置开发者模式参数,单据修改会同步到代码中" #: frappe/www/attribution.html:11 msgid "This software is built on top of many open source packages." @@ -26352,11 +26541,11 @@ msgstr "路由至报告后将以对话框形式向用户显示" #: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" -msgstr "这将注销{0}在其他所有设备上的登录" +msgstr "这将从所有其他设备注销{0}" #: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." -msgstr "此操作将永久删除您的数据。" +msgstr "这将彻底删除您的数据。" #: frappe/desk/doctype/form_tour/form_tour.js:103 msgid "This will reset this tour and show it to all users. Are you sure?" @@ -26366,14 +26555,14 @@ msgstr "将重置此导览并向所有用户显示。是否继续?" msgid "This will terminate the job immediately and might be dangerous, are you sure? " msgstr "将立即终止任务,此操作可能危险,是否继续?" -#: frappe/core/doctype/user/user.py:1242 +#: frappe/core/doctype/user/user.py:1246 msgid "Throttled" -msgstr "已限流" +msgstr "节流" #. Label of the thumbnail_url (Small Text) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Thumbnail URL" -msgstr "缩略图URL" +msgstr "缩略图网址" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -26404,7 +26593,6 @@ msgstr "星期四" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/email/doctype/newsletter/newsletter.js:118 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Time" msgstr "时间" @@ -26429,17 +26617,17 @@ msgstr "时间序列" #. Label of the based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Time Series Based On" -msgstr "时间序列基准" +msgstr "时间跨度字段" #. Label of the time_taken (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Time Taken" -msgstr "耗时" +msgstr "运行时间" #. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Time Window (Seconds)" -msgstr "时间窗口(秒)" +msgstr "时间(秒)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' @@ -26454,7 +26642,7 @@ msgstr "时区" #. Label of the time_zones (Text) field in DocType 'Country' #: frappe/geo/doctype/country/country.json msgid "Time Zones" -msgstr "时区集" +msgstr "时区" #. Label of the time_format (Data) field in DocType 'Country' #: frappe/geo/doctype/country/country.json @@ -26464,17 +26652,17 @@ msgstr "时间格式" #. Label of the time_in_queries (Float) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Time in Queries" -msgstr "查询耗时" +msgstr "查询执行时长" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Time in seconds to retain QR code image on server. Min:240" -msgstr "二维码图片在服务器保留时间(秒)。最小值:240" +msgstr "在服务器上保留QR码图像的秒数。最小: 240" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 msgid "Time series based on is required to create a dashboard chart" -msgstr "创建仪表板图表需指定时间序列基准" +msgstr "创建统计图表需定义时间跨度字段" #: frappe/public/js/frappe/form/controls/time.js:124 msgid "Time {0} must be in format: {1}" @@ -26492,37 +26680,37 @@ msgstr "永恒之夜主题" #. Label of the timeline (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Timeline" -msgstr "时间轴" +msgstr "日志记录" #. Label of the timeline_doctype (Link) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline DocType" -msgstr "时间轴文档类型" +msgstr "日志单据类型" #. Label of the timeline_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Timeline Field" -msgstr "时间轴字段" +msgstr "时间线字段" #. Label of the timeline_links_sections (Section Break) field in DocType #. 'Communication' #. Label of the timeline_links (Table) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Timeline Links" -msgstr "时间轴链接" +msgstr "时间线链接" #. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline Name" -msgstr "时间轴名称" +msgstr "时间线名称" #: frappe/core/doctype/doctype/doctype.py:1538 msgid "Timeline field must be a Link or Dynamic Link" -msgstr "时间轴字段必须是链接或动态链接类型" +msgstr "时间线字段必须是一个链接或动态链接" #: frappe/core/doctype/doctype/doctype.py:1534 msgid "Timeline field must be a valid fieldname" -msgstr "时间轴字段必须是有效字段名" +msgstr "时间线字段必须是有效的字段名" #. Label of the timeout (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -26543,7 +26731,7 @@ msgstr "时间序列" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:28 msgid "Timespan" -msgstr "时间段" +msgstr "时间跨度" #. Label of the timestamp (Datetime) field in DocType 'Access Log' #. Label of the timestamp (Datetime) field in DocType 'Transaction Log' @@ -26623,42 +26811,40 @@ msgstr "标题前缀" #: frappe/core/doctype/doctype/doctype.py:1475 msgid "Title field must be a valid fieldname" -msgstr "标题字段必须是有效字段名" +msgstr "标题字段必须是有效的字段名" #: frappe/website/doctype/web_page/web_page.js:70 msgid "Title of the page" msgstr "页面标题" #. Label of the recipients (Code) field in DocType 'Communication' -#. Label of the recipients (Section Break) field in DocType 'Newsletter' #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/permission_log/permission_log.js:12 -#: frappe/email/doctype/newsletter/newsletter.json #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" -msgstr "至" +msgstr "收件人" #: frappe/public/js/frappe/views/communication.js:53 msgctxt "Email Recipients" msgid "To" -msgstr "至" +msgstr "收件人" #. Label of the to_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/website/report/website_analytics/website_analytics.js:14 msgid "To Date" -msgstr "截至日期" +msgstr "结束日期" #. Label of the to_date_field (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To Date Field" -msgstr "截至日期字段" +msgstr "截止日期字段" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "待办事项" +msgstr "待办" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -26671,8 +26857,8 @@ msgstr "要添加动态主题,请使用 jinja 标签,如\n\n" #: frappe/email/doctype/notification/notification.json msgid "To add dynamic subject, use jinja tags like\n\n" "
{{ doc.name }} Delivered
" -msgstr "要添加动态主题,请使用 jinja 标签,如\n\n" -"
{{ doc.name }} Delivered
" +msgstr "要在主题中增加动态内容, 可使用 jinja 变量/标签,比如\n\n" +"
{{ doc.name }} 已发货
" #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -26687,7 +26873,7 @@ msgstr "要从文档添加动态值,请使用 jinja 标签,如\n\n" "\n" "" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:107 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." msgstr "要在系统设置中调整报表数量限制以允许更多报表" @@ -26701,11 +26887,11 @@ msgstr "收件人和抄送" #. Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." -msgstr "日期范围起始于所选周期的开始。例如选择'年'作为周期时,报表将从当前年度1月1日开始" +msgstr "例如期间为年,则为当年1月1号" #: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." -msgstr "要配置自动重复,请从{0}启用“允许自动重复”。" +msgstr "要配置自动重复,请为单据类型{0}启用\"\"允许自动重复\"\"" #: frappe/www/login.html:76 msgid "To enable it follow the instructions in the following link: {0}" @@ -26723,9 +26909,9 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存" msgid "To generate password click {0}" msgstr "生成密码请点击{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:853 msgid "To get the updated report, click on {0}." -msgstr "获取更新后的报表请点击{0}" +msgstr "要获取已更新报表,请单击{0}。" #: frappe/email/doctype/email_account/email_account.js:139 msgid "To know more click {0}" @@ -26734,7 +26920,7 @@ msgstr "了解更多请点击{0}" #. Description of the 'Console' (Code) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "To print output use print(text)" -msgstr "输出内容请使用print(text)" +msgstr "可调用print输出结果" #: frappe/core/doctype/user_type/user_type.py:291 msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." @@ -26761,7 +26947,7 @@ msgstr "要使用 Slack Channel,请添加 \n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" -msgstr "跟踪您的电子邮件是否已被收件人打开。\n" +msgstr "追踪收件人是否打开邮件.\n" "
\n" -"注意:如果您向多个收件人发送邮件,即使只有一个收件人阅读了电子邮件,也会被视为“已打开”" +"注: 如发给多人,其中一个打开邮件都会被标记为\"打开过\"" #. Description of a DocType #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Track milestones for any document" -msgstr "跟踪任意文档的里程碑" +msgstr "跟踪任何单据的里程碑" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Tracking" -msgstr "跟踪" +msgstr "进度追踪" -#: frappe/public/js/frappe/utils/utils.js:1781 +#: frappe/public/js/frappe/utils/utils.js:1784 msgid "Tracking URL generated and copied to clipboard" msgstr "跟踪URL已生成并复制到剪贴板" @@ -27062,17 +27241,17 @@ msgstr "跟踪URL已生成并复制到剪贴板" #. Log' #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Hash" -msgstr "交易哈希" +msgstr "事务哈希" #. Name of a DocType #: frappe/core/doctype/transaction_log/transaction_log.json msgid "Transaction Log" -msgstr "交易日志" +msgstr "事务日志" #. Name of a report #: frappe/core/report/transaction_log_report/transaction_log_report.json msgid "Transaction Log Report" -msgstr "交易日志报表" +msgstr "事务日志报表" #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" @@ -27080,17 +27259,17 @@ msgstr "跨性别者" #: frappe/public/js/workflow_builder/components/Properties.vue:19 msgid "Transition Properties" -msgstr "转换属性" +msgstr "状态转换属性" #. Label of the transition_rules (Section Break) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transition Rules" -msgstr "转换规则" +msgstr "状态转换规则" #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "转换" +msgstr "状态转换" #. Label of the translatable (Check) field in DocType 'DocField' #. Label of the translatable (Check) field in DocType 'Custom Field' @@ -27101,7 +27280,7 @@ msgstr "转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2183 +#: frappe/public/js/frappe/views/reports/query_report.js:2233 msgid "Translate Data" msgstr "翻译数据" @@ -27123,7 +27302,7 @@ msgstr "翻译{0}" #. Label of the translated_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "已翻译文本" +msgstr "翻译文本" #. Name of a DocType #: frappe/core/doctype/translation/translation.json @@ -27132,28 +27311,33 @@ msgstr "翻译" #: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" -msgstr "翻译项" +msgstr "翻译" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Trash" -msgstr "回收站" +msgstr "垃圾" #. Option for the 'View' (Select) field in DocType 'Form Tour' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Tree" -msgstr "树形结构" +msgstr "树" #: frappe/public/js/frappe/list/base_list.js:210 msgid "Tree View" -msgstr "树形视图" +msgstr "树视图" #. Description of the 'Is Tree' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Tree structures are implemented using Nested Set" -msgstr "树形结构采用嵌套集实现" +msgstr "树形结构是一种多层结构" #: frappe/public/js/frappe/views/treeview.js:19 msgid "Tree view is not available for {0}" @@ -27175,7 +27359,7 @@ msgstr "触发缓存" #. Description of the 'Trigger Method' (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" -msgstr "触发有效方法,如“before_insert”、“after_update”等(取决于所选的 DocType)" +msgstr "在有效的方法如:“before_insert”,“after_update”触发(取决于所选的单据类型)" #: frappe/custom/doctype/customize_form/customize_form.js:144 msgid "Trim Table" @@ -27189,7 +27373,7 @@ msgstr "重试" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" -msgstr "尝试命名系列" +msgstr "单据编号模板预览" #: frappe/printing/page/print/print.js:189 #: frappe/printing/page/print/print.js:195 @@ -27198,11 +27382,11 @@ msgstr "试用新版打印设计器" #: frappe/utils/password_strength.py:106 msgid "Try to avoid repeated words and characters" -msgstr "避免重复单词和字符" +msgstr "尽量避免重复的单词和字符" #: frappe/utils/password_strength.py:98 msgid "Try to use a longer keyboard pattern with more turns" -msgstr "使用更长且更多转折的键盘组合" +msgstr "尝试使用更多的匝数较长的键盘模式" #. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' #. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' @@ -27226,12 +27410,12 @@ msgstr "星期二" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication" -msgstr "双因素认证" +msgstr "双重验证" #. Label of the two_factor_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication method" -msgstr "双因素认证方法" +msgstr "双重验证方法" #. Label of the communication_medium (Select) field in DocType 'Communication' #. Label of the fieldtype (Select) field in DocType 'DocField' @@ -27268,11 +27452,11 @@ msgstr "类型" #: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" -msgstr "输入回复/评论" +msgstr "输入回复或评论" #: frappe/templates/includes/search_template.html:51 msgid "Type something in the search box to search" -msgstr "在搜索框中输入内容进行搜索" +msgstr "在搜索框中输入一些文字开始搜索" #: frappe/templates/discussions/comment_box.html:8 #: frappe/templates/discussions/reply_section.html:53 @@ -27302,26 +27486,26 @@ msgstr "界面导览" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "UID" -msgstr "唯一标识符" +msgstr "UID" #. Label of the uidnext (Int) field in DocType 'Email Account' #. Label of the uidnext (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "下一个UID" +msgstr "UIDNEXT" #. Label of the uidvalidity (Data) field in DocType 'Email Account' #. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDVALIDITY" -msgstr "UID有效性" +msgstr "UIDVALIDITY" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "UNSEEN" -msgstr "未读" +msgstr "反转已查看" #. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -27345,44 +27529,76 @@ msgstr "用户允许访问后接收授权代码的 URI,以及失败响应。 #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "URL" +msgstr "网址" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" -msgstr "文档或帮助的URL" +msgstr "在线帮助网址" #: frappe/core/doctype/file/file.py:219 msgid "URL must start with http:// or https://" msgstr "URL必须以http://或https://开头" +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + #: frappe/website/doctype/web_page/web_page.js:84 msgid "URL of the page" msgstr "页面URL" +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + #. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL to go to on clicking the slideshow image" msgstr "点击轮播图片后跳转的URL" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_campaign/utm_campaign.json -#: frappe/website/workspace/website/website.json msgid "UTM Campaign" msgstr "UTM活动" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_medium/utm_medium.json -#: frappe/website/workspace/website/website.json msgid "UTM Medium" msgstr "UTM媒介" #. Name of a DocType -#. Label of a Link in the Website Workspace #: frappe/website/doctype/utm_source/utm_source.json -#: frappe/website/workspace/website/website.json msgid "UTM Source" msgstr "UTM来源" @@ -27397,25 +27613,25 @@ msgstr "取消关注文档{0}" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 msgid "Unable to find DocType {0}" -msgstr "找不到文档类型{0}" +msgstr "无法找到DocType {0}" #: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." -msgstr "无法加载摄像头" +msgstr "无法加载相机。" #: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" -msgstr "无法加载:{0}" +msgstr "无法加载: {0}" #: frappe/utils/csvutils.py:37 msgid "Unable to open attached file. Did you export it as CSV?" -msgstr "无法打开附件,是否以CSV格式导出?" +msgstr "无法打开附件单据,您确认导出文件并存为了CSV格式?" #: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 msgid "Unable to read file format for {0}" msgstr "无法读取{0}的文件格式" -#: frappe/core/doctype/communication/email.py:179 +#: frappe/core/doctype/communication/email.py:180 msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" msgstr "缺少邮箱账户无法发送邮件,请通过设置>邮箱账户配置默认账户" @@ -27430,9 +27646,9 @@ msgstr "无法写入{0}的文件格式" #. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Unassign Condition" -msgstr "取消分配条件" +msgstr "取消分派条件" -#: frappe/app.py:376 +#: frappe/app.py:396 msgid "Uncaught Exception" msgstr "未捕获异常" @@ -27440,23 +27656,27 @@ msgstr "未捕获异常" msgid "Unchanged" msgstr "未变更" -#: frappe/public/js/frappe/form/toolbar.js:515 +#: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" msgstr "撤销" -#: frappe/public/js/frappe/form/toolbar.js:523 +#: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "撤销上一步操作" +#: frappe/database/query.py:1495 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + #: frappe/public/js/frappe/form/templates/form_sidebar.html:109 -#: frappe/public/js/frappe/form/toolbar.js:876 +#: frappe/public/js/frappe/form/toolbar.js:879 msgid "Unfollow" msgstr "取消关注" #. Name of a DocType #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "Unhandled Email" -msgstr "未处理邮件" +msgstr "未处理的邮件" #. Label of the unhandled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -27472,15 +27692,22 @@ msgstr "未处理邮件" msgid "Unique" msgstr "唯一" +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + #: frappe/website/report/website_analytics/website_analytics.js:60 msgid "Unknown" msgstr "未知" #: frappe/public/js/frappe/model/model.js:209 msgid "Unknown Column: {0}" -msgstr "未知列:{0}" +msgstr "未知列: {0}" -#: frappe/utils/data.py:1246 +#: frappe/utils/data.py:1256 msgid "Unknown Rounding Method: {}" msgstr "未知舍入方法:{}" @@ -27511,7 +27738,7 @@ msgstr "未读" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Unread Notification Sent" -msgstr "已发送未读通知" +msgstr "未读发送通知" #: frappe/utils/safe_exec.py:496 msgid "Unsafe SQL query" @@ -27520,14 +27747,14 @@ msgstr "不安全的SQL查询" #: frappe/public/js/frappe/data_import/data_exporter.js:159 #: frappe/public/js/frappe/form/controls/multicheck.js:166 msgid "Unselect All" -msgstr "取消全选" +msgstr "全部不选" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Unshared" -msgstr "取消共享" +msgstr "非分享" -#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32 +#: frappe/email/queue.py:67 msgid "Unsubscribe" msgstr "退订" @@ -27547,10 +27774,15 @@ msgstr "退订参数" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json #: frappe/email/doctype/email_group_member/email_group_member.json -#: frappe/email/queue.py:122 +#: frappe/email/queue.py:123 msgid "Unsubscribed" msgstr "已退订" +#: frappe/database/query.py:653 frappe/database/query.py:1387 +#: frappe/database/query.py:1397 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + #: frappe/public/js/frappe/data_import/import_preview.js:72 msgid "Untitled Column" msgstr "未命名列" @@ -27561,15 +27793,15 @@ msgstr "解压缩" #: frappe/public/js/frappe/views/file/file_view.js:132 msgid "Unzipped {0} files" -msgstr "已解压{0}个文件" +msgstr "解压缩{0}个文件" #: frappe/public/js/frappe/views/file/file_view.js:125 msgid "Unzipping files..." -msgstr "正在解压文件..." +msgstr "解压缩文件..." #: frappe/desk/doctype/event/event.py:269 msgid "Upcoming Events for Today" -msgstr "今日即将发生事件" +msgstr "今日活动" #. Label of the update (Button) field in DocType 'Document Naming Settings' #: frappe/core/doctype/data_import/data_import_list.js:36 @@ -27589,7 +27821,7 @@ msgstr "更新" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "更新修订命名" +msgstr "更新修订后单据编号方式" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -27605,7 +27837,7 @@ msgstr "更新字段" #: frappe/core/doctype/installed_applications/installed_applications.js:6 #: frappe/core/doctype/installed_applications/installed_applications.js:13 msgid "Update Hooks Resolution Order" -msgstr "更新钩子解析顺序" +msgstr "更新应用钩子解析顺序" #: frappe/core/doctype/installed_applications/installed_applications.js:45 msgid "Update Order" @@ -27619,13 +27851,13 @@ msgstr "更新密码" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "更新序列计数器" +msgstr "更新模板当前流水号" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Number" -msgstr "更新序列号" +msgstr "更新单据编号模板" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -27649,7 +27881,7 @@ msgstr "从Frappe云更新" #: frappe/public/js/frappe/list/bulk_operations.js:375 msgid "Update {0} records" -msgstr "更新{0}条记录" +msgstr "更新{0}个单据" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Option for the 'Status' (Select) field in DocType 'Permission Log' @@ -27673,9 +27905,9 @@ msgstr "已更新至新版本🎉" msgid "Updated successfully" msgstr "更新成功" -#: frappe/utils/response.py:330 +#: frappe/utils/response.py:337 msgid "Updating" -msgstr "更新中" +msgstr "更新" #: frappe/public/js/frappe/form/save.js:11 msgctxt "Freeze message while updating a document" @@ -27684,11 +27916,11 @@ msgstr "更新中" #: frappe/email/doctype/email_queue/email_queue_list.js:49 msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." -msgstr "正在更新邮件队列状态,邮件将在下次定时任务中处理" +msgstr "更新邮件队列状态中...,邮件将在下一次定时执行的邮件发送任务中发出" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 msgid "Updating counter may lead to document name conflicts if not done properly" -msgstr "不当更新计数器可能导致文档名称冲突" +msgstr "更新不当会导致新单据与现有单据重复,不能保存" #: frappe/desk/page/setup_wizard/setup_wizard.py:23 msgid "Updating global settings" @@ -27704,11 +27936,11 @@ msgstr "正在更新相关字段..." #: frappe/desk/doctype/bulk_update/bulk_update.py:95 msgid "Updating {0}" -msgstr "正在更新{0}" +msgstr "更新{0}" #: frappe/core/doctype/data_import/data_import.js:36 msgid "Updating {0} of {1}, {2}" -msgstr "正在更新{1}的{0},{2}" +msgstr "上传中 {0} / {1} {2}" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" @@ -27735,12 +27967,12 @@ msgstr "上传文件" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 msgid "Upload {0} files" -msgstr "上传{0}个文件" +msgstr "上传了{0}份文件" #. Label of the uploaded_to_dropbox (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Dropbox" -msgstr "已上传至Dropbox" +msgstr "上传到Dropbox" #. Label of the uploaded_to_google_drive (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -27757,13 +27989,13 @@ msgstr "使用%表示任何非空值" #. Label of the ascii_encode_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use ASCII encoding for password" -msgstr "密码使用ASCII编码" +msgstr "使用ASCII编码作为密码" #. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Use First Day of Period" -msgstr "使用周期首日" +msgstr "所选期间的第一天" #. Label of the use_html (Check) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json @@ -27786,7 +28018,7 @@ msgstr "使用货币的数字格式" #. Label of the use_post (Check) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Use POST" -msgstr "使用POST方法" +msgstr "使用POST" #. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -27807,7 +28039,7 @@ msgstr "使用SSL" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" -msgstr "使用STARTTLS" +msgstr "使用TLS" #. Label of the use_tls (Check) field in DocType 'Email Account' #. Label of the use_tls (Check) field in DocType 'Email Domain' @@ -27818,12 +28050,12 @@ msgstr "使用TLS" #: frappe/utils/password_strength.py:44 msgid "Use a few words, avoid common phrases." -msgstr "使用少量单词,避免常见短语" +msgstr "用几个字,避免常用短语。" #. Label of the login_id_is_different (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Use different Email ID" -msgstr "使用不同邮箱ID" +msgstr "使用别的邮箱账号" #. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -27836,16 +28068,16 @@ msgstr "字段中函数{0}的使用受限" #: frappe/model/db_query.py:412 msgid "Use of sub-query or function is restricted" -msgstr "子查询或函数的使用受限" +msgstr "子查询或函数的使用受到限制" #: frappe/printing/page/print/print.js:279 msgid "Use the new Print Format Builder" -msgstr "使用新版打印格式构建器" +msgstr "启用新打印格式编辑器" #. Description of the 'Title Field' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Use this fieldname to generate title" -msgstr "使用此字段名生成标题" +msgstr "使用该字段名来生成标题" #. Description of the 'Always BCC Address' (Data) field in DocType 'Email #. Account' @@ -27856,7 +28088,7 @@ msgstr "例如,若需将所有发送邮件同时存档可使用此选项" #. Label of the used_oauth (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" -msgstr "已使用OAuth" +msgstr "启用OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' #. Label of the user (Link) field in DocType 'Reminder' @@ -27924,7 +28156,7 @@ msgstr "用户 " #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" -msgstr "用户'{0}'已拥有角色'{1}'" +msgstr "用户“{0}”已经被分派了角色“{1}”" #. Name of a DocType #: frappe/core/doctype/report/user_activity_report.json @@ -27944,26 +28176,26 @@ msgstr "用户代理" #. Label of the in_create (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Create" -msgstr "用户不可创建" +msgstr "用户无法创建" #. Label of the read_only (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "User Cannot Search" -msgstr "用户不可搜索" +msgstr "用户不能搜索" -#: frappe/public/js/frappe/desk.js:554 +#: frappe/public/js/frappe/desk.js:556 msgid "User Changed" -msgstr "用户已变更" +msgstr "用户账号已变更" #. Label of the defaults (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "用户默认值" +msgstr "用户默认" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Details" -msgstr "用户详情" +msgstr "用户详细信息" #. Name of a report #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json @@ -27973,7 +28205,7 @@ msgstr "用户文档类型权限" #. Name of a DocType #: frappe/core/doctype/user_document_type/user_document_type.json msgid "User Document Type" -msgstr "用户文档类型" +msgstr "用户单据类型" #: frappe/core/doctype/user_type/user_type.py:98 msgid "User Document Types Limit Exceeded" @@ -27982,12 +28214,12 @@ msgstr "用户文档类型数量超限" #. Name of a DocType #: frappe/core/doctype/user_email/user_email.json msgid "User Email" -msgstr "用户邮箱" +msgstr "用户电子邮件" #. Label of the user_emails (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Emails" -msgstr "用户邮件" +msgstr "用户电子邮箱" #. Name of a DocType #: frappe/core/doctype/user_group/user_group.json @@ -28008,7 +28240,7 @@ msgstr "用户组成员" #. Label of the userid (Data) field in DocType 'User Social Login' #: frappe/core/doctype/user_social_login/user_social_login.json msgid "User ID" -msgstr "用户ID" +msgstr "用户帐号" #. Label of the user_id_property (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -28018,17 +28250,17 @@ msgstr "用户ID属性" #. Description of a DocType #: frappe/website/doctype/blogger/blogger.json msgid "User ID of a Blogger" -msgstr "博主用户ID" +msgstr "博客作者的用户ID" #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" -msgstr "用户ID" +msgstr "用户账号" #. Label of the user_id_field (Select) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "User Id Field" -msgstr "用户ID字段" +msgstr "用户链接字段" #: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" @@ -28037,7 +28269,7 @@ msgstr "用户类型{0}中用户ID字段为必填项" #. Label of the user_image (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Image" -msgstr "用户头像" +msgstr "用户图片" #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" @@ -28052,24 +28284,24 @@ msgstr "用户名" #. Name of a DocType #: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" -msgstr "用户权限" +msgstr "用户权限限制" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1883 +#: frappe/public/js/frappe/views/reports/query_report.js:1933 #: frappe/public/js/frappe/views/reports/report_view.js:1752 msgid "User Permissions" -msgstr "用户权限" +msgstr "用户权限限制" -#: frappe/public/js/frappe/list/list_view.js:1777 +#: frappe/public/js/frappe/list/list_view.js:1775 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "用户权限" #: frappe/core/page/permission_manager/permission_manager_help.html:32 msgid "User Permissions are used to limit users to specific records." -msgstr "用户权限用于限制用户访问特定记录" +msgstr "用户权限限制用于过滤出允许用户访问的单据。" #: frappe/core/doctype/user_permission/user_permission_list.js:124 msgid "User Permissions created successfully" @@ -28088,7 +28320,7 @@ msgstr "用户角色配置文件" #. Name of a DocType #: frappe/core/doctype/user_select_document_type/user_select_document_type.json msgid "User Select Document Type" -msgstr "用户选择文档类型" +msgstr "用户选择单据类型" #. Label of a standard navbar item #. Type: Action @@ -28125,13 +28357,13 @@ msgstr "用户类型模块" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or Mobile number" -msgstr "用户可使用邮箱或手机号登录" +msgstr "用户可以使用电子邮件ID或手机号登录" #. Description of the 'Allow Login using User Name' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "User can login using Email id or User Name" -msgstr "用户可使用邮箱或用户名登录" +msgstr "用户可以使用电子邮件ID或用户名登录" #: frappe/templates/includes/login/login.js:292 msgid "User does not exist." @@ -28143,7 +28375,7 @@ msgstr "用户无权创建新{0}" #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" -msgstr "共享必须指定用户" +msgstr "请选择要分享的用户" #. Label of the user_must_always_select (Check) field in DocType 'Document #. Naming Settings' @@ -28153,7 +28385,7 @@ msgstr "用户必须选择" #: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" -msgstr "用户权限已存在" +msgstr "用户权限限制已经存在" #: frappe/www/login.py:171 msgid "User with email address {0} does not exist" @@ -28163,25 +28395,25 @@ msgstr "邮箱地址为{0}的用户不存在" msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." msgstr "系统中不存在邮箱为{0}的用户,请联系系统管理员创建" -#: frappe/core/doctype/user/user.py:537 +#: frappe/core/doctype/user/user.py:538 msgid "User {0} cannot be deleted" -msgstr "用户{0}不可删除" +msgstr "用户{0}不能被删除" -#: frappe/core/doctype/user/user.py:327 +#: frappe/core/doctype/user/user.py:328 msgid "User {0} cannot be disabled" -msgstr "用户{0}不可禁用" +msgstr "用户{0}不能被禁用" -#: frappe/core/doctype/user/user.py:603 +#: frappe/core/doctype/user/user.py:604 msgid "User {0} cannot be renamed" -msgstr "用户{0}不可重命名" +msgstr "不允许变更用户名{0}" #: frappe/permissions.py:139 msgid "User {0} does not have access to this document" -msgstr "用户{0}无权访问此文档" +msgstr "用户{0}无权访问此单据" #: frappe/permissions.py:162 msgid "User {0} does not have doctype access via role permission for document {1}" -msgstr "用户{0}通过角色权限无权访问文档{1}的类型" +msgstr "角色权限管理中未授权用户 {0} 访问 {1}" #: frappe/desk/doctype/workspace/workspace.py:275 msgid "User {0} does not have the permission to create a Workspace." @@ -28192,9 +28424,9 @@ msgstr "用户{0}无权创建工作区" msgid "User {0} has requested for data deletion" msgstr "用户{0}已请求数据删除" -#: frappe/core/doctype/user/user.py:1371 +#: frappe/core/doctype/user/user.py:1375 msgid "User {0} impersonated as {1}" -msgstr "用户{0}已模拟为{1}" +msgstr "用户 {0} 以 {1} 身份登录" #: frappe/utils/oauth.py:269 msgid "User {0} is disabled" @@ -28221,7 +28453,7 @@ msgstr "用户信息URI" msgid "Username" msgstr "用户名" -#: frappe/core/doctype/user/user.py:689 +#: frappe/core/doctype/user/user.py:693 msgid "Username {0} already exists" msgstr "用户名{0}已存在" @@ -28234,7 +28466,7 @@ msgstr "用户名{0}已存在" #: frappe/core/workspace/users/users.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Users" -msgstr "用户列表" +msgstr "用户" #. Description of the 'Protect Attached Files' (Check) field in DocType #. 'DocType' @@ -28243,11 +28475,11 @@ msgstr "用户列表" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." -msgstr "用户仅可在文档处于草稿状态或文档已取消时删除附件,且需具备删除文档的权限。" +msgstr "仅限用户有单据删除权限且单据在草稿或已取消状态下删除上传的附件" #: frappe/core/page/permission_manager/permission_manager.js:355 msgid "Users with role {0}:" -msgstr "拥有{0}角色的用户:" +msgstr "被分派了角色{0}的用户:" #: frappe/public/js/frappe/ui/theme_switcher.js:70 msgid "Uses system's theme to switch between light and dark mode" @@ -28266,7 +28498,7 @@ msgstr "利用率" #. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Utilization %" -msgstr "利用率百分比" +msgstr "利用率%" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' @@ -28277,11 +28509,11 @@ msgstr "有效" #: frappe/templates/includes/login/login.js:52 #: frappe/templates/includes/login/login.js:65 msgid "Valid Login id required." -msgstr "需要有效的登录ID" +msgstr "请输入有效的登录ID。" #: frappe/templates/includes/login/login.js:39 msgid "Valid email and name required" -msgstr "需要有效的邮箱和姓名" +msgstr "需要有效的电子邮件和姓名" #. Label of the validate_action (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -28312,7 +28544,7 @@ msgstr "验证错误" #. Label of the validity (Select) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Validity" -msgstr "有效期" +msgstr "有效性" #. Label of the value (Data) field in DocType 'Milestone' #. Label of the defvalue (Text) field in DocType 'DefaultValue' @@ -28344,46 +28576,46 @@ msgstr "值" #. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Value Based On" -msgstr "基于值的" +msgstr "金额字段" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Change" -msgstr "值变更" +msgstr "金额变动" #. Label of the value_changed (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value Changed" -msgstr "值已变更" +msgstr "值变更的字段" #. Label of the property_value (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Value To Be Set" -msgstr "待设置值" +msgstr "字段值" -#: frappe/model/base_document.py:1054 frappe/model/document.py:833 +#: frappe/model/base_document.py:1054 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" -msgstr "{0}的值不可更改" +msgstr "值不能被改变为{0}" -#: frappe/model/document.py:779 +#: frappe/model/document.py:781 msgid "Value cannot be negative for" msgstr "值不能为负数:" -#: frappe/model/document.py:783 +#: frappe/model/document.py:785 msgid "Value cannot be negative for {0}: {1}" msgstr "{0}的值不能为负数:{1}" #: frappe/custom/doctype/property_setter/property_setter.js:7 msgid "Value for a check field can be either 0 or 1" -msgstr "复选框字段值只能是0或1" +msgstr "勾选字段值可以为0或1" #: frappe/custom/doctype/customize_form/customize_form.py:611 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" -msgstr "{1}中字段{0}的值过长,长度应小于{2}个字符" +msgstr "{1} 中的字段 {0} 值太长,长度应该小于 {2}" #: frappe/model/base_document.py:445 msgid "Value for {0} cannot be a list" -msgstr "{0}的值不能为列表" +msgstr "{0}不能是列表值" #. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment #. Rule' @@ -28393,12 +28625,18 @@ msgstr "本字段值将设为待办事项的截止日期" #: frappe/core/doctype/data_import/importer.py:714 msgid "Value must be one of {0}" -msgstr "值必须是{0}之一" +msgstr "值必须是 {0} 之一" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" #. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Value to Validate" -msgstr "待验证值" +msgstr "待验证的值" #: frappe/model/base_document.py:1124 msgid "Value too big" @@ -28406,9 +28644,9 @@ msgstr "值过大" #: frappe/core/doctype/data_import/importer.py:727 msgid "Value {0} missing for {1}" -msgstr "{1}缺少值{0}" +msgstr "{1} 不包括值 {0}" -#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859 +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 msgid "Value {0} must be in the valid duration format: d h m s" msgstr "值{0}必须符合有效时长格式:d h m s" @@ -28419,12 +28657,12 @@ msgstr "值{0}必须符合{1}格式" #: frappe/core/doctype/version/version_view.html:8 msgid "Values Changed" -msgstr "值已变更" +msgstr "值已更改" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Verdana" -msgstr "Verdana字体" +msgstr "Verdana" #: frappe/templates/includes/login/login.js:333 msgid "Verification" @@ -28444,17 +28682,17 @@ msgstr "验证码邮件未发送,请联系管理员" #: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." -msgstr "验证码已发送至您的注册邮箱" +msgstr "验证码已发送到您注册的电子邮件地址。" #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "已验证" +msgstr "验证" #: frappe/public/js/frappe/ui/messages.js:359 #: frappe/templates/includes/login/login.js:337 msgid "Verify" -msgstr "验证" +msgstr "确认" #: frappe/public/js/frappe/ui/messages.js:358 msgid "Verify Password" @@ -28462,7 +28700,7 @@ msgstr "确认密码" #: frappe/templates/includes/login/login.js:171 msgid "Verifying..." -msgstr "正在验证..." +msgstr "验证中..." #. Name of a DocType #: frappe/core/doctype/version/version.json @@ -28471,7 +28709,7 @@ msgstr "版本" #: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" -msgstr "版本已更新" +msgstr "版本更新" #. Label of the video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -28488,7 +28726,7 @@ msgstr "查看" msgid "View All" msgstr "查看全部" -#: frappe/public/js/frappe/form/toolbar.js:577 +#: frappe/public/js/frappe/form/toolbar.js:580 msgid "View Audit Trail" msgstr "查看审计跟踪" @@ -28510,7 +28748,7 @@ msgstr "查看文件" #: frappe/public/js/frappe/ui/notifications/notifications.js:220 msgid "View Full Log" -msgstr "查看完整日志" +msgstr "查看全部日志" #: frappe/public/js/frappe/views/treeview.js:484 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 @@ -28525,12 +28763,12 @@ msgstr "查看日志" #: frappe/core/doctype/user/user.js:142 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" -msgstr "查看授权文档" +msgstr "查看被授权单据" #. Label of the view_properties (Button) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "View Properties (via Customize Form)" -msgstr "查看属性(通过表单定制)" +msgstr "查看字段(定制表单)" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -28543,12 +28781,12 @@ msgstr "查看报表" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "View Settings" -msgstr "查看设置" +msgstr "视图设置" #. Label of the view_switcher (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "View Switcher" -msgstr "视图切换器" +msgstr "视图切换" #. Label of a standard navbar item #. Type: Action @@ -28559,7 +28797,7 @@ msgstr "查看网站" #: frappe/www/confirm_workflow_action.html:12 msgid "View document" -msgstr "查看文档" +msgstr "查看单据" #: frappe/templates/emails/auto_email_report.html:60 msgid "View report in your browser" @@ -28567,7 +28805,7 @@ msgstr "在浏览器中查看报表" #: frappe/templates/emails/print_link.html:2 msgid "View this in your browser" -msgstr "在浏览器中查看" +msgstr "在浏览器查看" #: frappe/public/js/frappe/web_form/web_form.js:454 msgctxt "Button in web form" @@ -28608,7 +28846,7 @@ msgstr "虚拟文档类型{}需要重写名为{}的实例方法,找到{}" #. Label of the visibility_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Visibility" -msgstr "可见性" +msgstr "是否显示" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 msgid "Visible to website/portal users." @@ -28617,7 +28855,7 @@ msgstr "对网站/门户用户可见。" #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Visit" -msgstr "访问" +msgstr "拜访" #: frappe/website/doctype/website_route_meta/website_route_meta.js:7 msgid "Visit Web Page" @@ -28652,7 +28890,7 @@ msgstr "警告:未设置命名规则" #: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" -msgstr "警告:在{1}相关表中未找到{0}" +msgstr "警告:无法找到{0}与任何表{1}" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -28678,11 +28916,11 @@ msgstr "本文档不允许编辑。点击工作区页面编辑按钮可自定义 #: frappe/templates/emails/delete_data_confirmation.html:2 msgid "We have received a request for deletion of {0} data associated with: {1}" -msgstr "已收到删除{1}关联的{0}数据请求" +msgstr "我们收到了删除与以下相关的{0}数据的请求:{1}" #: frappe/templates/emails/download_data.html:2 msgid "We have received a request from you to download your {0} data associated with: {1}" -msgstr "已收到您下载{1}关联的{0}数据请求" +msgstr "我们已收到您的请求,要求您下载与{1}相关联的{0}数据" #: frappe/www/attribution.html:12 msgid "We would like to thank the authors of these packages for their contribution." @@ -28702,7 +28940,7 @@ msgstr "弱" #: frappe/website/doctype/web_form/web_form.json #: frappe/website/workspace/website/website.json msgid "Web Form" -msgstr "Web表单" +msgstr "网页表单" #. Name of a DocType #: frappe/website/doctype/web_form_field/web_form_field.json @@ -28717,7 +28955,7 @@ msgstr "Web表单字段" #. Name of a DocType #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Web Form List Column" -msgstr "Web表单列表列" +msgstr "网页表单列表字段" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28725,14 +28963,14 @@ msgstr "Web表单列表列" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json msgid "Web Page" -msgstr "网页" +msgstr "网站网页" #. Name of a DocType #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Web Page Block" msgstr "网页区块" -#: frappe/public/js/frappe/utils/utils.js:1709 +#: frappe/public/js/frappe/utils/utils.js:1712 msgid "Web Page URL" msgstr "网页URL" @@ -28770,16 +29008,17 @@ msgstr "未指定网页模板" #. Label of the web_view (Tab Break) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Web View" -msgstr "网页视图" +msgstr "Web视图" #. Name of a DocType #. Label of the webhook (Link) field in DocType 'Webhook Request Log' #. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace #: frappe/integrations/doctype/webhook/webhook.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Webhook" -msgstr "Webhook" +msgstr "网络钩子" #. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' #. Name of a DocType @@ -28791,12 +29030,12 @@ msgstr "Webhook数据" #. Name of a DocType #: frappe/integrations/doctype/webhook_header/webhook_header.json msgid "Webhook Header" -msgstr "Webhook请求头" +msgstr "Webhook头信息" #. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Headers" -msgstr "Webhook请求头" +msgstr "Webhook头信息" #. Label of the sb_webhook (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -28808,7 +29047,7 @@ msgstr "Webhook请求" #: frappe/core/workspace/build/build.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" -msgstr "Webhook请求日志" +msgstr "网络钩子请求日志" #. Label of the webhook_secret (Password) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -28823,7 +29062,7 @@ msgstr "Webhook安全" #. Label of the sb_condition (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "Webhook触发器" +msgstr "网络钩子触发条件" #. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json @@ -28833,7 +29072,6 @@ msgstr "Webhook URL" #. Group in Module Def's connections #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json -#: frappe/email/doctype/newsletter/newsletter.py:457 #: frappe/public/js/frappe/ui/apps_switcher.js:125 #: frappe/public/js/frappe/ui/toolbar/about.js:8 #: frappe/website/workspace/website/website.json @@ -28841,9 +29079,7 @@ msgid "Website" msgstr "网站" #. Name of a report -#. Label of a Link in the Website Workspace #: frappe/website/report/website_analytics/website_analytics.json -#: frappe/website/workspace/website/website.json msgid "Website Analytics" msgstr "网站分析" @@ -28871,19 +29107,19 @@ msgstr "网站管理员" #. Name of a DocType #: frappe/website/doctype/website_meta_tag/website_meta_tag.json msgid "Website Meta Tag" -msgstr "网站元标签" +msgstr "网站元标记" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/website_route_meta/website_route_meta.json #: frappe/website/workspace/website/website.json msgid "Website Route Meta" -msgstr "网站路由元数据" +msgstr "网站路径元数据" #. Name of a DocType #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Website Route Redirect" -msgstr "网站路由重定向" +msgstr "网站路径重定向" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28917,12 +29153,12 @@ msgstr "网站设置" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/workspace/website/website.json msgid "Website Sidebar" -msgstr "网站侧边栏" +msgstr "网站边栏" #. Name of a DocType #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Website Sidebar Item" -msgstr "网站侧边栏项目" +msgstr "网站侧栏条目" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28934,7 +29170,7 @@ msgstr "网站幻灯片" #. Name of a DocType #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "Website Slideshow Item" -msgstr "网站幻灯片项" +msgstr "网站幻灯片项目" #. Label of the website_theme (Link) field in DocType 'Website Settings' #. Name of a DocType @@ -28990,7 +29226,7 @@ msgstr "周" #. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Weekdays" -msgstr "工作日" +msgstr "平日" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' @@ -29036,46 +29272,46 @@ msgstr "欢迎邮件模板" #. Label of the welcome_url (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" -msgstr "欢迎URL" +msgstr "欢迎页网址" #. Name of a Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Welcome Workspace" msgstr "欢迎工作区" -#: frappe/core/doctype/user/user.py:415 +#: frappe/core/doctype/user/user.py:416 msgid "Welcome email sent" -msgstr "欢迎邮件已发送" +msgstr "欢迎电子邮件已发送" -#: frappe/core/doctype/user/user.py:476 +#: frappe/core/doctype/user/user.py:477 msgid "Welcome to {0}" -msgstr "欢迎使用{0}" +msgstr "欢迎{0}" #: frappe/public/js/frappe/ui/notifications/notifications.js:62 msgid "What's New" -msgstr "最新动态" +msgstr "新消息" #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." -msgstr "启用后访客可上传文件至应用,适用于无需登录收集文件的场景(如职位申请表)" +msgstr "允许访问不登录系统的情况下上传文件,通常用于收集申请表之类的资料" #. Description of the 'Store Attached PDF Document' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." -msgstr "邮件发送文档时存储PDF到通讯记录。警告:可能增加存储使用" +msgstr "邮件发送单据时在沟通(时间线)记录中保存pdf附件。提醒:会耗用更多存储空间" #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." -msgstr "强制使用网页图片采集,未勾选时移动端自动调用原生相机" +msgstr "上传文件时强制使用网页上传图片机制,如未勾选,如侦测是移动设备则默认使用移动设备照相机" #: frappe/core/page/permission_manager/permission_manager_help.html:18 msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." -msgstr "取消后修改并保存文档将生成基于原编号的新编号" +msgstr "当你修订一个已取消和保存的单据时,单据会复制为一个副本。" #. Description of the 'DocType View' (Select) field in DocType 'Workspace #. Shortcut' @@ -29101,7 +29337,7 @@ msgstr "宽度" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 msgid "Widths can be set in px or %." -msgstr "宽度可用像素或百分比设置" +msgstr "宽度可以设置为px像素或%百分比。" #. Label of the wildcard_filter (Check) field in DocType 'Report Filter' #: frappe/core/doctype/report_filter/report_filter.json @@ -29117,15 +29353,15 @@ msgstr "将在查询前后添加“%”" #. Description of the 'Short Name' (Data) field in DocType 'Blogger' #: frappe/website/doctype/blogger/blogger.json msgid "Will be used in url (usually first name)." -msgstr "将用于URL(通常为名字)" +msgstr "会用在URL链接中(通常是名字)。" #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" -msgstr "将作为登录ID" +msgstr "将是您的登录ID" #: frappe/printing/page/print_format_builder/print_format_builder.js:424 msgid "Will only be shown if section headings are enabled" -msgstr "仅启用章节标题时显示" +msgstr "如果章节标题启用才会显示" #. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field #. in DocType 'System Settings' @@ -29133,20 +29369,20 @@ msgstr "仅启用章节标题时显示" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "非活跃站点每天仅运行一次定时任务,设为0禁用此功能" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:38 msgid "With Letter head" -msgstr "带信头" +msgstr "有打印表头" #. Label of the worker_information_section (Section Break) field in DocType 'RQ #. Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" -msgstr "工作进程信息" +msgstr "进程信息" #. Label of the worker_name (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" -msgstr "工作进程名称" +msgstr "进程名" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Group in DocType's connections @@ -29162,13 +29398,13 @@ msgstr "工作流" #: frappe/workflow/doctype/workflow_action/workflow_action.json #: frappe/workflow/doctype/workflow_action/workflow_action.py:444 msgid "Workflow Action" -msgstr "工作流操作" +msgstr "待审批工作流" #. Name of a DocType #. Description of a DocType #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json msgid "Workflow Action Master" -msgstr "工作流主操作" +msgstr "工作流操作主数据" #. Label of the workflow_action_name (Data) field in DocType 'Workflow Action #. Master' @@ -29179,19 +29415,19 @@ msgstr "工作流操作名称" #. Name of a DocType #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Workflow Action Permitted Role" -msgstr "工作流操作允许角色" +msgstr "工作流操作被授权角色" #. Description of the 'Is Optional State' (Check) field in DocType 'Workflow #. Document State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Action is not created for optional states" -msgstr "可选状态未创建工作流操作" +msgstr "系统不会为可选状态创建待审批工作流" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.js:25 #: frappe/workflow/page/workflow_builder/workflow_builder.js:4 msgid "Workflow Builder" -msgstr "工作流构建器" +msgstr "工作流设计器" #. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document #. State' @@ -29204,7 +29440,7 @@ msgstr "工作流构建器ID" #: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." -msgstr "工作流构建器支持可视化创建工作流,可拖放状态并创建转换,侧边栏更新属性" +msgstr "允许拖拽工作流状态,连接状态生成状态转换规则,还可以通过左边栏更新状态与转换规则属性" #. Label of the workflow_data (JSON) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -29218,7 +29454,7 @@ msgstr "工作流详情" #. Name of a DocType #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "Workflow Document State" -msgstr "工作流文档状态" +msgstr "工作流单据状态" #. Label of the workflow_name (Data) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -29239,7 +29475,7 @@ msgstr "工作流状态字段" #: frappe/model/workflow.py:61 msgid "Workflow State not set" -msgstr "未设置工作流状态" +msgstr "工作流状态未设置" #: frappe/model/workflow.py:204 frappe/model/workflow.py:212 msgid "Workflow State transition not allowed from {0} to {1}" @@ -29256,12 +29492,12 @@ msgstr "工作流状态" #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" -msgstr "工作流转换" +msgstr "工作流状态转换" #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." -msgstr "工作流状态表示文档的当前状态" +msgstr "工作流状态表明单据目前的状态。" #: frappe/public/js/workflow_builder/store.js:83 msgid "Workflow updated successfully" @@ -29274,12 +29510,12 @@ msgstr "工作流更新成功" #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 -#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "工作区" -#: frappe/public/js/frappe/router.js:173 +#: frappe/public/js/frappe/router.js:175 msgid "Workspace {0} does not exist" msgstr "工作区{0}不存在" @@ -29291,7 +29527,7 @@ msgstr "工作区图表" #. Name of a DocType #: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json msgid "Workspace Custom Block" -msgstr "工作区自定义区块" +msgstr "工作区自定义html块" #. Name of a DocType #: frappe/desk/doctype/workspace_link/workspace_link.json @@ -29308,12 +29544,12 @@ msgstr "工作区管理员" #. Name of a DocType #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Workspace Number Card" -msgstr "工作区数字卡片" +msgstr "工作区数字卡" #. Name of a DocType #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Workspace Quick List" -msgstr "工作区快速列表" +msgstr "工作区快速访问列表" #. Label of a standard navbar item #. Type: Action @@ -29332,7 +29568,7 @@ msgstr "工作区设置完成" #. Name of a DocType #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Workspace Shortcut" -msgstr "工作区快捷方式" +msgstr "工作区捷径" #. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace #. Settings' @@ -29359,7 +29595,7 @@ msgstr "是否确认取消发布本评论?取消后网站/门户用户将不 #: frappe/desk/page/setup_wizard/setup_wizard.py:41 msgid "Wrapping up" -msgstr "收尾工作" +msgstr "已圆满完成" #. Label of the write (Check) field in DocType 'Custom DocPerm' #. Label of the write (Check) field in DocType 'DocPerm' @@ -29370,7 +29606,7 @@ msgstr "收尾工作" #: frappe/core/doctype/docshare/docshare.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "写入" +msgstr "写" #: frappe/model/base_document.py:954 msgid "Wrong Fetch From value" @@ -29383,17 +29619,17 @@ msgstr "X轴字段" #. Label of the x_field (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "X Field" -msgstr "X字段" +msgstr "X轴字段" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "XLSX" -msgstr "XLSX格式" +msgstr "XLSX" #. Label of the y_axis (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" -msgstr "Y轴" +msgstr "Y轴字段" #: frappe/public/js/frappe/views/reports/report_view.js:497 msgid "Y Axis Fields" @@ -29401,9 +29637,9 @@ msgstr "Y轴字段" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1223 +#: frappe/public/js/frappe/views/reports/query_report.js:1224 msgid "Y Field" -msgstr "Y字段" +msgstr "Y轴字段" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -29413,7 +29649,7 @@ msgstr "雅虎邮箱" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "Yandex邮箱" +msgstr "Yandex.Mail" #. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' #. Label of the year (Data) field in DocType 'Company History' @@ -29462,7 +29698,7 @@ msgstr "黄色" #: frappe/public/js/form_builder/utils.js:336 #: frappe/public/js/frappe/form/controls/link.js:494 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1614 +#: frappe/public/js/frappe/views/reports/query_report.js:1663 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "是" @@ -29492,7 +29728,7 @@ msgstr "您已点赞" #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." -msgstr "您已连接到互联网" +msgstr "已联网。" #: frappe/public/js/frappe/ui/toolbar/navbar.html:20 msgid "You are impersonating as another user." @@ -29502,17 +29738,17 @@ msgstr "您正在模拟其他用户" msgid "You are not allowed to access this resource" msgstr "您无权访问此资源" -#: frappe/permissions.py:418 +#: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" -msgstr "您无权访问{0}记录,因其通过字段{3}关联到{1}'{2}'" +msgstr "无权限访问{0} 类型单据,链接字段 {3} 引用了你无权访问的 {1} '{2}'" -#: frappe/permissions.py:407 +#: frappe/permissions.py:420 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" -msgstr "您无权访问{0}记录,因其在第{3}行字段{4}关联到{1}'{2}'" +msgstr "无权限访问 {0} 类型单据,第{3}行,链接字段 {4} 引用了你无权访问的 {1} '{2}'" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 msgid "You are not allowed to create columns" -msgstr "您无权创建列" +msgstr "你无权创建列" #: frappe/core/doctype/report/report.py:97 msgid "You are not allowed to delete Standard Report" @@ -29520,7 +29756,7 @@ msgstr "您无权删除标准报表" #: frappe/website/doctype/website_theme/website_theme.py:73 msgid "You are not allowed to delete a standard Website Theme" -msgstr "您无权删除标准网站主题" +msgstr "不允许删除标准网站主题" #: frappe/core/doctype/report/report.py:391 msgid "You are not allowed to edit the report." @@ -29529,25 +29765,25 @@ msgstr "您无权编辑此报表" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 #: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 -#: frappe/permissions.py:613 +#: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" -msgstr "您无权导出{}文档类型" +msgstr "未被授权导出单据类型{}" #: frappe/public/js/frappe/views/treeview.js:448 msgid "You are not allowed to print this report" -msgstr "您无权打印此报表" +msgstr "您未被授权打印此报表" -#: frappe/public/js/frappe/views/communication.js:781 +#: frappe/public/js/frappe/views/communication.js:784 msgid "You are not allowed to send emails related to this document" -msgstr "您无权发送与此文档相关的邮件" +msgstr "你不允许发送与此单据相关的电子邮件" -#: frappe/website/doctype/web_form/web_form.py:566 +#: frappe/website/doctype/web_form/web_form.py:594 msgid "You are not allowed to update this Web Form Document" -msgstr "您无权更新此Web表单文档" +msgstr "你不允许更新此Web表单" #: frappe/public/js/frappe/request.js:37 msgid "You are not connected to Internet. Retry after sometime." -msgstr "未连接互联网,请稍后重试" +msgstr "你没有连接到互联网。在某个时间后重试。" #: frappe/public/js/frappe/web_form/webform_script.js:22 msgid "You are not permitted to access this page without login." @@ -29555,17 +29791,17 @@ msgstr "未登录状态下无权访问此页面" #: frappe/www/app.py:27 msgid "You are not permitted to access this page." -msgstr "您无权访问此页面" +msgstr "你没有权限访问此页面。" -#: frappe/__init__.py:676 +#: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" msgstr "" #: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." -msgstr "您已订阅此文档,将通过邮件接收每日更新,可在用户设置中修改" +msgstr "您现在正在关注此单据。您将通过电子邮件收到每日更新。您可以在“用户设置”中进行更改。" -#: frappe/core/doctype/installed_applications/installed_applications.py:86 +#: frappe/core/doctype/installed_applications/installed_applications.py:98 msgid "You are only allowed to update order, do not remove or add apps." msgstr "仅允许调整应用顺序,不可增删应用" @@ -29580,7 +29816,7 @@ msgstr "您已附加{0}" #: frappe/printing/page/print_format_builder/print_format_builder.js:749 msgid "You can add dynamic properties from the document by using Jinja templating." -msgstr "可通过Jinja模板从文档添加动态属性" +msgstr "您可以通过Jinja模板来添加单据的动态属性。" #: frappe/printing/doctype/letter_head/letter_head.js:32 msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" @@ -29600,19 +29836,19 @@ msgstr "也可将{0}粘贴到浏览器" #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." -msgstr "可通过取消后修订来修改已提交文档" +msgstr "您可以通过撤销已提交的文件,然后再修订单据。" #: frappe/public/js/frappe/logtypes.js:21 msgid "You can change the retention policy from {0}." -msgstr "可从{0}修改保留策略" +msgstr "可在 {0} 中设置日志保留天数让系统自动删除过期数据" #: frappe/public/js/frappe/widgets/onboarding_widget.js:194 msgid "You can continue with the onboarding after exploring this page" msgstr "浏览本页后可继续完成新手引导" -#: frappe/model/delete_doc.py:136 +#: frappe/model/delete_doc.py:137 msgid "You can disable this {0} instead of deleting it." -msgstr "可禁用而非删除此{0}" +msgstr "你可以禁用而不是删除物料 {0}" #: frappe/core/doctype/file/file.py:736 msgid "You can increase the limit from System Settings." @@ -29640,7 +29876,7 @@ msgstr "仅可上传JPG/PNG/PDF/TXT/CSV或Microsoft文档" #: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" -msgstr "单次最多上传5000条记录(某些情况下可能更少)" +msgstr "一次最多只能上传5000条记录(某些情况下可能更少)" #: frappe/website/doctype/web_page/web_page.js:92 msgid "You can select one from the following," @@ -29650,27 +29886,27 @@ msgstr "可从以下选项中选择:" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "You can set a high value here if multiple users will be logging in from the same network." -msgstr "若多用户同网络登录可设置较高值" +msgstr "如多个用户通过相同网络登录,请设置一个大一点的数字" -#: frappe/desk/query_report.py:343 +#: frappe/desk/query_report.py:345 msgid "You can try changing the filters of your report." -msgstr "可尝试调整报表过滤器" +msgstr "可尝试变更报表过滤条件" #: frappe/core/page/permission_manager/permission_manager_help.html:27 msgid "You can use Customize Form to set levels on fields." -msgstr "可通过表单定制设置字段层级" +msgstr "可以使用定制表单设置字段的权限级别。" #: frappe/public/js/frappe/form/link_selector.js:30 msgid "You can use wildcard %" -msgstr "可使用通配符%" +msgstr "可以使用通配符%" #: frappe/custom/doctype/customize_form/customize_form.py:389 msgid "You can't set 'Options' for field {0}" -msgstr "无法为字段{0}设置'选项'" +msgstr "您不能为字段{0}设置“选项”" #: frappe/custom/doctype/customize_form/customize_form.py:393 msgid "You can't set 'Translatable' for field {0}" -msgstr "无法为字段{0}设置'可翻译'" +msgstr "您无法为字段{0}设置“可翻译”" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 msgctxt "Form timeline" @@ -29684,27 +29920,27 @@ msgstr "您已取消此文档{1}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 msgid "You cannot create a dashboard chart from single DocTypes" -msgstr "无法从单一文档类型创建仪表板图表" +msgstr "不能为单记录单据类型创建统计图表" #: frappe/custom/doctype/customize_form/customize_form.py:385 msgid "You cannot unset 'Read Only' for field {0}" -msgstr "无法取消字段{0}的'只读'属性" +msgstr "你不能为字段{0}取消“只读”设置" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" -msgstr "您已修改{0}的值" +msgstr "你更改了 {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" -msgstr "您已修改{1} {0}的值" +msgstr "你变更了 {0} {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 msgid "You changed the values for {0}" -msgstr "您已修改{0}的值" +msgstr "你变更了 {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 msgid "You changed the values for {0} {1}" -msgstr "您已修改{1} {0}的值" +msgstr "你变更了 {0} {1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:443 msgctxt "Form timeline" @@ -29714,7 +29950,7 @@ msgstr "您已将{0}改为{1}" #: frappe/public/js/frappe/form/footer/form_timeline.js:140 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 msgid "You created this" -msgstr "您创建了此文档" +msgstr "你创建了本单据" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 msgctxt "Form timeline" @@ -29727,39 +29963,43 @@ msgstr "您对{}无读取或选择权限" #: frappe/public/js/frappe/request.js:177 msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." -msgstr "权限不足,请联系管理员获取访问权限" +msgstr "您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。" -#: frappe/app.py:361 +#: frappe/app.py:381 msgid "You do not have enough permissions to complete the action" -msgstr "权限不足无法完成操作" +msgstr "您未被授权完成此操作" -#: frappe/desk/query_report.py:831 +#: frappe/database/query.py:529 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:873 msgid "You do not have permission to access {0}: {1}." msgstr "您无权访问{0}:{1}。" #: frappe/public/js/frappe/form/form.js:960 msgid "You do not have permissions to cancel all linked documents." -msgstr "您无权取消所有关联文档" +msgstr "没有权限取消所有关联的单据" -#: frappe/desk/query_report.py:42 +#: frappe/desk/query_report.py:43 msgid "You don't have access to Report: {0}" -msgstr "您无权访问报表:{0}" +msgstr "您没有权限访问报表:{0}" -#: frappe/website/doctype/web_form/web_form.py:769 +#: frappe/website/doctype/web_form/web_form.py:797 msgid "You don't have permission to access the {0} DocType." msgstr "您无权访问{0}文档类型" -#: frappe/utils/response.py:283 frappe/utils/response.py:287 +#: frappe/utils/response.py:290 frappe/utils/response.py:294 msgid "You don't have permission to access this file" -msgstr "您无权访问此文件" +msgstr "您没有权限访问该文件" -#: frappe/desk/query_report.py:48 +#: frappe/desk/query_report.py:49 msgid "You don't have permission to get a report on: {0}" -msgstr "您无权获取{0}的报表" +msgstr "你没有权限获得{0}的报表" #: frappe/website/doctype/web_form/web_form.py:172 msgid "You don't have the permissions to access this document" -msgstr "您无权访问此文档" +msgstr "您未被授权访问此单据" #: frappe/templates/emails/new_message.html:1 msgid "You have a new message from: " @@ -29767,7 +30007,7 @@ msgstr "您有新消息来自:" #: frappe/handler.py:118 msgid "You have been successfully logged out" -msgstr "您已成功登出" +msgstr "您已成功注销" #: frappe/custom/doctype/customize_form/customize_form.py:244 msgid "You have hit the row size limit on database table: {0}" @@ -29775,7 +30015,7 @@ msgstr "已达到数据库表{0}的行大小限制" #: frappe/public/js/frappe/list/bulk_operations.js:412 msgid "You have not entered a value. The field will be set to empty." -msgstr "未输入值,该字段将被置空" +msgstr "未输入字段值,字段值将被设为空值" #: frappe/templates/includes/likes/likes.py:31 msgid "You have received a ❤️ like on your blog post" @@ -29787,7 +30027,7 @@ msgstr "需从系统设置启用双因素认证" #: frappe/public/js/frappe/model/create_new.js:328 msgid "You have unsaved changes in this form. Please save before you continue." -msgstr "表单存在未保存更改,请先保存" +msgstr "本表单中存在未保存的修改,请先保存。" #: frappe/public/js/frappe/ui/toolbar/navbar.html:50 msgid "You have unseen notifications" @@ -29795,15 +30035,15 @@ msgstr "您有未读通知" #: frappe/core/doctype/log_settings/log_settings.py:125 msgid "You have unseen {0}" -msgstr "您有未读{0}" +msgstr "待查看{0}" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 msgid "You haven't added any Dashboard Charts or Number Cards yet." -msgstr "尚未添加任何仪表板图表或数字卡片" +msgstr "尚未创建统计图表或数字卡" #: frappe/public/js/frappe/list/list_view.js:498 msgid "You haven't created a {0} yet" -msgstr "尚未创建{0}" +msgstr "暂无数据 {0}" #: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." @@ -29812,21 +30052,21 @@ msgstr "请求过多触发速率限制,请稍后重试" #: frappe/public/js/frappe/form/footer/form_timeline.js:151 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 msgid "You last edited this" -msgstr "您最后编辑于" +msgstr "你最新修订了本单据" #: frappe/public/js/frappe/widgets/widget_dialog.js:352 msgid "You must add atleast one link." msgstr "必须至少添加一个链接" -#: frappe/website/doctype/web_form/web_form.py:765 +#: frappe/website/doctype/web_form/web_form.py:793 msgid "You must be logged in to use this form." msgstr "必须登录才能使用此表单" -#: frappe/website/doctype/web_form/web_form.py:606 +#: frappe/website/doctype/web_form/web_form.py:634 msgid "You must login to submit this form" -msgstr "必须登录才能提交此表单" +msgstr "您必须登录才能提交此表单" -#: frappe/model/document.py:356 +#: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." msgstr "执行此操作需要{1} {2}的'{0}'权限" @@ -29844,19 +30084,19 @@ msgstr "您需要是系统用户才能访问此页面" #: frappe/website/doctype/web_form/web_form.py:91 msgid "You need to be in developer mode to edit a Standard Web Form" -msgstr "您需要处于开发者模式才能编辑标准Web表单" +msgstr "你需要在开发模式编辑标准Web窗体" -#: frappe/utils/response.py:272 +#: frappe/utils/response.py:279 msgid "You need to be logged in and have System Manager Role to be able to access backups." -msgstr "您需要登录并具有系统管理员角色才能访问备份" +msgstr "您需要先登录,并具有系统管理员角色才能够访问备份。" #: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 msgid "You need to be logged in to access this page" -msgstr "您需要登录才能访问此页面" +msgstr "您需要登录才能访问该页面" #: frappe/website/doctype/web_form/web_form.py:161 msgid "You need to be logged in to access this {0}." -msgstr "您需要登录才能访问此{0}" +msgstr "您需要登录才能访问此{0}。" #: frappe/public/js/frappe/widgets/links_widget.js:63 msgid "You need to create these first: " @@ -29868,7 +30108,7 @@ msgstr "您需要启用JavaScript才能使应用正常工作" #: frappe/core/doctype/docshare/docshare.py:62 msgid "You need to have \"Share\" permission" -msgstr "你需要有“共享”权限" +msgstr "你需要有“分享”权限" #: frappe/utils/print_format.py:268 msgid "You need to install pycups to use this feature!" @@ -29909,7 +30149,7 @@ msgstr "您似乎输入了姓名而非电子邮箱。请输入有效的电子邮 #: frappe/public/js/frappe/list/bulk_operations.js:31 msgid "You selected Draft or Cancelled documents" -msgstr "您选择了草稿或已取消的文档" +msgstr "您选择了草稿或已取消的单据" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 msgctxt "Form timeline" @@ -29923,15 +30163,15 @@ msgstr "您于{0}提交了此文档" #: frappe/public/js/frappe/form/sidebar/document_follow.js:144 msgid "You unfollowed this document" -msgstr "您取消关注此文档" +msgstr "您取消了对该单据的关注" #: frappe/public/js/frappe/form/footer/form_timeline.js:183 msgid "You viewed this" msgstr "您查看了此内容" -#: frappe/public/js/frappe/desk.js:551 +#: frappe/public/js/frappe/desk.js:553 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." -msgstr "您已在其他标签页以其他用户身份登录。请刷新此页面继续使用系统" +msgstr "在另一个浏览器页签用另一个账号登录了,请刷新浏览器后切换到新帐号继续" #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." @@ -29939,11 +30179,11 @@ msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:397 msgid "Your Country" -msgstr "您的国家" +msgstr "国家" #: frappe/desk/page/setup_wizard/setup_wizard.js:389 msgid "Your Language" -msgstr "您的语言" +msgstr "语言" #: frappe/templates/includes/comments/comments.html:21 msgid "Your Name" @@ -29951,11 +30191,11 @@ msgstr "您的姓名" #: frappe/public/js/frappe/list/bulk_operations.js:132 msgid "Your PDF is ready for download" -msgstr "您的PDF文件已准备就绪可供下载" +msgstr "PDF已可下载" #: frappe/patches/v14_0/update_workspace2.py:34 msgid "Your Shortcuts" -msgstr "您的快捷方式" +msgstr "快速访问" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 @@ -29964,27 +30204,27 @@ msgstr "您的账户已被删除" #: frappe/auth.py:514 msgid "Your account has been locked and will resume after {0} seconds" -msgstr "您的账户已被锁定,将在{0}秒后恢复" +msgstr "您的账户已被锁定,并将在{0}秒后恢复" #: frappe/desk/form/assign_to.py:279 msgid "Your assignment on {0} {1} has been removed by {2}" msgstr "{2}移除了您在{0} {1}上的分配" -#: frappe/core/doctype/file/file.js:73 +#: frappe/core/doctype/file/file.js:74 msgid "Your browser does not support the audio element." msgstr "您的浏览器不支持音频元素" -#: frappe/core/doctype/file/file.js:55 +#: frappe/core/doctype/file/file.js:56 msgid "Your browser does not support the video element." msgstr "您的浏览器不支持视频元素" #: frappe/templates/pages/integrations/gcalendar-success.html:11 msgid "Your connection request to Google Calendar was successfully accepted" -msgstr "您与Google日历的连接请求已成功接受" +msgstr "您的Google日历连接请求已成功接受" #: frappe/www/contact.html:35 msgid "Your email address" -msgstr "您的电子邮箱地址" +msgstr "您的电子邮件地址" #: frappe/public/js/frappe/web_form/web_form.js:428 msgid "Your form has been successfully updated" @@ -29994,11 +30234,11 @@ msgstr "您的表单已成功更新" msgid "Your login id is" msgstr "您的登录ID是" -#: frappe/www/update-password.html:167 +#: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." msgstr "您的新密码已设置成功" -#: frappe/www/update-password.html:147 +#: frappe/www/update-password.html:172 msgid "Your old password is incorrect." msgstr "您的旧密码不正确" @@ -30006,15 +30246,15 @@ msgstr "您的旧密码不正确" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "用于邮件页脚的组织名称和地址" +msgstr "电子邮件页脚上您的组织名称和地址。" #: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." -msgstr "我们已收到您的查询。我们将尽快回复。如有其他信息,请回复此邮件" +msgstr "您的问题已收到。我们将尽快回复邮件。如果您还有任何其他的信息,请回覆此邮件。" -#: frappe/app.py:354 +#: frappe/app.py:374 msgid "Your session has expired, please login again to continue." -msgstr "您的会话已过期,请重新登录以继续" +msgstr "您的会话已过期,请再次登录以继续。" #: frappe/public/js/frappe/ui/toolbar/navbar.html:15 msgid "Your site is undergoing maintenance or being updated." @@ -30024,7 +30264,7 @@ msgstr "您的站点正在进行维护或更新" msgid "Your verification code is {0}" msgstr "您的验证码是{0}" -#: frappe/utils/data.py:1547 +#: frappe/utils/data.py:1558 msgid "Zero" msgstr "零" @@ -30032,7 +30272,7 @@ msgstr "零" #. in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Zero means send records updated at anytime" -msgstr "零表示随时发送更新记录" +msgstr "零表示资料更新后立即发送" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 msgid "[Action taken by {0}]" @@ -30041,14 +30281,14 @@ msgstr "[操作由{0}执行]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "_文档类型" +msgstr "_doctype" #. Label of the _report (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_report" -msgstr "_报告" +msgstr "_报表" -#: frappe/database/database.py:361 +#: frappe/database/database.py:360 msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" msgstr "`as_iterator`仅在使用`as_list=True`或`as_dict=True`时有效" @@ -30058,12 +30298,12 @@ msgstr "去重需要`job_id`参数" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 msgid "added rows for {0}" -msgstr "为{0}添加了行" +msgstr "新增了 {0} 明细行" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "插入后" +msgstr "新增" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30071,7 +30311,7 @@ msgstr "插入后" msgid "amend" msgstr "修订" -#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553 +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" msgstr "和" @@ -30087,7 +30327,7 @@ msgstr "蓝色" #: frappe/public/js/frappe/form/workflow.js:35 msgid "by Role" -msgstr "按角色" +msgstr "角色" #. Label of the profile (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -30107,7 +30347,7 @@ msgstr "取消" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" -msgstr "已取消" +msgstr "取消" #: frappe/templates/includes/list/filters.html:19 msgid "clear" @@ -30128,8 +30368,8 @@ msgstr "创建" msgid "cyan" msgstr "青色" -#: frappe/public/js/frappe/form/controls/duration.js:208 -#: frappe/public/js/frappe/utils/utils.js:1116 +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" msgstr "天" @@ -30141,7 +30381,7 @@ msgstr "深灰色" #: frappe/core/page/dashboard_view/dashboard_view.js:65 msgid "dashboard" -msgstr "仪表板" +msgstr "数据面板" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' @@ -30174,7 +30414,7 @@ msgstr "默认" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" -msgstr "延迟" +msgstr "已延迟" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30189,17 +30429,17 @@ msgstr "降序" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" -msgstr "文档类型...,例如客户" +msgstr "单据类型...,如客户" #. Description of the 'Email Account Name' (Data) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" -msgstr "例如“支持”、“销售”、“杨致远”" +msgstr "例如“支持“,”销售“,”杨杰“" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." -msgstr "例如(55 + 434)/4 或 =Math.sin(Math.PI/2)..." +msgstr "例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)..." #. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' #. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' @@ -30212,7 +30452,7 @@ msgstr "例如pop.gmail.com / imap.gmail.com" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." -msgstr "例如replies@yourcompany.com。所有回复将发送到此收件箱" +msgstr "例如replies@yourcomany.com。所有的回复将被发送到这个收件箱。" #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' #. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' @@ -30243,7 +30483,7 @@ msgstr "电子邮件" msgid "email inbox" msgstr "电子邮件收件箱" -#: frappe/permissions.py:412 frappe/permissions.py:423 +#: frappe/permissions.py:425 frappe/permissions.py:436 #: frappe/public/js/frappe/form/controls/link.js:503 msgid "empty" msgstr "空" @@ -30269,7 +30509,7 @@ msgstr "失败" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "FairLogin认证" +msgstr "fairlogin" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -30295,15 +30535,15 @@ msgstr "灰色" msgid "gzip not found in PATH! This is required to take a backup." msgstr "在PATH中找不到gzip!这是进行备份的必要条件" -#: frappe/public/js/frappe/form/controls/duration.js:209 -#: frappe/public/js/frappe/utils/utils.js:1120 +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" msgstr "小时" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 msgid "hub" -msgstr "中心" +msgstr "集市(Hub)网站" #. Label of the icon (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json @@ -30319,7 +30559,7 @@ msgstr "导入" #. Description of the 'Read Time' (Int) field in DocType 'Blog Post' #: frappe/website/doctype/blog_post/blog_post.json msgid "in minutes" -msgstr "分钟" +msgstr "分" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -30329,7 +30569,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "刚刚" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 msgid "label" msgstr "标签" @@ -30369,15 +30609,15 @@ msgstr "需要登录" msgid "long" msgstr "长整型" -#: frappe/public/js/frappe/form/controls/duration.js:210 -#: frappe/public/js/frappe/utils/utils.js:1124 +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" msgstr "月" #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" -msgstr "已将{0}合并至{1}" +msgstr "{0}合并为{1}" #: frappe/website/doctype/blog_post/templates/blog_post.html:25 #: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 @@ -30413,12 +30653,12 @@ msgstr "新建" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" -msgstr "新文档类型" +msgstr "单据新类型" #. Label of the no_failed (Int) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "no failed attempts" -msgstr "无失败尝试" +msgstr "没有失败的尝试" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -30436,42 +30676,42 @@ msgstr "现在" #: frappe/public/js/frappe/form/grid_pagination.js:116 msgid "of" -msgstr "的" +msgstr "/" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "旧父级" +msgstr "old_parent" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "取消时" +msgstr "取消" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "变更时" +msgstr "字段值变更" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "提交时" +msgstr "提交" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "删除时" +msgstr "删除" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "更新时" +msgstr "变更" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "提交后更新时" +msgstr "提交后变更" #: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 #: frappe/www/login.py:112 @@ -30518,12 +30758,12 @@ msgstr "紫色" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "query-report" -msgstr "查询报告" +msgstr "查询的报表" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "queued" -msgstr "已排队" +msgstr "已进入队列" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30538,11 +30778,11 @@ msgstr "红色" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 msgid "removed rows for {0}" -msgstr "移除了{0}的行" +msgstr "删除了 {0} 明细行" #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" -msgstr "从{0}重命名为{1}" +msgstr "从更名{0}到{1}" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30557,10 +30797,10 @@ msgstr "响应" #: frappe/core/doctype/deleted_document/deleted_document.py:61 msgid "restored {0} as {1}" -msgstr "已将{0}恢复为{1}" +msgstr "恢复{0}为{1}" -#: frappe/public/js/frappe/form/controls/duration.js:211 -#: frappe/public/js/frappe/utils/utils.js:1128 +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 msgctxt "Seconds (Field: Duration)" msgid "s" msgstr "秒" @@ -30574,7 +30814,7 @@ msgstr "s256加密" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" -msgstr "已计划" +msgstr "已排程" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30586,7 +30826,7 @@ msgstr "选择" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "share" -msgstr "共享" +msgstr "分享" #. Option for the 'Queue' (Select) field in DocType 'RQ Job' #. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' @@ -30597,19 +30837,19 @@ msgstr "短整型" #: frappe/public/js/frappe/widgets/number_card_widget.js:298 msgid "since last month" -msgstr "自上月以来" +msgstr "自上个月" #: frappe/public/js/frappe/widgets/number_card_widget.js:297 msgid "since last week" -msgstr "自上周以来" +msgstr "自上周" #: frappe/public/js/frappe/widgets/number_card_widget.js:299 msgid "since last year" -msgstr "自去年以来" +msgstr "自去年" #: frappe/public/js/frappe/widgets/number_card_widget.js:296 msgid "since yesterday" -msgstr "自昨日以来" +msgstr "自昨天" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -30650,7 +30890,7 @@ msgstr "标签名称...,例如#标签" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 msgid "text in document type" -msgstr "文档类型中的文本" +msgstr "文件类型的文本" #: frappe/public/js/frappe/form/controls/data.js:36 msgid "this form" @@ -30668,11 +30908,11 @@ msgstr "Twitter" #: frappe/public/js/frappe/change_log.html:7 msgid "updated to {0}" -msgstr "已更新至{0}" +msgstr "更新{0}" #: frappe/public/js/frappe/ui/filters/filter.js:361 msgid "use % as wildcard" -msgstr "使用%作为通配符" +msgstr "使用%作为通配符" #: frappe/public/js/frappe/ui/filters/filter.js:360 msgid "values separated by commas" @@ -30751,7 +30991,7 @@ msgstr "黄色" #: frappe/public/js/frappe/utils/pretty_date.js:58 msgid "yesterday" -msgstr "昨日" +msgstr "昨天" #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' @@ -30804,7 +31044,7 @@ msgstr "{0}图表" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" -msgstr "{0}仪表板" +msgstr "{0}数据面板" #: frappe/public/js/frappe/form/grid_row.js:470 #: frappe/public/js/frappe/list/list_settings.js:227 @@ -30818,7 +31058,7 @@ msgstr "已同步{0}个Google日历事件" #: frappe/integrations/doctype/google_contacts/google_contacts.py:193 msgid "{0} Google Contacts synced." -msgstr "已同步{0}个Google联系人" +msgstr "{0} Google通讯录同步。" #: frappe/public/js/frappe/form/footer/form_timeline.js:464 msgid "{0} Liked" @@ -30833,7 +31073,7 @@ msgstr "{0}列表" #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" -msgstr "{0} M" +msgstr "{0} 月" #: frappe/public/js/frappe/views/map/map_view.js:14 msgid "{0} Map" @@ -30841,19 +31081,19 @@ msgstr "{0}地图" #: frappe/public/js/frappe/form/quick_entry.js:122 msgid "{0} Name" -msgstr "{0}名称" +msgstr "{0}单据编号(名称)" #: frappe/model/base_document.py:1154 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" -msgstr "{0}不允许在提交后将{1}从{2}更改为{3}" +msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 #: frappe/public/js/frappe/widgets/chart_widget.js:366 msgid "{0} Report" -msgstr "{0}报告" +msgstr "{0}报表" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:955 msgid "{0} Reports" msgstr "{0}报告" @@ -30866,7 +31106,7 @@ msgstr "{0}设置" #: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 #: frappe/public/js/frappe/views/treeview.js:152 msgid "{0} Tree" -msgstr "{0}树状结构" +msgstr "{0} 树" #: frappe/public/js/frappe/form/footer/form_timeline.js:128 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 @@ -30880,21 +31120,21 @@ msgstr "{0}工作空间" #: frappe/public/js/frappe/form/link_selector.js:225 msgid "{0} added" -msgstr "已添加{0}" +msgstr "{0} 成功添加" #: frappe/public/js/frappe/form/controls/data.js:204 msgid "{0} already exists. Select another name" -msgstr "{0}已存在,请选择其他名称" +msgstr "{0}已存在。选择其他名称" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 msgid "{0} already unsubscribed" -msgstr "{0}已退订" +msgstr "{0}已经退订" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 msgid "{0} already unsubscribed for {1} {2}" -msgstr "{0}已为{1} {2}退订" +msgstr "{0}已经退订了{1} {2}" -#: frappe/utils/data.py:1740 +#: frappe/utils/data.py:1751 msgid "{0} and {1}" msgstr "{0}和{1}" @@ -30902,17 +31142,17 @@ msgstr "{0}和{1}" msgid "{0} are currently {1}" msgstr "{0}当前状态为{1}" -#: frappe/printing/doctype/print_format/print_format.py:89 +#: frappe/printing/doctype/print_format/print_format.py:95 msgid "{0} are required" msgstr "需要{0}" #: frappe/desk/form/assign_to.py:286 msgid "{0} assigned a new task {1} {2} to you" -msgstr "{0}给您分配了新任务{1} {2}" +msgstr "{0}分派了新任务 {1} {2} 给你" #: frappe/desk/doctype/todo/todo.py:48 msgid "{0} assigned {1}: {2}" -msgstr "{0}分配了{1}:{2}" +msgstr "{0}已分派{1}:{2}" #: frappe/public/js/frappe/form/footer/form_timeline.js:415 msgctxt "Form timeline" @@ -30925,14 +31165,14 @@ msgstr "{0}不能超过{1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 msgid "{0} cancelled this document" -msgstr "{0}取消了此文档" +msgstr "{0} 取消了本单据" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 msgctxt "Form timeline" msgid "{0} cancelled this document {1}" msgstr "{0}于{1}取消了此文档" -#: frappe/model/document.py:546 +#: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." msgstr "{0}未被取消,无法修订。请在创建修订前取消该文档" @@ -30942,15 +31182,15 @@ msgstr "{0}没有默认值不能同时隐藏和设为必填" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 msgid "{0} changed the value of {1}" -msgstr "{0}更改了{1}的值" +msgstr "{0} 变更了 {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 msgid "{0} changed the value of {1} {2}" -msgstr "{0}更改了{1} {2}的值" +msgstr "{0} 变更了 {1} {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 msgid "{0} changed the values for {1}" -msgstr "{0}更改了{1}的值" +msgstr "{0} 变更了 {0} {1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 msgid "{0} changed the values for {1} {2}" @@ -30971,12 +31211,12 @@ msgstr "{0}包含无效的Fetch From表达式,不能自我引用" #: frappe/public/js/frappe/views/interaction.js:261 msgid "{0} created successfully" -msgstr "成功创建{0}" +msgstr "{0}已成功创建" #: frappe/public/js/frappe/form/footer/form_timeline.js:141 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" -msgstr "{0}创建了此内容" +msgstr "{0} 创建了本单据" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 msgctxt "Form timeline" @@ -30985,7 +31225,7 @@ msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:33 msgid "{0} d" -msgstr "{0}天" +msgstr "{0} 天" #: frappe/public/js/frappe/utils/pretty_date.js:60 msgid "{0} days ago" @@ -30994,23 +31234,27 @@ msgstr "{0}天前" #: frappe/website/doctype/website_settings/website_settings.py:96 #: frappe/website/doctype/website_settings/website_settings.py:116 msgid "{0} does not exist in row {1}" -msgstr "第{1}行不存在{0}" +msgstr "{0}不存在于第{1}行中" #: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" -msgstr "{1}中的{0}字段存在重复值,不能设置为唯一" +msgstr "{0}字段不能在{1}中设置为唯一,因为这里存在非唯一的数值" -#: frappe/core/doctype/data_import/importer.py:1068 +#: frappe/database/query.py:708 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." msgstr "无法根据此列值确定{0}格式,默认使用{1}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" -msgstr "{0}从{1}到{2}" +msgstr "{0} 从 {1} 变更为 {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" -msgstr "第{3}行的{0}从{1}更改为{2}" +msgstr "第{3}行中的 {0} 从 {1} 变更为 {2}" #: frappe/public/js/frappe/utils/pretty_date.js:29 msgid "{0} h" @@ -31018,15 +31262,11 @@ msgstr "{0}小时" #: frappe/core/doctype/user_permission/user_permission.py:77 msgid "{0} has already assigned default value for {1}." -msgstr "{0}已为{1}分配默认值" +msgstr "{0}已为{1}分派了默认值。" -#: frappe/email/doctype/newsletter/newsletter.py:380 -msgid "{0} has been successfully added to the Email Group." -msgstr "{0}已成功加入邮件组" - -#: frappe/email/queue.py:123 +#: frappe/email/queue.py:124 msgid "{0} has left the conversation in {1} {2}" -msgstr "{0}已退出{1} {2}的对话" +msgstr "{0}已经离开对话{1} {2}" #: frappe/public/js/frappe/utils/pretty_date.js:54 msgid "{0} hours ago" @@ -31039,7 +31279,7 @@ msgstr "如果{1}秒内未自动跳转,请点击{0}" #: frappe/website/doctype/website_settings/website_settings.py:102 #: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" -msgstr "第{1}行的{0}不能同时包含URL和子项" +msgstr "行{1}中的{0}不能同时有URL和子项" #: frappe/core/doctype/doctype/doctype.py:934 msgid "{0} is a mandatory field" @@ -31055,7 +31295,7 @@ msgstr "{0}是无效的数据字段" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 msgid "{0} is an invalid email address in 'Recipients'" -msgstr "'收件人'中的{0}是无效的电子邮箱地址" +msgstr "{0}是“收件人”中的无效电子邮件地址" #: frappe/public/js/frappe/views/reports/report_view.js:1468 msgid "{0} is between {1} and {2}" @@ -31094,13 +31334,17 @@ msgstr "{0}类似于{1}" msgid "{0} is mandatory" msgstr "{0}是必填项" +#: frappe/database/query.py:485 +msgid "{0} is not a child table of {1}" +msgstr "" + #: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 msgid "{0} is not a field of doctype {1}" msgstr "{0}不是文档类型{1}的字段" #: frappe/www/printview.py:384 msgid "{0} is not a raw printing format." -msgstr "{0}不是原始打印格式" +msgstr "{0}不是原生打印命令格式。" #: frappe/public/js/frappe/views/calendar/calendar.js:82 msgid "{0} is not a valid Calendar. Redirecting to default Calendar." @@ -31115,35 +31359,35 @@ msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0}不是有效的动态链接文档类型" #: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:202 +#: frappe/utils/__init__.py:203 msgid "{0} is not a valid Email Address" -msgstr "{0}不是有效的电子邮箱地址" +msgstr "{0} 不是有效的邮箱地址" #: frappe/geo/doctype/country/country.py:30 msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0}不是有效的ISO 3166 ALPHA-2代码" -#: frappe/utils/__init__.py:170 +#: frappe/utils/__init__.py:171 msgid "{0} is not a valid Name" msgstr "{0}不是有效的名称" -#: frappe/utils/__init__.py:149 +#: frappe/utils/__init__.py:150 msgid "{0} is not a valid Phone Number" msgstr "{0}不是有效的电话号码" #: frappe/model/workflow.py:189 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." -msgstr "{0}不是有效的工作流状态。请更新工作流后重试" +msgstr "{0}不是有效的工作流状态。请更新您的工作流,然后重试。" -#: frappe/permissions.py:796 +#: frappe/permissions.py:809 msgid "{0} is not a valid parent DocType for {1}" msgstr "{0}不是{1}的有效父文档类型" -#: frappe/permissions.py:816 +#: frappe/permissions.py:829 msgid "{0} is not a valid parentfield for {1}" msgstr "{0}不是{1}的有效父字段" -#: frappe/email/doctype/auto_email_report/auto_email_report.py:115 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0}不是有效的报告格式。报告格式应为以下之一:{1}" @@ -31167,9 +31411,9 @@ msgstr "{0}不属于{1}" msgid "{0} is not set" msgstr "{0}未设置" -#: frappe/printing/doctype/print_format/print_format.py:164 +#: frappe/printing/doctype/print_format/print_format.py:173 msgid "{0} is now default print format for {1} doctype" -msgstr "{0}现为{1}文档类型的默认打印格式" +msgstr "{0}现在是{1}类型的默认打印格式" #: frappe/public/js/frappe/views/reports/report_view.js:1476 msgid "{0} is one of {1}" @@ -31177,10 +31421,11 @@ msgstr "{0}属于{1}" #: frappe/email/doctype/email_account/email_account.py:304 #: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:92 +#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/utils/csvutils.py:156 msgid "{0} is required" -msgstr "{0}为必填项" +msgstr "{0}是必填项" #: frappe/public/js/frappe/views/reports/report_view.js:1492 msgid "{0} is set" @@ -31190,18 +31435,18 @@ msgstr "{0}已设置" msgid "{0} is within {1}" msgstr "{0}在{1}范围内" -#: frappe/public/js/frappe/list/list_view.js:1694 +#: frappe/public/js/frappe/list/list_view.js:1692 msgid "{0} items selected" -msgstr "已选择{0}项" +msgstr "已选{0}条记录" -#: frappe/core/doctype/user/user.py:1380 +#: frappe/core/doctype/user/user.py:1384 msgid "{0} just impersonated as you. They gave this reason: {1}" -msgstr "{0}刚刚以您的身份进行了模拟操作,原因:{1}" +msgstr "{0} 因为 {1} 原因以你的帐号登录了系统" #: frappe/public/js/frappe/form/footer/form_timeline.js:152 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" -msgstr "{0}最后编辑" +msgstr "{0} 最新修订了本单据" #: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" @@ -31209,11 +31454,11 @@ msgstr "{0}已登录" #: frappe/core/doctype/activity_log/feed.py:19 msgid "{0} logged out: {1}" -msgstr "{0}已注销:{1}" +msgstr "{0} 登出: {1}" #: frappe/public/js/frappe/utils/pretty_date.js:27 msgid "{0} m" -msgstr "{0}分钟前" +msgstr "{0} 分" #: frappe/desk/notifications.py:408 msgid "{0} mentioned you in a comment in {1} {2}" @@ -31227,35 +31472,35 @@ msgstr "{0}分钟前" msgid "{0} months ago" msgstr "{0}个月前" -#: frappe/model/document.py:1791 +#: frappe/model/document.py:1801 msgid "{0} must be after {1}" msgstr "{0}必须在{1}之后" -#: frappe/model/document.py:1550 +#: frappe/model/document.py:1560 msgid "{0} must be beginning with '{1}'" msgstr "{0}必须以'{1}'开头" -#: frappe/model/document.py:1552 +#: frappe/model/document.py:1562 msgid "{0} must be equal to '{1}'" msgstr "{0}必须等于'{1}'" -#: frappe/model/document.py:1548 +#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" msgstr "{0}不能是{1}中的任何一项" -#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" -msgstr "{0}必须是{1}中的一项" +msgstr "{0}必须属于{1}" #: frappe/model/base_document.py:876 msgid "{0} must be set first" -msgstr "需先设置{0}" +msgstr "{0}必须首先设置" #: frappe/model/base_document.py:729 msgid "{0} must be unique" -msgstr "{0}必须唯一" +msgstr "{0}必须是唯一的" -#: frappe/model/document.py:1554 +#: frappe/model/document.py:1564 msgid "{0} must be {1} {2}" msgstr "{0}必须为{1}{2}" @@ -31269,41 +31514,37 @@ msgstr "{0}不是有效状态" #: frappe/model/rename_doc.py:394 msgid "{0} not allowed to be renamed" -msgstr "{0}不允许重命名" +msgstr "{0}不允许改名" #: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 msgid "{0} not found" -msgstr "未找到{0}" +msgstr "{0}未找到" #: frappe/core/doctype/report/report.py:427 #: frappe/public/js/frappe/list/list_view.js:1068 msgid "{0} of {1}" -msgstr "{1}中的第{0}项" +msgstr "第{0}项 / 共{1}项" #: frappe/public/js/frappe/list/list_view.js:1070 msgid "{0} of {1} ({2} rows with children)" -msgstr "{1}中的第{0}项(含{2}行子项)" +msgstr "{0} / {1} ({2} 行有子记录)" -#: frappe/email/doctype/newsletter/newsletter.js:205 -msgid "{0} of {1} sent" -msgstr "已发送{1}中的{0}" - -#: frappe/utils/data.py:1555 +#: frappe/utils/data.py:1566 msgctxt "Money in words" msgid "{0} only." msgstr "仅{0}" -#: frappe/utils/data.py:1730 +#: frappe/utils/data.py:1741 msgid "{0} or {1}" msgstr "{0}或{1}" #: frappe/core/doctype/user_permission/user_permission_list.js:177 msgid "{0} record deleted" -msgstr "已删除{0}条记录" +msgstr "{0}记录已删除" #: frappe/public/js/frappe/logtypes.js:22 msgid "{0} records are not automatically deleted." -msgstr "{0}条记录不会自动删除" +msgstr "{0} 不会被自动删除" #: frappe/public/js/frappe/logtypes.js:29 msgid "{0} records are retained for {1} days." @@ -31315,7 +31556,7 @@ msgstr "已删除{0}条记录" #: frappe/public/js/frappe/data_import/data_exporter.js:229 msgid "{0} records will be exported" -msgstr "将导出{0}条记录" +msgstr "将导出 {0} 笔记录" #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" @@ -31328,31 +31569,31 @@ msgstr "{0}移除了其分配" #: frappe/public/js/frappe/roles_editor.js:62 msgid "{0} role does not have permission on any doctype" -msgstr "{0}角色无任何文档类型权限" +msgstr "角色 {0} 无单据类型权限" -#: frappe/model/document.py:1784 +#: frappe/model/document.py:1794 msgid "{0} row #{1}: " msgstr "{0}行#{1}:" -#: frappe/desk/query_report.py:612 +#: frappe/desk/query_report.py:625 msgid "{0} saved successfully" -msgstr "{0}保存成功" +msgstr "{0}已成功保存" #: frappe/desk/doctype/todo/todo.py:44 msgid "{0} self assigned this task: {1}" -msgstr "{0}自行分配了任务:{1}" +msgstr "{0}分派了待办给自己:{1}" #: frappe/share.py:233 msgid "{0} shared a document {1} {2} with you" -msgstr "{0}与您共享了文档{1}{2}" +msgstr "{0}分享了单据{1} {2}给你" #: frappe/core/doctype/docshare/docshare.py:77 msgid "{0} shared this document with everyone" -msgstr "{0}已将此文档公开共享" +msgstr "{0}将本单据分享给了所有人" #: frappe/core/doctype/docshare/docshare.py:80 msgid "{0} shared this document with {1}" -msgstr "{0}已将此文档共享给{1}" +msgstr "{0}向{1}分享了此单据" #: frappe/core/doctype/doctype/doctype.py:316 msgid "{0} should be indexed because it's referred in dashboard connections" @@ -31360,11 +31601,11 @@ msgstr "{0}应建立索引,因其在仪表盘连接中被引用" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 msgid "{0} should not be same as {1}" -msgstr "{0}不能与{1}相同" +msgstr "{0}应该与{1}相同" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 msgid "{0} submitted this document" -msgstr "{0}提交了此文档" +msgstr "{0} 提交了本单据" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 msgctxt "Form timeline" @@ -31374,21 +31615,21 @@ msgstr "{0}于{1}提交了此文档" #: frappe/email/doctype/email_group/email_group.py:62 #: frappe/email/doctype/email_group/email_group.py:133 msgid "{0} subscribers added" -msgstr "已添加{0}位订阅者" +msgstr "{0}新增用户" -#: frappe/email/queue.py:68 +#: frappe/email/queue.py:69 msgid "{0} to stop receiving emails of this type" -msgstr "{0}以停止接收此类邮件" +msgstr "{0}停止接收此类邮件" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 #: frappe/public/js/frappe/form/formatters.js:234 msgid "{0} to {1}" -msgstr "{0}至{1}" +msgstr "{0}到{1}" #: frappe/core/doctype/docshare/docshare.py:89 msgid "{0} un-shared this document with {1}" -msgstr "{0}取消与{1}共享此文档" +msgstr "{0}关闭了此单据对{1}的分享" #: frappe/custom/doctype/customize_form/customize_form.py:253 msgid "{0} updated" @@ -31404,7 +31645,7 @@ msgstr "{0}查看了此项" #: frappe/public/js/frappe/utils/pretty_date.js:35 msgid "{0} w" -msgstr "{0}周前" +msgstr "{0} 周" #: frappe/public/js/frappe/utils/pretty_date.js:64 msgid "{0} weeks ago" @@ -31420,7 +31661,7 @@ msgstr "{0}年前" #: frappe/public/js/frappe/form/link_selector.js:219 msgid "{0} {1} added" -msgstr "已添加{0}{1}" +msgstr "已添加{0} {1}" #: frappe/public/js/frappe/utils/dashboard_utils.js:270 msgid "{0} {1} added to Dashboard {2}" @@ -31428,31 +31669,31 @@ msgstr "{0}{1}已添加到仪表盘{2}" #: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" -msgstr "{0}{1}已存在" +msgstr "{0} {1}已经存在" #: frappe/model/base_document.py:987 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" -msgstr "{0} {1}不能为“{2}”。它应该是一个“{3}”" +msgstr "{0} {1}不能为“{2}”。只能是“{3}”其中一个" #: frappe/utils/nestedset.py:340 msgid "{0} {1} cannot be a leaf node as it has children" -msgstr "{0}{1}含有子节点,不能作为叶节点" +msgstr "{0} {1}不能是一个叶节点,因为它有下级" #: frappe/model/rename_doc.py:376 msgid "{0} {1} does not exist, select a new target to merge" -msgstr "{0}{1}不存在,请选择新合并目标" +msgstr "{0} {1}不存在,选择一个新的目标合并" #: frappe/public/js/frappe/form/form.js:951 msgid "{0} {1} is linked with the following submitted documents: {2}" -msgstr "{0}{1}关联了以下已提交文档:{2}" +msgstr "{0} {1} 关联了下列已提交单据: {2}" -#: frappe/model/document.py:256 frappe/permissions.py:567 +#: frappe/model/document.py:258 frappe/permissions.py:580 msgid "{0} {1} not found" -msgstr "未找到{0}{1}" +msgstr "{0} {1}未找到" -#: frappe/model/delete_doc.py:247 +#: frappe/model/delete_doc.py:248 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." -msgstr "{0}{1}:已提交记录不可删除,需先{2}取消{3}该记录" +msgstr "{0} {1}: 已提交单据不可被删除. 应 {2} 先取消 {3}." #: frappe/model/base_document.py:1115 msgid "{0}, Row {1}" @@ -31464,35 +31705,35 @@ msgstr "已完成{0}/{1} | 请保持此标签页开启直至完成" #: frappe/model/base_document.py:1120 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" -msgstr "{0}:'{1}'(当前{3}字符)将被截断,最大允许字符数为{2}" +msgstr "{0}:“{1}”({3})将被截断,因最大允许字符数为{2}" #: frappe/core/doctype/doctype/doctype.py:1800 msgid "{0}: Cannot set Amend without Cancel" -msgstr "{0}:未设置取消时无法设置修订" +msgstr "{0} :没有“取消”的情况下不能设置“修订”" #: frappe/core/doctype/doctype/doctype.py:1818 msgid "{0}: Cannot set Assign Amend if not Submittable" -msgstr "{0}:非可提交类型无法设置分配修订" +msgstr "{0} :没有“提交”的情况下不能分派“修订”" #: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Assign Submit if not Submittable" -msgstr "{0}:非可提交类型无法设置分配提交" +msgstr "{0} :没有“提交”的情况下不能分派“提交”" #: frappe/core/doctype/doctype/doctype.py:1795 msgid "{0}: Cannot set Cancel without Submit" -msgstr "{0}:未设置提交时无法设置取消" +msgstr "{0} :没有“提交”的情况下不能分派“取消”" #: frappe/core/doctype/doctype/doctype.py:1802 msgid "{0}: Cannot set Import without Create" -msgstr "{0}:未设置创建权限时无法设置导入" +msgstr "{0} :没有“创建”的情况下不能分派“导入”" #: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" -msgstr "{0}:未设置写入权限时无法设置提交/取消/修订" +msgstr "{0} :没有写入的情况下不能设置“提交”,“取消”,“修订”" #: frappe/core/doctype/doctype/doctype.py:1822 msgid "{0}: Cannot set import as {1} is not importable" -msgstr "{0}:{1}不可导入,无法设置导入权限" +msgstr "{0} :{1}无法导入所以不能设置“导入”" #: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" @@ -31500,51 +31741,51 @@ msgstr "{0}:附加新周期性文档失败。需在打印设置中启用{1}以 #: frappe/core/doctype/doctype/doctype.py:1426 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" -msgstr "{0}:字段'{1}'存在重复值,无法设置为唯一" +msgstr "{0}:字段“{1}”无法设置为“唯一”,因为它具有非唯一值" #: frappe/core/doctype/doctype/doctype.py:1334 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" -msgstr "{0}:第{2}行字段{1}无默认值时,不能同时设为隐藏和必填" +msgstr "{0}:行{2}中的字段{1}无法隐藏,并且在没有默认情况下是必需的" #: frappe/core/doctype/doctype/doctype.py:1293 msgid "{0}: Field {1} of type {2} cannot be mandatory" -msgstr "{0}:类型为{2}的字段{1}不可设为必填" +msgstr "{0}:类型{2}的字段{1}不能是必需的" #: frappe/core/doctype/doctype/doctype.py:1281 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" -msgstr "{0}:字段名{1}在第{2}行重复出现" +msgstr "{0}:字段名{1}在行{2}中多次出现" #: frappe/core/doctype/doctype/doctype.py:1413 msgid "{0}: Fieldtype {1} for {2} cannot be unique" -msgstr "{0}:类型为{1}的字段{2}不可设为唯一" +msgstr "{0}:{2}的字段类型{1}不能是唯一的" #: frappe/core/doctype/doctype/doctype.py:1755 msgid "{0}: No basic permissions set" -msgstr "{0}:未设置基础权限" +msgstr "{0} :基本权限未设置" #: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" -msgstr "{0}:同一角色、层级和{1}仅允许存在一条规则" +msgstr "{0}:具有相同的角色,级别和允许只有一个规则{1}" #: frappe/core/doctype/doctype/doctype.py:1315 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" -msgstr "{0}:第{2}行字段{1}的选项必须是有效文档类型" +msgstr "{0}:选项必须是行{2}中字段{1}的有效DocType" #: frappe/core/doctype/doctype/doctype.py:1304 msgid "{0}: Options required for Link or Table type field {1} in row {2}" -msgstr "{0}:第{2}行链接或表格类型字段{1}需要设置选项" +msgstr "{0}:请为第{2}行中的链接或表类型字段{1}维护选项信息" #: frappe/core/doctype/doctype/doctype.py:1322 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" -msgstr "{0}:字段{3}的选项{1}必须与文档类型名称{2}一致" +msgstr "{0}:选项{1}必须与字段{3}的单据类型名称{2}相同" #: frappe/public/js/frappe/form/workflow.js:45 msgid "{0}: Other permission rules may also apply" -msgstr "{0}:可能同时适用其他权限规则" +msgstr "{0}:其它权限也可能适用" #: frappe/core/doctype/doctype/doctype.py:1784 msgid "{0}: Permission at level 0 must be set before higher levels are set" -msgstr "{0}:需先设置0级权限再设置更高层级" +msgstr "{0} :更高级别的权限设置前请先设置0级权限" #: frappe/public/js/frappe/form/controls/data.js:51 msgid "{0}: You can increase the limit for the field if required via {1}" @@ -31561,15 +31802,15 @@ msgstr "{0}:{1}" #: frappe/workflow/doctype/workflow_action/workflow_action.py:172 msgid "{0}: {1} is set to state {2}" -msgstr "{0}:{1}状态已设为{2}" +msgstr "{0}:{1} 状态已变更为 {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1281 +#: frappe/public/js/frappe/views/reports/query_report.js:1282 msgid "{0}: {1} vs {2}" msgstr "{0}:{1}与{2}" #: frappe/core/doctype/doctype/doctype.py:1434 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" -msgstr "{0}:类型为{1}的字段{2}不可建立索引" +msgstr "{0}:无法为{2}的字段类型{1}生成索引" #: frappe/public/js/frappe/form/quick_entry.js:195 msgid "{1} saved" @@ -31593,24 +31834,24 @@ msgstr "已选择{count}行" #: frappe/core/doctype/doctype/doctype.py:1488 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." -msgstr "{{{0}}}不是有效字段名模式,应为{{field_name}}" +msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAME}}。" #: frappe/public/js/frappe/form/form.js:521 msgid "{} Complete" msgstr "已完成{}" -#: frappe/utils/data.py:2488 +#: frappe/utils/data.py:2523 msgid "{} Invalid python code on line {}" msgstr "第{}行存在无效Python代码" -#: frappe/utils/data.py:2497 +#: frappe/utils/data.py:2532 msgid "{} Possibly invalid python code.
{}" msgstr "可能存在无效Python代码:
{}" #. Count format of shortcut in the Website Workspace #: frappe/website/workspace/website/website.json msgid "{} Published" -msgstr "已发布{}" +msgstr "{} 已发布" #: frappe/core/doctype/log_settings/log_settings.py:54 msgid "{} does not support automated log clearing." @@ -31625,7 +31866,7 @@ msgstr "{}字段不能为空" msgid "{} has been disabled. It can only be enabled if {} is checked." msgstr "{}已被禁用,需勾选{}方可启用" -#: frappe/utils/data.py:135 +#: frappe/utils/data.py:145 msgid "{} is not a valid date string." msgstr "{}不是有效日期字符串" @@ -31644,5 +31885,5 @@ msgstr "PATH中未找到{}!执行备份需要此组件" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 #: frappe/public/js/frappe/file_uploader/WebLink.vue:4 msgid "← Back to upload files" -msgstr "← 返回上传文件" +msgstr "返回上传文件" diff --git a/frappe/migrate.py b/frappe/migrate.py index ad44316772..9d64e8a842 100644 --- a/frappe/migrate.py +++ b/frappe/migrate.py @@ -78,8 +78,6 @@ class SiteMigration: frappe.flags.touched_tables = set() self.touched_tables_file = frappe.get_site_path("touched_tables.json") frappe.clear_cache() - add_column(doctype="DocType", column_name="migration_hash", fieldtype="Data") - frappe.clear_cache() if os.path.exists(self.touched_tables_file): os.remove(self.touched_tables_file) diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 7797b4d9ce..aa22772b9b 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -873,7 +873,7 @@ class BaseDocument: assert df.fieldtype == "Dynamic Link" doctype = self.get(df.options) if not doctype: - frappe.throw(_("{0} must be set first").format(self.meta.get_label(df.options))) + frappe.throw(_("{0} must be set first").format(_(self.meta.get_label(df.options)))) invalidate_distinct_link_doctypes(df.parent, df.options, doctype) meta = frappe.get_meta(doctype) @@ -1051,7 +1051,7 @@ class BaseDocument: if self.get(fieldname) != value: frappe.throw( - _("Value cannot be changed for {0}").format(self.meta.get_label(fieldname)), + _("Value cannot be changed for {0}").format(_(self.meta.get_label(fieldname))), frappe.CannotChangeConstantError, ) @@ -1260,7 +1260,7 @@ class BaseDocument: doctype = self.meta.get_field(parentfield).options if parentfield else self.doctype df = frappe.get_meta(doctype).get_field(fieldname) - if df.fieldtype in ("Currency", "Float", "Percent"): + if df and df.fieldtype in ("Currency", "Float", "Percent"): self._precision[cache_key][fieldname] = get_field_precision(df, self) return self._precision[cache_key][fieldname] diff --git a/frappe/model/db_query.py b/frappe/model/db_query.py index 0689689016..3ba56ee575 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -1164,20 +1164,34 @@ from {tables} if not parameters: return - blacklisted_sql_functions = { - "sleep", - } _lower = parameters.lower() - if "select" in _lower and "from" in _lower: - frappe.throw(_("Cannot use sub-query in order by")) - if ORDER_GROUP_PATTERN.match(_lower): frappe.throw(_("Illegal SQL Query")) + subquery_indicators = { + r"union", + r"intersect", + r"select\b.*\bfrom", + } + + if any(re.search("\b" + pattern + "\b", _lower) for pattern in subquery_indicators): + frappe.throw(_("Cannot use sub-query here.")) + + blacklisted_sql_functions = { + "sleep", + "benchmark", + "extractvalue", + "database", + "user", + "current_user", + "version", + "substr", + "substring", + } + for field in parameters.split(","): field = field.strip() - function = field.split("(", 1)[0].rstrip().lower() full_field_name = "." in field and field.startswith("`tab") if full_field_name: @@ -1187,9 +1201,10 @@ from {tables} tbl = tbl[4:-1] frappe.throw(_("Please select atleast 1 column from {0} to sort/group").format(tbl)) - # Check if the function is used anywhere in the field - if any(func in function for func in blacklisted_sql_functions): - frappe.throw(_("Cannot use {0} in order/group by").format(function)) + # Check for SQL function using regex with word boundaries and optional whitespace before parenthesis + for func in blacklisted_sql_functions: + if re.search(r"\b" + re.escape(func) + r"\W*\(", field.lower()): + frappe.throw(_("Cannot use {0} in order/group by").format(field)) def add_limit(self): if self.limit_page_length: diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index 849cc06707..6b3914527d 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -13,6 +13,7 @@ from frappe.model.docstatus import DocStatus from frappe.model.dynamic_links import get_dynamic_link_map from frappe.model.naming import revert_series_if_last from frappe.model.utils import is_virtual_doctype +from frappe.utils.data import get_link_to_form from frappe.utils.file_manager import remove_all from frappe.utils.global_search import delete_for_document from frappe.utils.password import delete_all_passwords_for @@ -367,8 +368,8 @@ def check_if_doc_is_dynamically_linked(doc, method="Delete"): def raise_link_exists_exception(doc, reference_doctype, reference_docname, row=""): - doc_link = f'
{doc.name}' - reference_link = f'{reference_docname}' + doc_link = get_link_to_form(doc.doctype, doc.name, doc.name) + reference_link = get_link_to_form(reference_doctype, reference_docname, reference_docname) # hack to display Single doctype only once in message if reference_doctype == reference_docname: diff --git a/frappe/model/document.py b/frappe/model/document.py index 698b01718f..9e342e7381 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -18,6 +18,7 @@ import frappe from frappe import _, is_whitelisted, msgprint from frappe.core.doctype.file.utils import relink_mismatched_files from frappe.core.doctype.server_script.server_script_utils import run_server_script_for_doc_event +from frappe.database.utils import commit_after_response from frappe.desk.form.document_follow import follow_document from frappe.integrations.doctype.webhook import run_webhooks from frappe.model import optional_fields, table_fields @@ -27,6 +28,7 @@ from frappe.model.naming import set_new_name, validate_name from frappe.model.utils import is_virtual_doctype, simple_singledispatch from frappe.model.workflow import set_workflow_state_on_action, validate_workflow from frappe.types import DF +from frappe.types.filter import FilterSignature from frappe.utils import compare, cstr, date_diff, file_lock, flt, get_table_name, now from frappe.utils.data import get_absolute_url, get_datetime, get_timedelta, getdate from frappe.utils.global_search import update_global_search @@ -37,7 +39,7 @@ if TYPE_CHECKING: from frappe.core.doctype.docfield.docfield import DocField -DOCUMENT_LOCK_EXPIRTY = 3 * 60 * 60 # All locks expire in 3 hours automatically +DOCUMENT_LOCK_EXPIRY = 3 * 60 * 60 # All locks expire in 3 hours automatically DOCUMENT_LOCK_SOFT_EXPIRY = 30 * 60 # Let users force-unlock after 30 minutes @@ -204,7 +206,7 @@ class Document(BaseDocument): if not file_lock.lock_exists(signature): return False - if file_lock.lock_age(signature) > DOCUMENT_LOCK_EXPIRTY: + if file_lock.lock_age(signature) > DOCUMENT_LOCK_EXPIRY: return False return True @@ -714,7 +716,7 @@ class Document(BaseDocument): def set_new_name(self, force=False, set_name=None, set_child_names=True): """Calls `frappe.naming.set_new_name` for parent and child docs.""" - if (frappe.flags.api_name_set or self.flags.name_set) and not force: + if self.flags.name_set and not force: return autoname = self.meta.autoname or "" @@ -899,7 +901,7 @@ class Document(BaseDocument): if fail: frappe.throw( _("Value cannot be changed for {0}").format( - frappe.bold(self.meta.get_label(field.fieldname)) + frappe.bold(_(self.meta.get_label(field.fieldname))) ), exc=frappe.CannotChangeConstantError, ) @@ -1370,7 +1372,13 @@ class Document(BaseDocument): if raise_exception: raise - frappe.clear_last_message() + return frappe.clear_last_message() + + for fieldname in self._table_fieldnames: + for row in self.get(fieldname): + row._doc_before_save = next( + (d for d in (self._doc_before_save.get(fieldname) or []) if d.name == row.name), None + ) def run_post_save_methods(self): """Run standard methods after `INSERT` or `UPDATE`. Standard Methods are: @@ -1630,7 +1638,7 @@ class Document(BaseDocument): def validate_table_has_rows(self, parentfield, raise_exception=None): """Raise exception if Table field is empty.""" if not (isinstance(self.get(parentfield), list) and len(self.get(parentfield)) > 0): - label = self.meta.get_label(parentfield) + label = _(self.meta.get_label(parentfield)) frappe.throw( _("Table {0} cannot be empty").format(label), raise_exception or frappe.EmptyTableError ) @@ -1697,10 +1705,11 @@ class Document(BaseDocument): if user not in _seen: _seen.append(user) - frappe.db.set_value( - self.doctype, self.name, "_seen", json.dumps(_seen), update_modified=False + commit_after_response( + lambda: frappe.db.set_value( + self.doctype, self.name, "_seen", json.dumps(_seen), update_modified=False + ) ) - frappe.local.flags.commit = True def add_viewed(self, user=None, force=False, unique_views=False): """Add a view log for the current document""" @@ -1726,8 +1735,7 @@ class Document(BaseDocument): if frappe.flags.read_only: view_log.deferred_insert() else: - view_log.insert(ignore_permissions=True) - frappe.local.flags.commit = True + commit_after_response(lambda: view_log.insert(ignore_permissions=True)) return view_log @@ -1822,7 +1830,7 @@ class Document(BaseDocument): signature = self.get_signature() if file_lock.lock_exists(signature): lock_exists = True - if file_lock.lock_age(signature) > DOCUMENT_LOCK_EXPIRTY: + if file_lock.lock_age(signature) > DOCUMENT_LOCK_EXPIRY: file_lock.delete_lock(signature) lock_exists = False if timeout: @@ -2092,3 +2100,183 @@ class LazyChildTable: return __dict[fieldname] # Note: Don't implement __set__ method! https://docs.python.org/3/howto/descriptor.html#descriptor-protocol + + +def copy_doc(doc: "Document", ignore_no_copy: bool = True) -> "Document": + """No_copy fields also get copied.""" + import copy + from types import MappingProxyType + + from frappe.model.base_document import BaseDocument + + def remove_no_copy_fields(d): + for df in d.meta.get("fields", {"no_copy": 1}): + if hasattr(d, df.fieldname): + d.set(df.fieldname, None) + + fields_to_clear = ["name", "owner", "creation", "modified", "modified_by"] + + if not frappe.in_test: + fields_to_clear.append("docstatus") + + if isinstance(doc, BaseDocument): + d = doc.as_dict() + elif isinstance(doc, MappingProxyType): # global test record + d = dict(doc) + else: + d = doc + + newdoc = get_doc(copy.deepcopy(d)) + newdoc.set("__islocal", 1) + for fieldname in [*fields_to_clear, "amended_from", "amendment_date"]: + newdoc.set(fieldname, None) + + if not ignore_no_copy: + remove_no_copy_fields(newdoc) + + for d in newdoc.get_all_children(): + d.set("__islocal", 1) + + for fieldname in fields_to_clear: + d.set(fieldname, None) + + if not ignore_no_copy: + remove_no_copy_fields(d) + + return newdoc + + +def new_doc( + doctype: str, + *, + parent_doc: Optional["Document"] = None, + parentfield: str | None = None, + as_dict: bool = False, + **kwargs, +) -> "Document": + """Return a new document of the given DocType with defaults set. + + :param doctype: DocType of the new document. + :param parent_doc: [optional] add to parent document. + :param parentfield: [optional] add against this `parentfield`. + :param as_dict: [optional] return as dictionary instead of Document. + :param kwargs: [optional] You can specify fields as field=value pairs in function call. + """ + + from frappe.model.create_new import get_new_doc + + new_doc = get_new_doc(doctype, parent_doc, parentfield, as_dict=as_dict) + + return new_doc.update(kwargs) + + +def get_cached_doc(*args: Any, **kwargs: Any) -> "Document": + """Identical to `frappe.get_doc`, but return from cache if available.""" + if (key := can_cache_doc(args)) and (doc := frappe.cache.get_value(key)): + return doc + + # Not found in cache, fetch from DB + doc = get_doc(*args, **kwargs) + + # Store in cache + if not key: + key = get_document_cache_key(doc.doctype, doc.name) + + _set_document_in_cache(key, doc) + + return doc + + +def _set_document_in_cache(key: str, doc: "Document") -> None: + frappe.cache.set_value(key, doc, expires_in_sec=3600) + + +def can_cache_doc(args) -> str | None: + """ + Determine if document should be cached based on get_doc params. + Return cache key if doc can be cached, None otherwise. + """ + + if not args: + return + + doctype = args[0] + name = doctype if len(args) == 1 or args[1] is None else args[1] + + # Only cache if both doctype and name are strings + if isinstance(doctype, str) and isinstance(name, str): + return get_document_cache_key(doctype, name) + + +def get_document_cache_key(doctype: str, name: str): + return f"document_cache::{doctype}::{name}" + + +def clear_document_cache(doctype: str, name: str | None = None) -> None: + frappe.db.value_cache.pop(doctype, None) + + def clear_in_redis(): + if name is not None: + frappe.cache.delete_value(get_document_cache_key(doctype, name)) + else: + frappe.cache.delete_keys(get_document_cache_key(doctype, "")) + + clear_in_redis() + if hasattr(frappe.db, "after_commit"): + frappe.db.after_commit.add(clear_in_redis) + frappe.db.after_rollback.add(clear_in_redis) + + if doctype == "System Settings" and hasattr(frappe.local, "system_settings"): + delattr(frappe.local, "system_settings") + + if doctype == "Website Settings" and hasattr(frappe.local, "website_settings"): + delattr(frappe.local, "website_settings") + + +def get_cached_value( + doctype: str, name: str | dict, fieldname: str | Iterable[str] = "name", as_dict: bool = False +) -> Any: + try: + doc = get_cached_doc(doctype, name) + except frappe.DoesNotExistError: + frappe.clear_last_message() + return + + if isinstance(fieldname, str): + if as_dict: + frappe.throw("Cannot make dict for single fieldname") + return doc.get(fieldname) + + values = [doc.get(f) for f in fieldname] + if as_dict: + return frappe._dict(zip(fieldname, values, strict=False)) + return values + + +def get_single_value(setting: str, fieldname: str, /, *, as_dict: bool = False): + """Return the cached value associated with the given fieldname from single DocType. + + Usage: + telemetry_enabled = frappe.get_single_value("System Settings", "telemetry_enabled") + """ + return get_cached_value(setting, setting, fieldname=fieldname, as_dict=as_dict) + + +def get_last_doc( + doctype, + filters: FilterSignature | None = None, + order_by="creation desc", + *, + for_update=False, +): + """Get last created document of this type.""" + d = frappe.get_all(doctype, filters=filters, limit_page_length=1, order_by=order_by, pluck="name") + if d: + return get_doc(doctype, d[0], for_update=for_update) + else: + raise frappe.DoesNotExistError(doctype=doctype) + + +def get_single(doctype): + """Return a `frappe.model.document.Document` object of the given Single doctype.""" + return get_doc(doctype, doctype) diff --git a/frappe/model/sync.py b/frappe/model/sync.py index 445f06dc41..72d644cd0b 100644 --- a/frappe/model/sync.py +++ b/frappe/model/sync.py @@ -109,11 +109,12 @@ def sync_for(app_name, force=0, reset_permissions=False): if l: for i, doc_path in enumerate(files): - import_file_by_path( + imported = import_file_by_path( doc_path, force=force, ignore_version=True, reset_permissions=reset_permissions ) - frappe.db.commit() + if imported: + frappe.db.commit(chain=True) # show progress bar update_progress_bar(f"Updating DocTypes for {app_name}", i, l) diff --git a/frappe/model/workflow.py b/frappe/model/workflow.py index 69eafe6c6b..f1198f22cc 100644 --- a/frappe/model/workflow.py +++ b/frappe/model/workflow.py @@ -14,6 +14,9 @@ if TYPE_CHECKING: from frappe.workflow.doctype.workflow.workflow import Workflow +DEFAULT_WORKFLOW_TASKS = ["Webhook", "Server Script"] + + class WorkflowStateError(frappe.ValidationError): pass @@ -126,6 +129,59 @@ def apply_workflow(doc, action): if next_state.update_field: doc.set(next_state.update_field, next_state.update_value) + if transition.transition_tasks: + workflow_transitions = frappe.db.get_all( + "Workflow Transition Task", + {"parent": transition.transition_tasks, "enabled": True}, + ["task", "link", "asynchronous"], + order_by="idx", + ) + + """app-specific actions defined by the user + Example: + def create_customer(doc): + + + this goes in the hooks.py + workflow_methods = [{"name": "Create a customer", "method": + "frappe.dotted.path.create_customer"}] + """ + + tasks = {i["name"]: i["method"] for i in frappe.get_hooks("workflow_methods")} + + sync_tasks = [] + async_tasks = [] + for workflow_transition in workflow_transitions: + # edge-case with user-defined server scripts + if workflow_transition.task in DEFAULT_WORKFLOW_TASKS: + match workflow_transition.task: + case "Webhook": + webhook = frappe.get_doc("Webhook", workflow_transition.link) + task_method = webhook.execute_for_doc + + case "Server Script": + server_script = frappe.get_doc("Server Script", workflow_transition.link) + task_method = server_script.execute_workflow_task + + else: # normal app-defined tasks + try: + task_method = frappe.get_attr(tasks[workflow_transition.task]) + except KeyError: + frappe.throw(_('There is no task called "{}"').format(workflow_transition.task)) + + if workflow_transition.asynchronous: + async_tasks.append(task_method) + else: + sync_tasks.append(task_method) + + # will execute in the same transaction as the rest of the transition + for sync_task in sync_tasks: + sync_task(doc) + + # will spawn separate background jobs. Use for asynchronous, optional tasks. + for async_task in async_tasks: + frappe.enqueue(async_task, doc=doc, enqueue_after_commit=True) + new_docstatus = DocStatus(next_state.doc_status or 0) if doc.docstatus.is_draft() and new_docstatus.is_draft(): doc.save() diff --git a/frappe/modules/import_file.py b/frappe/modules/import_file.py index 433daa926f..eb8f53d0b6 100644 --- a/frappe/modules/import_file.py +++ b/frappe/modules/import_file.py @@ -1,9 +1,10 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE import hashlib -import json import os +import orjson + import frappe from frappe.model.base_document import get_controller from frappe.modules import get_module_path, scrub_dt_dn @@ -108,9 +109,10 @@ def import_file_by_path( docs = read_doc_from_file(path) except OSError: print(f"{path} missing") - return + return False calculated_hash = calculate_hash(path) + imported = False if docs: if not isinstance(docs, list): @@ -147,6 +149,7 @@ def import_file_by_path( reset_permissions=reset_permissions, path=path, ) + imported = True if doc["doctype"] == "DocType": doctype_table = DocType("DocType") @@ -163,7 +166,7 @@ def import_file_by_path( if new_modified_timestamp: update_modified(new_modified_timestamp, doc) - return True + return imported def read_doc_from_file(path): @@ -171,7 +174,7 @@ def read_doc_from_file(path): if os.path.exists(path): with open(path) as f: try: - doc = json.loads(f.read()) + doc = orjson.loads(f.read()) except ValueError: print(f"bad json: {path}") raise diff --git a/frappe/modules/patch_handler.py b/frappe/modules/patch_handler.py index 0ed2ad35b2..90d5a74cc9 100644 --- a/frappe/modules/patch_handler.py +++ b/frappe/modules/patch_handler.py @@ -176,7 +176,7 @@ def execute_patch(patchmodule: str, method=None, methodargs=None): ) start_time = time.monotonic() - frappe.db.begin() + frappe.db.commit() frappe.db.auto_commit_on_many_writes = 0 try: if patchmodule: diff --git a/frappe/patches.txt b/frappe/patches.txt index 074c422ab7..b6374edd7b 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -1,5 +1,5 @@ [pre_model_sync] -frappe.patches.v16_0.enable_setup_complete #25-06-2025 re-run-patch +frappe.patches.v16_0.enable_setup_complete #01-07-2025 re-run-patch frappe.patches.v15_0.remove_implicit_primary_key frappe.patches.v12_0.remove_deprecated_fields_from_doctype #3 execute:frappe.utils.global_search.setup_global_search_table() @@ -195,7 +195,6 @@ frappe.patches.v15_0.copy_disable_prepared_report_to_prepared_report execute:frappe.reload_doc("desk", "doctype", "Form Tour") execute:frappe.delete_doc('Page', 'recorder', ignore_missing=True, force=True) frappe.patches.v14_0.modify_value_column_size_for_singles -frappe.patches.v15_0.migrate_to_utm frappe.integrations.doctype.oauth_bearer_token.patches.clear_old_tokens [post_model_sync] @@ -246,4 +245,5 @@ frappe.patches.v16_0.move_role_desk_settings_to_user frappe.printing.doctype.print_format.patches.sets_wkhtmltopdf_as_default_for_pdf_generator_field frappe.patches.v14_0.fix_user_settings_collation execute:frappe.call("frappe.core.doctype.system_settings.system_settings.sync_system_settings") +frappe.patches.v15_0.migrate_to_utm frappe.patches.v16_0.add_module_deprecation_warning diff --git a/frappe/patches/v16_0/add_module_deprecation_warning.py b/frappe/patches/v16_0/add_module_deprecation_warning.py index 16e1e9a9e1..fa0ee5fda1 100644 --- a/frappe/patches/v16_0/add_module_deprecation_warning.py +++ b/frappe/patches/v16_0/add_module_deprecation_warning.py @@ -5,6 +5,8 @@ def execute(): module_app_map = { "Social Module/ Energy Points System": ("eps", "system"), "Offsite Backup Integrations (Google Drive, S3, Dropbox)": ("offsite_backups", "intergration"), + "Newsletter": ("newsletter", "functionality"), + "Blogs": ("blogs", "functionality"), } for module, (app, system_type) in module_app_map.items(): click.secho( diff --git a/frappe/printing/doctype/print_format/print_format.js b/frappe/printing/doctype/print_format/print_format.js index cb9bd28570..f2dea7ff24 100644 --- a/frappe/printing/doctype/print_format/print_format.js +++ b/frappe/printing/doctype/print_format/print_format.js @@ -23,7 +23,7 @@ frappe.ui.form.on("Print Format", { }, render_buttons: function (frm) { frm.page.clear_inner_toolbar(); - if (!frm.is_new()) { + if (!frm.is_new() && frm.doc.print_format_for === "Doctype") { if (!frm.doc.custom_format) { frm.add_custom_button(__("Edit Format"), function () { if (!frm.doc.doc_type) { @@ -71,6 +71,11 @@ frappe.ui.form.on("Print Format", { doc_type: function (frm) { frm.trigger("hide_absolute_value_field"); }, + print_format_for: function (frm) { + if (frm.doc.print_format_for === "Report") { + frm.set_value("print_format_type", "JS"); + } + }, hide_absolute_value_field: function (frm) { // TODO: make it work with frm.doc.doc_type // Problem: frm isn't updated in some random cases diff --git a/frappe/printing/doctype/print_format/print_format.json b/frappe/printing/doctype/print_format/print_format.json index b8654a0816..238c710101 100644 --- a/frappe/printing/doctype/print_format/print_format.json +++ b/frappe/printing/doctype/print_format/print_format.json @@ -6,7 +6,9 @@ "doctype": "DocType", "engine": "InnoDB", "field_order": [ + "print_format_for", "doc_type", + "report", "module", "default_print_language", "column_break_3", @@ -43,14 +45,15 @@ ], "fields": [ { + "depends_on": "eval:doc.print_format_for == \"DocType\"", "fieldname": "doc_type", "fieldtype": "Link", "in_filter": 1, "in_list_view": 1, "in_standard_filter": 1, "label": "DocType", - "options": "DocType", - "reqd": 1 + "mandatory_depends_on": "eval:doc.print_format_for == \"DocType\"", + "options": "DocType" }, { "fieldname": "module", @@ -88,7 +91,7 @@ "label": "Custom Format" }, { - "depends_on": "custom_format", + "depends_on": "eval:doc.custom_format || doc.print_format_for == \"Report\"", "fieldname": "section_break_6", "fieldtype": "Section Break" }, @@ -98,16 +101,18 @@ "fieldname": "print_format_type", "fieldtype": "Select", "label": "Print Format Type", - "options": "Jinja\nJS" + "options": "Jinja\nJS", + "read_only_depends_on": "eval:doc.print_format_for == \"Report\"" }, { "default": "0", + "depends_on": "custom_format", "fieldname": "raw_printing", "fieldtype": "Check", "label": "Raw Printing" }, { - "depends_on": "eval:!doc.raw_printing", + "depends_on": "eval:(!doc.raw_printing) || (doc.print_format_for == \"Report\")", "fieldname": "html", "fieldtype": "Code", "label": "HTML", @@ -263,12 +268,30 @@ "fieldtype": "Select", "label": "PDF Generator", "options": "wkhtmltopdf" + }, + { + "default": "DocType", + "fieldname": "print_format_for", + "fieldtype": "Select", + "label": "Print Format For", + "options": "DocType\nReport" + }, + { + "depends_on": "eval:doc.print_format_for == \"Report\"", + "fieldname": "report", + "fieldtype": "Link", + "in_filter": 1, + "in_list_view": 1, + "in_standard_filter": 1, + "label": "Report", + "mandatory_depends_on": "eval:doc.print_format_for == \"Report\"", + "options": "Report" } ], "icon": "fa fa-print", "idx": 1, "links": [], - "modified": "2025-02-14 14:49:39.181074", + "modified": "2025-07-02 11:07:42.812225", "modified_by": "Administrator", "module": "Printing", "name": "Print Format", @@ -291,8 +314,9 @@ "select": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/printing/doctype/print_format/print_format.py b/frappe/printing/doctype/print_format/print_format.py index 7c96225013..21cf95fb7d 100644 --- a/frappe/printing/doctype/print_format/print_format.py +++ b/frappe/printing/doctype/print_format/print_format.py @@ -26,7 +26,7 @@ class PrintFormat(Document): custom_format: DF.Check default_print_language: DF.Link | None disabled: DF.Check - doc_type: DF.Link + doc_type: DF.Link | None font: DF.Data | None font_size: DF.Int format_data: DF.Code | None @@ -43,9 +43,11 @@ class PrintFormat(Document): pdf_generator: DF.Literal["wkhtmltopdf"] print_format_builder: DF.Check print_format_builder_beta: DF.Check + print_format_for: DF.Literal["DocType", "Report"] print_format_type: DF.Literal["Jinja", "JS"] raw_commands: DF.Code | None raw_printing: DF.Check + report: DF.Link | None show_section_headings: DF.Check standard: DF.Literal["No", "Yes"] # end: auto-generated types @@ -58,6 +60,10 @@ class PrintFormat(Document): ) self.set_onload("print_templates", templates) + def before_save(self): + if self.print_format_for == "Report": + self.print_format_type = "JS" + def get_html(self, docname, letterhead=None): return get_html(self.doc_type, docname, self.name, letterhead) @@ -91,6 +97,9 @@ class PrintFormat(Document): if self.custom_format and not self.html and not self.raw_printing: frappe.throw(_("{0} is required").format(frappe.bold(_("HTML"))), frappe.MandatoryError) + if self.print_format_for == "Report" and not self.report: + frappe.throw(_("{0} is required").format(frappe.bold(_("Report"))), frappe.MandatoryError) + def extract_images(self): from frappe.core.doctype.file.utils import extract_images_from_html diff --git a/frappe/printing/doctype/print_heading/print_heading.json b/frappe/printing/doctype/print_heading/print_heading.json index 360aeaa071..07177a8388 100644 --- a/frappe/printing/doctype/print_heading/print_heading.json +++ b/frappe/printing/doctype/print_heading/print_heading.json @@ -37,10 +37,11 @@ "icon": "fa fa-font", "idx": 1, "links": [], - "modified": "2024-03-23 16:03:35.269553", + "modified": "2025-06-26 05:40:55.559700", "modified_by": "Administrator", "module": "Printing", "name": "Print Heading", + "naming_rule": "By fieldname", "owner": "Administrator", "permissions": [ { @@ -56,12 +57,13 @@ }, { "read": 1, - "role": "All" + "role": "Desk User" } ], "quick_entry": 1, + "row_format": "Dynamic", "search_fields": "print_heading", "sort_field": "creation", "sort_order": "DESC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/printing/doctype/print_heading/test_records.json b/frappe/printing/doctype/print_heading/test_records.json new file mode 100644 index 0000000000..479c38ad98 --- /dev/null +++ b/frappe/printing/doctype/print_heading/test_records.json @@ -0,0 +1,5 @@ +[ + { + "print_heading": "_Test Print Heading" + } +] \ No newline at end of file diff --git a/frappe/printing/page/print/print.js b/frappe/printing/page/print/print.js index a3849fbb61..b0ec8423ee 100644 --- a/frappe/printing/page/print/print.js +++ b/frappe/printing/page/print/print.js @@ -50,6 +50,19 @@ frappe.ui.form.PrintView = class { ` ); + const htmlSkeleton = ` + + + + + + + + + + `; + document.querySelector("iframe.print-format-container").srcdoc = htmlSkeleton; + this.print_settings = frappe.model.get_doc(":Print Settings", "Print Settings"); this.setup_menu(); this.setup_toolbar(); diff --git a/frappe/public/js/billing.bundle.js b/frappe/public/js/billing.bundle.js index bf0b95cfa6..6c366e6055 100644 --- a/frappe/public/js/billing.bundle.js +++ b/frappe/public/js/billing.bundle.js @@ -4,7 +4,7 @@ let isFCUser = false; $(document).ready(function () { if ( frappe.boot.is_fc_site && - frappe.boot.setup_complete === 1 && + !!frappe.boot.setup_complete && !frappe.is_mobile() && frappe.user.has_role("System Manager") ) { diff --git a/frappe/public/js/frappe/desk.js b/frappe/public/js/frappe/desk.js index b99080f06b..9b5f095144 100644 --- a/frappe/public/js/frappe/desk.js +++ b/frappe/public/js/frappe/desk.js @@ -281,13 +281,7 @@ frappe.Application = class Application { frappe.dom.set_style(frappe.boot.print_css, "print-style"); } - let current_app = localStorage.current_app; - if (current_app) { - frappe.boot.setup_complete = - frappe.boot.setup_wizard_not_required_apps?.includes(current_app) || - frappe.boot.setup_wizard_completed_apps?.includes(current_app); - } - + frappe.boot.setup_complete = frappe.boot.sysdefaults["setup_complete"]; frappe.user.name = frappe.boot.user.name; frappe.router.setup(); } else { @@ -530,6 +524,8 @@ frappe.Application = class Application { delete doc.name; newdoc.idx = null; newdoc.__run_link_triggers = false; + newdoc.on_paste_event = true; + newdoc = JSON.parse(JSON.stringify(newdoc)); frappe.set_route("Form", newdoc.doctype, newdoc.name); frappe.dom.unfreeze(); }); diff --git a/frappe/public/js/frappe/form/controls/datetime.js b/frappe/public/js/frappe/form/controls/datetime.js index 4762b85b8d..d3fe0c612d 100644 --- a/frappe/public/js/frappe/form/controls/datetime.js +++ b/frappe/public/js/frappe/form/controls/datetime.js @@ -10,9 +10,12 @@ frappe.ui.form.ControlDatetime = class ControlDatetime extends frappe.ui.form.Co } else if (value.toLowerCase() === "now") { value = frappe.datetime.now_datetime(); } + let should_refresh = this.last_value && this.last_value !== value; value = this.format_for_input(value); this.$input && this.$input.val(value); - this.datepicker.selectDate(frappe.datetime.user_to_obj(value)); + if (should_refresh) { + this.datepicker.selectDate(frappe.datetime.user_to_obj(value)); + } } get_start_date() { diff --git a/frappe/public/js/frappe/form/controls/duration.js b/frappe/public/js/frappe/form/controls/duration.js index 4369f29343..0055d925cb 100644 --- a/frappe/public/js/frappe/form/controls/duration.js +++ b/frappe/public/js/frappe/form/controls/duration.js @@ -20,10 +20,20 @@ frappe.ui.form.ControlDuration = class ControlDuration extends frappe.ui.form.Co ` ); this.$wrapper.append(this.$picker); - this.build_numeric_input("days", this.duration_options.hide_days, 0, "Days"); - this.build_numeric_input("hours", false, 0, "Hours"); - this.build_numeric_input("minutes", false, 0, "Minutes"); - this.build_numeric_input("seconds", this.duration_options.hide_seconds, 0, "Seconds"); + this.build_numeric_input( + "days", + this.duration_options.hide_days, + 0, + __("Days", null, "Duration") + ); + this.build_numeric_input("hours", false, 0, __("Hours", null, "Duration")); + this.build_numeric_input("minutes", false, 0, __("Minutes", null, "Duration")); + this.build_numeric_input( + "seconds", + this.duration_options.hide_seconds, + 0, + __("Seconds", null, "Duration") + ); this.set_duration_picker_value(this.value); this.$picker.hide(); this.bind_events(); @@ -45,7 +55,7 @@ frappe.ui.form.ControlDuration = class ControlDuration extends frappe.ui.form.Co let $control = $(`
-
${__(label)}
+
${label}
`); if (hidden) { diff --git a/frappe/public/js/frappe/form/controls/multiselect_list.js b/frappe/public/js/frappe/form/controls/multiselect_list.js index 9fd7eb909e..b26b9ecb3d 100644 --- a/frappe/public/js/frappe/form/controls/multiselect_list.js +++ b/frappe/public/js/frappe/form/controls/multiselect_list.js @@ -16,7 +16,7 @@ frappe.ui.form.ControlMultiSelectList = class ControlMultiSelectList extends (
  • diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 418744ef46..87e230d979 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -1766,7 +1766,7 @@ frappe.ui.form.Form = class FrappeForm { } } else { frappe.msgprint(__("Field {0} not found.", [f])); - throw "frm.set_value"; + throw `frm.set_value: '${f}' does not exist in the form`; } }; diff --git a/frappe/public/js/frappe/form/grid_row.js b/frappe/public/js/frappe/form/grid_row.js index 11fcdaf058..2344d90c91 100644 --- a/frappe/public/js/frappe/form/grid_row.js +++ b/frappe/public/js/frappe/form/grid_row.js @@ -1163,7 +1163,6 @@ export default class GridRow { grid_row: this, value: this.doc[df.fieldname], }); - // sync get_query field.get_query = this.grid.get_field(df.fieldname).get_query; // df.onchange is common for all rows in grid diff --git a/frappe/public/js/frappe/form/print_utils.js b/frappe/public/js/frappe/form/print_utils.js index 4b5bc3257c..03cf82902f 100644 --- a/frappe/public/js/frappe/form/print_utils.js +++ b/frappe/public/js/frappe/form/print_utils.js @@ -9,6 +9,29 @@ frappe.ui.get_print_settings = function (pdf, callback, letter_head, pick_column } var columns = [ + { + fieldtype: "Select", + fieldname: "orientation", + label: __("Orientation"), + options: [ + { value: "Landscape", label: __("Landscape") }, + { value: "Portrait", label: __("Portrait") }, + ], + default: "Landscape", + }, + { + fieldtype: "Link", + fieldname: "report", + label: __("Report"), + options: "Print Format", + default: letter_head || default_letter_head, + get_query: () => ({ + filters: { + print_format_for: "Report", + disabled: 0, + }, + }), + }, { fieldtype: "Check", fieldname: "with_letter_head", @@ -22,16 +45,6 @@ frappe.ui.get_print_settings = function (pdf, callback, letter_head, pick_column options: "Letter Head", default: letter_head || default_letter_head, }, - { - fieldtype: "Select", - fieldname: "orientation", - label: __("Orientation"), - options: [ - { value: "Landscape", label: __("Landscape") }, - { value: "Portrait", label: __("Portrait") }, - ], - default: "Landscape", - }, ]; if (pick_columns) { diff --git a/frappe/public/js/frappe/form/sidebar/assign_to.js b/frappe/public/js/frappe/form/sidebar/assign_to.js index 40549e5ee6..994f8dbfa8 100644 --- a/frappe/public/js/frappe/form/sidebar/assign_to.js +++ b/frappe/public/js/frappe/form/sidebar/assign_to.js @@ -177,13 +177,6 @@ frappe.ui.form.AssignToDialog = class AssignToDialog { default: 0, onchange: () => me.assign_to_me(), }, - { - label: __("Assign To User Group"), - fieldtype: "Link", - fieldname: "assign_to_user_group", - options: "User Group", - onchange: () => me.user_group_list(), - }, { fieldtype: "MultiSelectPills", fieldname: "assign_to", @@ -196,6 +189,13 @@ frappe.ui.form.AssignToDialog = class AssignToDialog { }); }, }, + { + label: __("Assign To User Group"), + fieldtype: "Link", + fieldname: "assign_to_user_group", + options: "User Group", + onchange: () => me.user_group_list(), + }, { fieldtype: "Section Break", }, diff --git a/frappe/public/js/frappe/form/toolbar.js b/frappe/public/js/frappe/form/toolbar.js index 71e1791c0f..13b083f280 100644 --- a/frappe/public/js/frappe/form/toolbar.js +++ b/frappe/public/js/frappe/form/toolbar.js @@ -282,7 +282,10 @@ frappe.ui.form.Toolbar = class Toolbar { if ( this.frm.save_disabled && indicator && - [__("Saved"), __("Not Saved")].includes(indicator[0]) + [ + __("Saved", null, this.frm.doctype), + __("Not Saved", null, this.frm.doctype), + ].includes(indicator[0]) ) { return; } diff --git a/frappe/public/js/frappe/list/base_list.js b/frappe/public/js/frappe/list/base_list.js index f1b54301ad..c8360163e6 100644 --- a/frappe/public/js/frappe/list/base_list.js +++ b/frappe/public/js/frappe/list/base_list.js @@ -290,11 +290,7 @@ frappe.views.BaseList = class BaseList { } toggle_side_bar(show) { - let show_sidebar = show || JSON.parse(localStorage.show_sidebar || "true"); - show_sidebar = !show_sidebar; - localStorage.show_sidebar = show_sidebar; - this.show_or_hide_sidebar(); - $(document.body).trigger("toggleListSidebar"); + frappe.app.sidebar.toggle_sidebar(); } show_or_hide_sidebar() { diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 96214e182c..7432127d42 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -693,7 +693,7 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { ${__(subject_field.label)}
    `; - const $columns = this.columns + let $columns = this.columns .map((col) => { let classes = [ "list-row-col ellipsis", @@ -718,6 +718,14 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { }) .join(""); + // Add column for button and dropdown button to the header + if (this.settings.button) { + $columns += ``; + } + if (this.settings.dropdown_button) { + $columns += ``; + } + const right_html = `